Tina Gray said:
I have created an option box and would like to select three of the
options listed in the option box, and can't get it to work, can this
be done?
It's the nature of an option group that it stores only one value, chosen
from among the available options. If you want to choose multiple
options, you'll need to approach this one of two ways:
1. Create a separate field -- probably a yes/no field -- in your table
to represent each option and whether it has been chosen or not. Bind an
independent control on the form to each of these fields. If you want to
impose a restriction that at most three options can be chosen, write
code in various control events and in the form's Before Update event to
enforce the restriction.
Or:
2. Store options in a separate related table, creating one record in
this table for each option chosen. Each record in that table would have
a field for the key of the main record to which it applies, and a field
indicating the option type. A subform on the main form would be the
easiest way to maintain this table, though there are other, more
code-intensive ways of doing it. This is the most flexible way of
storing the option information, but may be more than you need.