Solved Importing excel with 140k records (1 Viewer)

Number11

Member
Local time
Today, 16:07
Joined
Jan 29, 2020
Messages
607
I am using this to import data into a table, however its not importing all records it only import the first 63,500 records, the spreadsheet has 145,000 Records

DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel12Xml, "Table1c", strFileName, True, "A:AF"

So is there a work around to import all records?
 

Minty

AWF VIP
Local time
Today, 16:07
Joined
Jul 26, 2013
Messages
10,374
Try removing the range on the end, which has been known to be troublesome.
 

Gasman

Enthusiastic Amateur
Local time
Today, 16:07
Joined
Sep 21, 2011
Messages
14,445
I'd start here here?
 

Users who are viewing this thread

Top Bottom