Dropdown list

B

Ben

I've created a table that contains constant data that I
want users to select all that apply. I was trying to use
a dropdown list to show all the available selection, but
I can't figure out how to select more than one option
from the list. Can anyone help me with this?

Ben
 
C

Cheryl Fischer

If the control is a ComboBox (sometimes referred to as a dropdown list), the
answer is that you can only select one item from it; and you would need to
change the control to a List Box and set the Multi Select property to Simple
or Extended.
 
Top