Joining 2 Queries in One Report

G

Guest

I wish to join the results of 2 separate queries in one report. The results
from one query followed by the results on the second query.

The queries as such have no direct relationship
 
R

Rob Parker

Off the top of my head:

Create two reports, each one based on one of your unrelated queries. Then
create a standalone report which contains those two reports as subreports.

HTH

Rob
 
A

Allen Browne

The simplest solution might be to create a 2nd report based on the 2nd
query. Then put it into the Report Footer section of the first report. The
results will print as one long list.

If the fields in the 2 queries are the same, and you want to merge the 2
lists together, another alternative might be to make a UNION query that
combines the other 2. Access can't show the UNION query graphically, but in
SQL View (View menu in query design) the statement would be:
SELECT Query1.* FROM Query1
UNION ALL
SELECT Query2.* FROM Query2
 
G

Guest

Thanks Rob - will give it ago.



Rob Parker said:
Off the top of my head:

Create two reports, each one based on one of your unrelated queries. Then
create a standalone report which contains those two reports as subreports.

HTH

Rob
 

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

Top