Many Many Checkboxes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I've got about 20 checkboxes...for now. They are divided into 4 groups. I'm
anticipating that the users may want to add more checkboxes in the future and
I do not want to keep adding new fields to my table. The checkboxes are set
up in a questionnaire type of usage. Any suggestions?
 
I looked at optiongroups, but I don't think it will work for my case. The
user must be able to check more than one checkbox in each group.
 
I checked into multi select listbox but that is beyond me.

I think that you could use combobox as label over datasheet subforms
something like this --
Group A Group B Group C Group D
Pecan Orange Cabbage OJ
Walnut Peach Radish Lemonade
Peanut Apple Water

Use an event to append to table where item is selected.
Use two tables with a one-to-many relation.
Table1--
ID - autonumber
Title - text

Table2--
ID - number - long interger
Group - text
Selection - text
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top