G
Guest
Before I delete the data in a particular table, I need to copy it into a
table with the prefix of today's date. Is there a way to create a make table
query that does this? Is there a better way? I've tried things like:
SELECT tblCO_Order_20.*
INTO Format(Now(),"yyyymmdd") & tblCO_Order_Level20
FROM tblCO_Order_20;
But no luck. I can't find a macro command to copy a table and save it with
a different name. What other options do I have?
table with the prefix of today's date. Is there a way to create a make table
query that does this? Is there a better way? I've tried things like:
SELECT tblCO_Order_20.*
INTO Format(Now(),"yyyymmdd") & tblCO_Order_Level20
FROM tblCO_Order_20;
But no luck. I can't find a macro command to copy a table and save it with
a different name. What other options do I have?