merge columns from summary querries

  • Thread starter Thread starter Claire
  • Start date Start date
C

Claire

having difficulty merging information in querries
together. Problem may be caused because they are summary
querries. Do I have to make each of these querries a
table before i can merge the data together????
 
NO, you don't have to. You can do it using UNION queries
(fairly advanced topic)


If you have 2 queries, query1 and query2 with the same
field names (that's very important), then open a new
query, don't add any fields, then View->SQL

Type:

Select * from Query1
UNION
Select * from Query2


Chris Nebinger
 

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

Similar Threads

'Joining' 2 querries 3
Querry link to Report 4
Help Me Fix Min Max Avg Querry 1
many querries into report 4
please help 9
Report with data from two querries 3
Querry to get unique records from 3
Querry in form 5

Back
Top