Hi all,
This should be simple but...
I have an automated function to import external Access tables to my database (there is only ever 1 table in the external ACCDB/MDB), BUT the names of the external tables are different.
How can I import a table without specifying the name? (ie default import the only table abvailable)
Thanks
This should be simple but...
I have an automated function to import external Access tables to my database (there is only ever 1 table in the external ACCDB/MDB), BUT the names of the external tables are different.
How can I import a table without specifying the name? (ie default import the only table abvailable)
Code:
DoCmd.TransferDatabase acImport, "Microsoft Access", Me!_txtPath, acTable, [B]TableName[/B], "tbl_MyTable", False
Thanks