Query "Enter Parameter" Multiple Items

LB79

Registered User.
Local time
Today, 16:57
Joined
Oct 26, 2007
Messages
505
Hi All,

This may be something quite basic... or not.

I have a query in which I am asking for a parameter to be entered. Works fine! My question is how do I enter multiple items ("Item1" or "Item2")?

Many thanks
 
If you have multiple parameters you will get multiple prompts.

Brian
 
Put the following in the Criteria row of your Query;
Code:
[Item1] Or [Item2]

Although I would tend to do this using a form, and base the query on the form. You could use two Combo boxes, thus ensuring that your user entered two valid items.
 

Users who are viewing this thread

Back
Top Bottom