Here is the ideal scenerio:
The user clicks "Import" it opens up the table import window. The user selects "Table1" to import, when they do I want it to overwrite the existing "Table1" (each month this import needs to be done and it will always have the same name).
To import I'm using:
DoCmd.RunCommand acCmdImport
Right now when I import it shows up as "Table11". So how can I get the import to overwrite the table? (Or can I automatically delete the table through code before the import?).
Thanks.
The user clicks "Import" it opens up the table import window. The user selects "Table1" to import, when they do I want it to overwrite the existing "Table1" (each month this import needs to be done and it will always have the same name).
To import I'm using:
DoCmd.RunCommand acCmdImport
Right now when I import it shows up as "Table11". So how can I get the import to overwrite the table? (Or can I automatically delete the table through code before the import?).
Thanks.