G
Guest
I want to import all my day's data in the app that takes in the most data.
How can I have certain spreadsheets import into a table in another db?
Should I link the table into the DB doing the importing, even tho I'll never
use it in that DB except for importing data?
Code:
strImportFileName = Format([SaleDate], "mm-dd-yy") & " POS6A" & ".xls"
DoCmd.TransferSpreadsheet acImport, 8, "T: Hourly Data by Store", _
"C:\TestAutoImport\" & strImportFileName, True, ""
Where "T: Hourly Data by Store" is in an external application called
"HourlyDataTables.mdb".
Thanks
sara
How can I have certain spreadsheets import into a table in another db?
Should I link the table into the DB doing the importing, even tho I'll never
use it in that DB except for importing data?
Code:
strImportFileName = Format([SaleDate], "mm-dd-yy") & " POS6A" & ".xls"
DoCmd.TransferSpreadsheet acImport, 8, "T: Hourly Data by Store", _
"C:\TestAutoImport\" & strImportFileName, True, ""
Where "T: Hourly Data by Store" is in an external application called
"HourlyDataTables.mdb".
Thanks
sara