How to correctly display .csv files within Excel 2013?

后端 未结 7 1194
一个人的身影
一个人的身影 2020-11-27 09:51

It seems Excel 2013 doesn\'t read CSV files correctly (Excel 2010 does). Every time I open .csv files, all my data are displayed in the first column.

I know I can go

7条回答
  •  自闭症患者
    2020-11-27 10:15

    Open the CSV file with a decent text editor like Notepad++ and add the following text in the first line:

    sep=,
    

    Now open it with excel again.

    This will set the separator as a comma, or you can change it to whatever you need.

提交回复
热议问题