Excel VBA to save .xls file as UTF-8 text file

  • Thread starter Thread starter match5man
  • Start date Start date
M

match5man

I am currently writing an Excel VBA for manupicating an excel file an
then save as a tab delimited file. I have successfully use th
following code to save it as unicode text file.

ActiveWorkbook.Save
ActiveWorkbook.SaveAs filename:= _
filepath & filename & ".txt", FileFormat:= _
xlUnicodeText, CreateBackup:=False
ActiveWorkbook.Close

However, I would like it to save as UTF-8. Is there anyway I coul
handle this? Thanks ^_^:confused
 
Back
Top