Excel CSV. file with more than 1,048,576 rows of data

前端 未结 15 1042
长情又很酷
长情又很酷 2020-12-07 17:44

I have been given a CSV file with more than the MAX Excel can handle, and I really need to be able to see all the data. I understand and have tried the method of \"splitting

15条回答
  •  情歌与酒
    2020-12-07 17:58

    Excel 2007+ is limited to somewhat over 1 million rows ( 2^20 to be precise), so it will never load your 2M line file. I think that the technique you refer to as splitting is the built-in thing Excel has, but afaik that only works for width problems, not for length problems.

    The really easiest way I see right away is to use some file splitting tool - there's tons of 'em and use that to load the resulting partial csv files into multiple worksheets.

    ps: "excel csv files" don't exist, there are only files produced by Excel that use one of the formats commonly referred to as csv files...

提交回复
热议问题