Possible to archive tables in Access with Date/Time stamp?

E

Ed

I import data to Access each day but would like to archive the previous day's
data and the corresponding table with the appropriate date. Is this possible?

If yes, how would this be coded, or better yet, run through a simple macro?

Thanks,

Ed
 
R

Rick B

You can, but typically shouldn't. If you store the date in the record, then
just keep everything in that one table. When you run reports queries or
forms, then you can filter your records by that date. It is rarely a good
idea to create identical tables with a date in the name of the table. How
will you ever go back and run historical or combined reports?

Just store the date with each record.

Now, in some cases, you may want to go back and purge very old data. Maybe
run a delete query once a year or once a month to delete old records. Of
course, you could make a backup copy before doing the deletes.
 
Top