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

前端 未结 15 999
长情又很酷
长情又很酷 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 18:23

    You should try delimit it can open up to 2 billion rows and 2 million columns very quickly has a free 15 day trial too. Does the job for me!

    0 讨论(0)
  • 2020-12-07 18:23

    First you want to change the file format from csv to txt. That is simple to do, just edit the file name and change csv to txt. (Windows will give you warning about possibly corrupting the data, but it is fine, just click ok). Then make a copy of the txt file so that now you have two files both with 2 millions rows of data. Then open up the first txt file and delete the second million rows and save the file. Then open the second txt file and delete the first million rows and save the file. Now change the two files back to csv the same way you changed them to txt originally.

    0 讨论(0)
  • 2020-12-07 18:23

    You can try to download and install TheGun Text Editor. Which can help you to open large csv file easily.

    You can check detailed article here https://developingdaily.com/article/how-to/what-is-csv-file-and-how-to-open-a-large-csv-file/82

    0 讨论(0)
提交回复
热议问题