Multiple Values in Drop-Down Box

  • Thread starter Thread starter Guest
  • Start date Start date
Is it possible to choose multiple values from a drop-down box in a form?

No.
Use a list box.
Set the List box MultiSelect property to Simple or Extended.
Code the AfterUpdate event to return the selection values.

Look up the ItemsSelected and ItemData properties in VBA help for
examples on returning multiple items.
 
Back
Top