[email protected] wrote in message ...
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.
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;
Jamie.
--