You can't. Each Excel file will link as a separate table. However,
depending on what you are trying to accomplish, you may be able to JOIN
these together in a query to get the information you need.
You can't. Each Excel file will link as a separate table. However,
depending on what you are trying to accomplish, you may be able to JOIN
these together in a query to get the information you need.
As Roger says, you can't and you will have to link each one individually. If
the tables contain the same fields, check help for "Union Query" for how to put
them back together in what looks like a single table.
gm
Make that, 'If the columns are of, or may be coerced to, a common data type, ...'
For example:
SELECT MyTextCol
FROM
[Excel 8.0;HDR=YES;Database=C:\Tempo\db.xls;].[Sheet1$]
UNION ALL
SELECT CSTR(MyIntCol) AS MyTextCol
FROM
[Excel 8.0;HDR=YES;Database=C:\Tempo\db.xls;].[Sheet1$]
ORDER BY 1;
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.