I\'m developing a part of an application that\'s responsible for exporting some data into CSV files. The application always uses UTF-8 because of its multilingual nature at
I faced the same problem a few days ago, and could not find any solution because I cannot use the import from csv
feature because it makes everything to be styled as string.
My solution was to first open the file with notpad++ and change the encode to ASCII
.
Then just opened the file in excel and it worked as expected.