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

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top