How do the same question multiple times on one query?

J

Jakeagg

I want to run a query that requests an ID number to be entered. How can I
get multiple ID number requests so that all information about each number is
displayed in one datasheet?
 
M

MacDermott

You can't do this with just a query.
You'll have to build a form which collects the IDs you want (a multi-select
listbox is a good way to do this), builds the filter, and launches the
query.
 
Top