From: Rach on
I'm currently working on a new form, in my table I have combo boxes but some
of my questions need to allow users to select more than one answer - how
should I go about setting this up?
From: Jeff Boyce on
Rach

If you have "comboboxes in your table", you probably used the lookup
datatype. This can cause you headaches later on because Access stores one
thing (the primary key of the looked-up value), but displays something else
(the looked-up value). Confused yet?!

One way to reduce the confusion, both for you and for anyone who needs to
maintain the db after you (or you, after a few months), would be to only
store the primary key in the table, then use a combobox in a form for
selecting the lookup value.

Second question/point ... selecting more than one answer ...

A common way to handle having more than one answer/criterion/field/etc.
selected can be found in the wizards in Access. They use "paired
listboxes". Generically, the left listbox holds all possible choices
(except those already chosen), while the right listbox holds those already
chosen.

Is this what you were after?

Regards

Jeff Boyce
Microsoft Access MVP

--
Disclaimer: This author may have received products and services mentioned
in this post. Mention and/or description of a product or service herein
does not constitute endorsement thereof.

Any code or pseudocode included in this post is offered "as is", with no
guarantee as to suitability.

You can thank the FTC of the USA for making this disclaimer
possible/necessary.