I have been researching and have gotten close but not exactly what I need. Please help me code with the below in my first Userform.
Combobox #1 - Named "ComboBoxlLocation"
Combobox #2 - Named "ComboBoxCopy"
Combobox #3 - Named "ComboBoxMedia"
Combobox #4 - Named "ComboBoxPricing"
ComboBoxlLocation populates from the named range "Location". It contains 3 options: AUL, DLR, WDW
There are named ranges set-up for comboboxes 2-4 all set-up the same.
This example is for ComboBoxCopy. The "Name" column is the named range called "Copy".
[TABLE="width: 300"]
<tbody>[TR]
[TD]Loc (in column C)[/TD]
[TD]Name (in column D)[/TD]
[/TR]
[TR]
[TD]WDW
[/TD]
[TD]Heather[/TD]
[/TR]
[TR]
[TD]WDW[/TD]
[TD]Mark[/TD]
[/TR]
[TR]
[TD]WDW[/TD]
[TD]Matt[/TD]
[/TR]
[TR]
[TD]DLR[/TD]
[TD]Bob[/TD]
[/TR]
[TR]
[TD]DLR[/TD]
[TD]Rick[/TD]
[/TR]
[TR]
[TD]DLR[/TD]
[TD]Shavana[/TD]
[/TR]
[TR]
[TD]AUL[/TD]
[TD]Paul[/TD]
[/TR]
[TR]
[TD]AUL[/TD]
[TD]Katie[/TD]
[/TR]
</tbody>[/TABLE]
After a selection is made in ComboBoxlLocation, ComboBoxCopy should match that selection to column C then display the correct values from the named range in column D.
This same process will repeat for "ComboBoxMedia" & Combobox but with a different Named ranges for each. I should be able to update/modify the code from ComboBoxCopy to work for the other 2.
Combobox #1 - Named "ComboBoxlLocation"
Combobox #2 - Named "ComboBoxCopy"
Combobox #3 - Named "ComboBoxMedia"
Combobox #4 - Named "ComboBoxPricing"
ComboBoxlLocation populates from the named range "Location". It contains 3 options: AUL, DLR, WDW
There are named ranges set-up for comboboxes 2-4 all set-up the same.
This example is for ComboBoxCopy. The "Name" column is the named range called "Copy".
[TABLE="width: 300"]
<tbody>[TR]
[TD]Loc (in column C)[/TD]
[TD]Name (in column D)[/TD]
[/TR]
[TR]
[TD]WDW
[/TD]
[TD]Heather[/TD]
[/TR]
[TR]
[TD]WDW[/TD]
[TD]Mark[/TD]
[/TR]
[TR]
[TD]WDW[/TD]
[TD]Matt[/TD]
[/TR]
[TR]
[TD]DLR[/TD]
[TD]Bob[/TD]
[/TR]
[TR]
[TD]DLR[/TD]
[TD]Rick[/TD]
[/TR]
[TR]
[TD]DLR[/TD]
[TD]Shavana[/TD]
[/TR]
[TR]
[TD]AUL[/TD]
[TD]Paul[/TD]
[/TR]
[TR]
[TD]AUL[/TD]
[TD]Katie[/TD]
[/TR]
</tbody>[/TABLE]
After a selection is made in ComboBoxlLocation, ComboBoxCopy should match that selection to column C then display the correct values from the named range in column D.
- If ComboBoxlLocation =WDW then show Heather, Mark & Matt
- If ComboBoxlLocation =DLR then show Bob, Rick & Shavana
- If ComboBoxlLocation =AUL then show Paul & Katie
This same process will repeat for "ComboBoxMedia" & Combobox but with a different Named ranges for each. I should be able to update/modify the code from ComboBoxCopy to work for the other 2.