Merging 2 queries

  • Thread starter Thread starter Amy
  • Start date Start date
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?
 
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
 
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
 
Back
Top