How to create multiple choice field

B

bigrichard

I want to create a field that has a list of choices that can be selected. How
would I do that?
 
L

lbrinkman

Use the "Comboxbox" from the Toolbox, along with the Wizard. It will guide
you thorugh the process, allowing you to create a list of choices OR base
your choices on a table/query. This presumes that you are allowing the
selection of only ONE choice.

If you want one/several choices to be allowed, then create a subform with a
combobox as above. Then make the subform's appearance as a "datasheet" only.
Drop the subform into the main form, then make sure the main form and
subform are linked by a common field (e.g., CustomerID). You can then hide
the CustomerID in the subform by making its width equal zero.

---Phil Szlyk
 
Top