How to correctly display .csv files within Excel 2013?

后端 未结 7 1197
一个人的身影
一个人的身影 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:13

    Another possible problem is that the csv file contains a byte order mark "FEFF". The byte order mark is intended to detect whether the file has been moved from a system using big endian or little endian byte ordering to a system of the opposite endianness. https://en.wikipedia.org/wiki/Byte_order_mark

    Removing the "FEFF" byte order mark using a hex editor should allow Excel to read the file.

提交回复
热议问题