Hello and good morning. I am having an issue trying to import a Excel 2003 file into Access 2003 using VBA. This Excel file is exported and saved from SAP as a text (tab delimited) file. When I attempt to import this file using Access and this VBA code:
DoCmd.TransferSpreadsheet acImport, 8, "SAP_Import", "\\Server2\Common\Materials\Winding.xls", True, ""
I receive the Run-time error '3274':
"External table is not in the expected format
But if I open the Excel Winding.xls file and save a copy in the latest Excel format it imports fine.
Does anyone have any suggestions on how to fix this issue they would like to share. Thank you.
DoCmd.TransferSpreadsheet acImport, 8, "SAP_Import", "\\Server2\Common\Materials\Winding.xls", True, ""
I receive the Run-time error '3274':
"External table is not in the expected format
But if I open the Excel Winding.xls file and save a copy in the latest Excel format it imports fine.
Does anyone have any suggestions on how to fix this issue they would like to share. Thank you.