I have two tables one of which is a holding table for the other.
I am using the code:
The problem is the two tables are different once the Tablename populated from the holding table.
Any clues as to why?
I am using the code:
Code:
strsql= "DELETE * from Tablename
DoCmd.RunSQL
strsql = " INSERT INTO Tablename " _
& "SELECT * FROM HoldingTable"
DoCmd.RunSQL
Any clues as to why?