Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I want to show another userform based on the value in the combobox. Simple I
know. any ideas? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hi.
simple maybe. depends. but to answer the simplistic reguest.... Private Sub ComboBox1_Change() If ComboBox1.Value = "something" Then otherform.Show End If End Sub regards FSt1 "Jim Lavery" wrote: I want to show another userform based on the value in the combobox. Simple I know. any ideas? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This is for concept only. Without specific information no valid code could
be developed. Private Sub UserForm_Click() If Me.ComboBox1.Value = Range("A1").Value Then UserForm2.Show Unload Me End If End Sub "Jim Lavery" wrote: I want to show another userform based on the value in the combobox. Simple I know. any ideas? |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I think I'd just use something like:
Select case lcase(me.combobox1.value) case is = "value1" : userform1.show case is = "value2" : userform2.show case is = "value3" : userform3.show end select Jim Lavery wrote: I want to show another userform based on the value in the combobox. Simple I know. any ideas? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
fill combobox depending on selection from another combobox | Excel Discussion (Misc queries) | |||
Combobox items determined by the selection in another combobox | Excel Programming | |||
Combobox options based on the input of another combobox | Excel Programming | |||
ComboBox list reliant on the entry from a different ComboBox | Excel Programming | |||
How Do I Load A ComboBox RowSource From The Results Of Another ComboBox | Excel Programming |