This is not a good design:
multiple tables (of the same structure, each with different information)
However, it is a common error so don't feel bad.
The solution to your query problem is to use the UNION operator.
e.g.
If you have 3 tables, you write 3 queries named qry1, qry2 and qry3.
Each query is correct all by itself and gives you what you want.
NOTE: they all have the same number of fields (in the same order if you want
it to make sense.)
Now you write qry4 like this:
qry1
UNION
qry2
UNION
qry3
You have to be in SQL view to do this. And you can't go back to Design view.
--
Joe Fallon
Access MVP
Stevie C said:
i have an access 2002 database containing multiple tables (of the same
structure, each with different information) that i would like to export to
one excel worksheet (or multiple worksheets in one workbook).