Populate 2nd combo box with textstringafter date selected in 1st c

  • Thread starter Thread starter Jacquiemal
  • Start date Start date
J

Jacquiemal

I have two comb boxes. One activates a date picker and the date populates
that box. When a date is selected in the first combo box, I need a specific
text string to appear in a second combo box. I also need to have the ability
to select other options from a list for the second combo box if a date is NOT
selected from the first combo box.

Can this be done, and if it can, how is it done?
 
I recommend using an EventProcedure in the AfterUpdate event of the first
combo to manipulate the second.

Think about how you would do it manually, if you were setting the properties
of the second combo. Anything you do through the design mode interface can
be done in VBA code.
 
Back
Top