I need to import tables from various databases on a monthly basis. Once the tables are imported, the databases are archived and not looked at again.
I have the following
You can use SQL and build a SQL statement and .RunSQL that I believe.
.RunSQL
An example SQL would be
SELECT * into tblIMPORT FROM xyz IN '' '; database=C:\Workspace\Database1.accdb;PWD=test';
Hope this helps.