Is there a way to have the user choose what file to import, but set everything else up in VBA?
The command button that would start the import would have something like this --
-- with the ??? indicating where you would typically put the path and name of the spreadsheet. However, the spreadsheet that will be imported will have a variable name including the date (such as "IMPORT080807.x ls").
Any thoughts on how to do this?
Thanks!
The command button that would start the import would have something like this --
Code:
DoCmd.TransferSpreadsheet acImport,acSpreadsheetTypeExcel9, "tblMAIN",???,True
Any thoughts on how to do this?
Thanks!
Comment