A family of Microsoft relational database management systems designed for ease of use.
I tried using acspreadsheetTypeExcel12 and get the same error. When I use acspreadsheetTypeExcel12Xml I get run-time error '3170' Could not find installable ISAM.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
When I try to run the following code I get the run-time error '3709':
Sub ImportfromExcel()
Dim MyPath As String
MyPath = "C:\Temp\GDXData.xlsx"
DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel9, "GDXData", MyPath, True
End Sub
Can you point me to what is causing this error. I'm trying to import an existing excel spreadsheet into a new table in Access 2010.
Thanks
A family of Microsoft relational database management systems designed for ease of use.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
I tried using acspreadsheetTypeExcel12 and get the same error. When I use acspreadsheetTypeExcel12Xml I get run-time error '3170' Could not find installable ISAM.
Isn't acSpreadsheetTypeExcel9 for xls files. I believe you need to use acSpreadsheetTypeExcel12 or acSpreadsheetTypeExcel12Xml for xlsx files (I believe it is the later that is the correct constant to use).
Sadly MS has done a horrible job keeping their help files up-to-date and many of these are unknown unless you have researched such a problem and found the answer.