Thank you for your response. The programmer set up all the tables or the
year ( he did it this wy so that the tables wouldn't get too big and so the
db down)
Sorry... but his decision will have exactly the OPPOSITE effect.
Your database, the .mdb file, will be *BIGGER*, slower, less
efficient, and harder to use, since each weekly table will have a
substantial amount of system overhead... and your database will have
exactly the same total number of records.
I'd suggest creating the UNION query, and then basing an Append query
upon it to migrate the data into a normalized single table. To each
SELECT statement in the UNION (this will make sense when you read the
online help) add the date of the table as a calculated field, e.g.
SELECT this, that, theother, #4/21/2005# AS WeekVal
FROM tbl04212005
UNION ALL
SELECT this, that, theother, #4/28/2005#
FROM tbl04282005
UNION ALL
<etc etc>
John W. Vinson[MVP]