Import Excel file to back end database
Is there code to import an excel file to the back end database?
I have QC.mdb and QC_be.mdb. I want to have the user click a button on the front end QC.mdb switchboard and import the excel data into a QC_be.mdb table. (I'm trying to keep the user out of the back end database.)
Can I modify the following line to do this?
DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel9, _
"tblImportData", "C:\Q_C\Sample_Data.xls"
|