linking

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have linked several excel tables to access - note all excel tables have the
same type of info./field names. How can I run a query pulling all into one
for reporting purposes
 
try using a Union query, along the lines of

SELECT Fieldname, FieldName, FieldName
FROM TableName
UNION SELECT Fieldname, Fieldname, Fieldname
FROM TableName
UNION SELECT Fieldname, Fieldname, Fieldname
FROM Tablename;

note the each SELECT statement must include the same number of fields.

hth
 

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

Back
Top