Dears,
I'm struggling to find a way to save an excel file like a ".txt UTF-8".
I used to simply save my file like a .csv (comma delimited), but now I have to deal with Chinese characters and I learnt from internet that chinese/japanese/korean characters have some kind of issues and aren't recognize properly by excel csv format (I have lot of "?????" instead of chinese characters).
I am super newbie about VBA code (so please the easiest way, if exists), everything I made I did "stealing" information from internet. This time I'm not able to find an answer on the net.
I used to use the simply code:
ActiveWorkbook.SaveAs Filename:= "C:\Temp\Import.csv", _
FileFormat:=xlCSV, CreateBackup:=False
ActiveWorkbook.Close SaveChanges:=False
I need a way to do the job automatically with excel, so please don't suggest me to save the file as .txt and then manually open it with notebook and save with UTF-8.
Thank you for your support
Maurizio
I'm struggling to find a way to save an excel file like a ".txt UTF-8".
I used to simply save my file like a .csv (comma delimited), but now I have to deal with Chinese characters and I learnt from internet that chinese/japanese/korean characters have some kind of issues and aren't recognize properly by excel csv format (I have lot of "?????" instead of chinese characters).
I am super newbie about VBA code (so please the easiest way, if exists), everything I made I did "stealing" information from internet. This time I'm not able to find an answer on the net.
I used to use the simply code:
ActiveWorkbook.SaveAs Filename:= "C:\Temp\Import.csv", _
FileFormat:=xlCSV, CreateBackup:=False
ActiveWorkbook.Close SaveChanges:=False
I need a way to do the job automatically with excel, so please don't suggest me to save the file as .txt and then manually open it with notebook and save with UTF-8.
Thank you for your support
Maurizio