I'm the slow one in my family... I've found lots of discussion and
proposed solutions for this type of challenge, but I can't get
anything to work.
I have a user form with two combo boxes - Plants and Units.
Combo box #1 has a rowsource of a named range called 'Plants'. Work
so great.
I want combo box #2 to show only the units available at the plant
selected in combo box #1.
Example:
Clark (combo box #1)
Unit 1
Unit 2 (selections available in combo box #2)
Unit 3
Lenzie (combo box #1)
Block 1
Block 2 (selections available in combo box #2)
etc.
I have named ranges set up for each of the units available in each
plant. What seemed most straightforward was:
if cboplant.value = "Clark" then cbounit.rowsource = "Clark"
(the named range in the spreadsheet)
I have tried everything I could google - it's making me crazy.
Thanks in advance for any assistance.