I am using a DoCmd.TransferSpreadsheet function to copy a spreadsheet into an Access table which was working fine
(creating a 276 record table from a 276 line spreadsheet), but now it is taking a 276 line spreadsheet and creating a table with 14652 records.
I am told that this is an excel 2007 format and the command that I am using is:
Not sure what changed. How can I correct this?
Thanks
(creating a 276 record table from a 276 line spreadsheet), but now it is taking a 276 line spreadsheet and creating a table with 14652 records.
I am told that this is an excel 2007 format and the command that I am using is:
Code:
DoCmd.TransferSpreadsheet acImport, 8, "NewData_tbl", In_File, True
Not sure what changed. How can I correct this?
Thanks