Multiple Queries into one report

  • Thread starter Thread starter Niggles
  • Start date Start date
N

Niggles

I have three queries but i wish to display on one report
using each query as a group how do i do this
 
Niggles said:
I have three queries but i wish to display on one report
using each query as a group how do i do this

That's kind of vague, but I'll take a guess that you could
use a UNION query:

SELECT "grp1" As GroupField, table1.*
FROM table1
UNION ALL
SELECT "grp2", table2.*
FROM table2
UNION ALL
SELECT "grp3", table3.*
FROM table3
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top