Hi,
Bad move. You are storing data as table names (year in this case), which
indicates a non-normalized design. A single table with a year field - or
even better, a date field from which the sales (or whatever) year can be
calculated later using the Year([YourDateField]) function - would be
more in keeping with a relational design, not to mention easier to
query. But if you insist: from the Database window, right-click on the
table being duplicates, select Copy, right-click within the DB window,
select "Paste," then select the "Structure only" option.
LeAnne