Multiple Selections

  • Thread starter Thread starter KT
  • Start date Start date
K

KT

I just want to know if it is possible for you to crate a list that you can
select one or more options. if so how??
 
You can use a listbox with its Multi Select property set to Simple or
Extended. If you want to store the selected values, you will need code to
so it since a listbox can only be bound if its MultiSelect property is set
to None. Remember, it is poor practice to store multiple values in a single
field so to store selected data, you really need to work with a many-side
table.
 
The link below shows how to use a multi-select list box to filter a report.
There are other ways to use a multi-select list box, but it is not possible
from your brief question to determine your specific needs.
http://allenbrowne.com/ser-50.html
 

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