Merging 2 queries

A

Amy

I am trying to merge two queries into a report. Some
calcualtions are being ran on only part of the data I need
and it gives me an error. Stating: "You have chosed
fields from record sources which the wizard can't
connect..." Is there a way to merge 2 queries into one
report?
 
H

Héjja Károly

Hi, Amy!

Make a union query from the two queries:

SELECT * FROM Query1 UNION ALL SELECT * FROM Query2

Put this for the record source of the report!

Karcsi
 
H

Héjja Károly

And I have forgotten to say, the two queries must hold
the same number of fields in the same order, and the same
type of data.

Karcsi
 

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