I believe I tried that, and it gave me a runtime error.. I am not at work anymore, and those files were on a network drive. Ill try it again tomorrow, and If it doesnt work ill post a few of those files for you.
Assuming the queries are named "qryA2, "qryB", etc. use:
[code=sql]
select * from qryA
UNION ALL
select * from qryB
UNION ALL
select * from qryC
UNION ALL
...
[/code]
Assuming the queries are named "qryA2, "qryB", etc. use:
[code=sql]
select * from qryA
UNION ALL
select * from qryB
UNION ALL
select * from qryC
UNION ALL
...
[/code]
Better to use for your queries names like qry22, qry23, etc. Thus Access can't mix them with numbers. In your case you would probably have to add [ and] around the numbers to indicate it's a name and no number.
Comment