in reply to Reading huge spreadsheets using Spreadsheet::ParseExcel...

I too had some problems initially like this. Remember, .XLS doesn't support more than 65,536 rows, this is because of the limitation 2^16 . Only .XLSX can have more than 2^16 rows. But the problem is Spreadsheet::ParseExcel cannot read files in the Excel 2007 Open XML XLSX format. So, i think , you have to go for Spreadsheet::XLSX.
  • Comment on Re: Reading huge spreadsheets using Spreadsheet::ParseExcel...