All,
I am trying to import a table from Excel, but I get the 3709 error,
search key not found. Any ideas? My TransferSpreadsheet method
statement is:
DoCmd.TransferSpreadsheet acImport, , "tblStaging", strFilePath &
"Temp.xls", True, ""
Thanks in advance,
Sarah
NthDegree - 31 Aug 2006 15:43 GMT
I suspect the empty string parameter you have specified for Range is causing
the problem, try this.
DoCmd.TransferSpreadsheet acImport, , "tblStaging", strFilePath &
"Temp.xls", True
> All,
>
[quoted text clipped - 7 lines]
> Thanks in advance,
> Sarah