Hi,
You should have just one table, with a field for the year, if you don't
already have a date_time field.
It is not lost, but may be slower. Build the query:
SELECT 2003 as TheYear, field1, field2, fiedl3, .... FROM table2003
UNION ALL
SELECT 2002, field1, field2, fiedl3, .... FROM table2002
and save it. Use that query, rather the original tables. Since you can't
build an index on a query, that may be slower than if it was a table, but
otherwise, it works, technically.
Hoping it may help,
Vanderghast, Access MVP
Iceman said:
I have two tables the fields names are identical, the difference is one
table is this years data and the second is last years data. How can I query
these tables that results in all the data from both tables