combo box values to display checklist (1 Viewer)

akika

Registered User.
Local time
Yesterday, 17:20
Joined
Aug 7, 2018
Messages
102
hi,

i have a form with a dropdown list of values
e.g category (values, A , B, C).

When select on category, it should display a kind of checklist which will need to tick and save value in table.

each category A, B , C will have their own checklist.
sample db attached.

whats the best way.. to display the checklist and to save the tick data in table??
 

Attachments

  • Sample.accdb
    1.1 MB · Views: 61

MajP

You've got your good things, and you've got mine.
Local time
Yesterday, 20:20
Joined
May 21, 2018
Messages
8,527
Often done with a multi select listbox. But this will require some code, which you can get here on how to save the selected values to a table.
 

MajP

You've got your good things, and you've got mine.
Local time
Yesterday, 20:20
Joined
May 21, 2018
Messages
8,527
If you want real checks then it would be done with a subform that has a boolean field in it. Will also require code.
 

theDBguy

I’m here to help
Staff member
Local time
Yesterday, 17:20
Joined
Oct 29, 2018
Messages
21,467
Hi,

Sorry I couldn't download your sample database at the moment but I was thinking one possible approach is to add a Listbox to your form and assign a different Row Source to it depending on what the user selected from the Combobox.

Hope it helps...
 

June7

AWF VIP
Local time
Yesterday, 16:20
Joined
Mar 9, 2014
Messages
5,470
@MajP, did not include link in post. Here is example of iterating listbox http://allenbrowne.com/ser-50.html

The suggestion by DBguy is called cascading or dependent combobox (or listbox) and is a very common topic.
 

Users who are viewing this thread

Top Bottom