combo select some or all How?

L

LJG

Hi Guys,

Anyone advise how I can create a combo box that allows me to select either a
one or more or ALL items from a combo box fro a report.

TIA
 
F

fredg

Hi Guys,

Anyone advise how I can create a combo box that allows me to select either a
one or more or ALL items from a combo box fro a report.

TIA

You can't.
You can only select one item from the combo box drop-down list.

You can add the word "<All>" to the combo box list and then use that
selection to report on all records (you would do that using a Union
Query).
Then change the query criteria to:

Like IIf(forms!FormName!ComboName = "<All>","*",
forms!FormName!ComboName)

If you need help with the Union query, post back with your current
combo box SQL.
 
S

Scott

combo boxes only allow you to select one item. That said you can add an
option to your combo box that selects all, but there is no way to select
only certain items
 

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

Top