I have a combo form control directly on my worksheet, it's not in a userform. I'm having a hard time trying to reference the controls..for instance I have a control called ProdLineCombo. In my Module I have
How do I reference another combo box called ProdTypeCombo from within the ProdLineCombo_Change() sub?
basically, depending on what a user selects from a certain comboxbox will determine or should I say populate other controls or another combox box..Can someone please give an example on how this is done..for example if Combo1 the user selects Type1 then Combo2 will contain "1","2","3" if they choose Type2 then Combo2 will contain "4","5,","6"
Code:
Sub ProdLineCombo_Change()
End Sub
How do I reference another combo box called ProdTypeCombo from within the ProdLineCombo_Change() sub?
basically, depending on what a user selects from a certain comboxbox will determine or should I say populate other controls or another combox box..Can someone please give an example on how this is done..for example if Combo1 the user selects Type1 then Combo2 will contain "1","2","3" if they choose Type2 then Combo2 will contain "4","5,","6"
Last edited: