Consulting

Results 1 to 4 of 4

Thread: Controlling userform data with combobox.

  1. #1
    VBAX Regular
    Joined
    May 2006
    Posts
    33
    Location

    Controlling userform data with combobox.

    Hello!

    I would like to be able to control a userform with a combobox. Depending on what option i choose in the combobox, i want to fill in the corresponding values in textboxes.

    The values are all stored in an excel sheet as follows

    Combobox Textbox1 Textbox2 Textbox3
    A 1 6 11
    B 2 7 12
    C 3 8 13
    D 4 9 14
    E 5 10 15

    So if i choose A in the combobox , i want the values 1, 6 and 11 to be loaded in the textboxes.

    Thank you !

  2. #2
    VBAX Master Norie's Avatar
    Joined
    Jan 2005
    Location
    Stirling, Scotland
    Posts
    1,831
    Location
    Where are these values stored and how are you populating the combobox?

    See the attached file.

  3. #3
    VBAX Regular
    Joined
    May 2006
    Posts
    33
    Location
    The combobox contains names of machinery which will not cange.

    The value in the textbox, wich i want to load from a different sheet, is a maximum limit for accumulated flow of liquid nitrogen, hydrogen or ethene through the machinery.

    I will attach a copy containing the interesting bits in the xls sheet.

    Sheet 2 is a copy of the reference doc i want to get info from.
    The interesting columns are A(ComboBox) and E(TextBox).

  4. #4
    VBAX Regular
    Joined
    May 2006
    Posts
    33
    Location
    **Thank you vwery much for the response ,the demo solved most of my problems, but i still have a dilemma.

    **How do i modify the following code to load data from a sheet called ref.Sheet instead of the main sheet ?

    **Private Sub ComboBox1_Change()
    **Me.Controls("TextBox1") = Range("A" & ComboBox1.ListIndex + 1).Offset(, 4)
    **End Sub

    **Thank you !


    Sorry ! Just ignore this message !
    I didn't realize that you had allready solved my issues (Excel issues)! I had a 4 day drinkingspree last week .. must have affected my brain....

    Thank you very much for all your help !
    Last edited by WebGuy; 05-30-2006 at 06:34 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •