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
 
Back
Top