I have a code that saves the active worksheet as a text file with tab delimiters, however the cell data that has a comma character is exported with quotes, for example
John Hopkins, Burgers
becomes
"John Hopkins, Burgers"
How can I get around this?
This is my code:
ActiveWorkbook.SaveAs ActiveWorkbook.path & "\" & filename,
FileFormat:=xlText, CreateBackup:=False
Adding this: I just found out that if I save the file again, it will delete everything "". Can I add extra save to code?
source
share