L LB79 Registered User. Local time Today, 16:57 Joined Oct 26, 2007 Messages 505 Feb 14, 2013 #1 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
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
Brianwarnock Retired Local time Today, 16:57 Joined Jun 2, 2003 Messages 12,667 Feb 14, 2013 #2 If you have multiple parameters you will get multiple prompts. Brian
John Big Booty AWF VIP Local time Tomorrow, 03:57 Joined Aug 29, 2005 Messages 8,243 Feb 14, 2013 #3 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.
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.