Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I've got two combo boxes in a form.
One is the "Master" and the second is the dependent. I can do this in a regular cell with validation drop-downs. How do I create the dependent in the userform? ----------------------------------------------------------- <<RANGES Master Range =LISTS!$A$2:INDEX(LISTS!$A:$A,COUNTA(LISTS!$A:$A)) UseList Range =INDEX(ValData,1,MATCH('Data Entry'!B75,LISTS!$1:$1,0)): INDEX(ValData,Counter,MATCH('Data Entry'!B75,LISTS!$1:$1,0)) ----------------------------------------- <<VBA <<Current UserForm Initialize code: Private Sub UserForm_Initialize() cboDiscipline = "--Select Here First--" cboDescription = "--Select Here Second--" With Worksheets("LISTS") Me.cboDiscipline.List _ = .Range("Master").Value End With End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to create 2 dependent drop down lists from 1 original drop dow | Excel Discussion (Misc queries) | |||
How do I create drop down form fields in Excel? | Excel Discussion (Misc queries) | |||
Create a list in a drop down dependent upon another dd list in exc | Excel Discussion (Misc queries) | |||
Create a drop down list dependent on selection from another list | Excel Programming | |||
How do I create a form with drop downs that narrows choices? | Excel Discussion (Misc queries) |