Easy VBA ComboBox Question - I Hope!
Posted by tracey newbie on February 12, 2002 3:06 PM
I have a form with 2 combo boxs - the first combobox's rowsource property is set to "sheet1!A1:A3" - If the user select the value corresponding to cell"A1" I want the contents of the second combo box to be "sheet1!B1:B3" and if the user selects the value corresponding to cell A2 I want the contents of the second combo box to change to "sheet1!C1:C3" etc..
I've tried
If Combobox1.Value = Range("A1").Value
Then
Combobox2.RowSource = Sheet1.Range(B1,B3)
End If
Pretty poor attempt I know!!!