Yes, all tables do have the exact same names every time. The union query is not looking mighty tempting, i will experement, and post some results if all goes wrong.
Thanks a whole bunch guys, this really helps me out, if you still have any suggestions please let me know.
*EDIT*
ok I need a bit of help with the syntax of the union query. THis is what im trying to do...
SELECT [Index0], [Index1], [Index2], [Index3], [Index4], [Index5], [Index7], [Index8], [Index9], [FileName], [index11], [IndexNum], [OpNo], [Operations], [ScanDate], [ScanPerson], [IndexDate], [IndexPerson], [DoubleKeyDate], [ProcessDate], [ProcessPerson], [VerifyDate], [VerifyPerson], [OutputDate], [OutputPerson], [ModifyDate], [ModifyPerson], [PagesInTiff], [Batch], [SortNo]
FROM
[Indexing-1]
UNION SELECT [Index0], [Index1], [Index2], [Index3], [Index4], [Index5], [Index7], [Index8], [Index9], [FileName], [index11], [IndexNum], [OpNo], [Operations], [ScanDate], [ScanPerson], [IndexDate], [IndexPerson], [DoubleKeyDate], [ProcessDate], [ProcessPerson], [VerifyDate], [VerifyPerson], [OutputDate], [OutputPerson], [ModifyDate], [ModifyPerson], [PagesInTiff], [Batch], [SortNo]
FROM
[Indexing-2]
UINION SELECT [Index0], [Index1], [Index2], [Index3], [Index4], [Index5], [Index7], [Index8], [Index9], [FileName], [index11], [IndexNum], [OpNo], [Operations], [ScanDate], [ScanPerson], [IndexDate], [IndexPerson], [DoubleKeyDate], [ProcessDate], [ProcessPerson], [VerifyDate], [VerifyPerson], [OutputDate], [OutputPerson], [ModifyDate], [ModifyPerson], [PagesInTiff], [Batch], [SortNo]]
FROM
[Indexing-3]
...............
Indexing is named up until 104, tehn a few otehr tables are included, all with teh exact same type of data and fields
this is not working, what am i missing or what do i need?