If the fields/columns in both queries are the same then I expect you should
create a union query. You would need to do this in SQL view of a query. The
SQL might look something like:
SELECT FieldA, FieldB, FieldC,...
FROM query1
UNION ALL
SELECT FieldA, FieldB, FieldC,...
FROM query2;
Use this union query as the record source of your report.