Since "Each table has the same feilds for the equiptment type", another method would be to create a union query from the separate tables and then query based on the name of the original table. You SQL might look like:
SELECT "Monitor" as EquipType, *
FROM tblMonitors
UNION ALL
SELECT "Printer", *
FORM tblPrinters
UNION ALL...
You could then create a query based on the EquipType field.
BTW If all the fields are the same, then I would have only used a single table which would look much like the results of the union query.
Duane MS Access MVP
[green]Ask a great question, get a great answer.[/green] [red]Ask a vague question, get a vague answer.[/red]
[green]Find out how to get great answers faq219-2884.[/green]