I have some code that saves the active worksheet as a tab delimited text file, however the cell data that has a comma character in them gets exported with quotation marks, like
John Hopkins, Burgers
becomes
"John Hopkins, Burgers"
How can I work 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 removes all "". Can I add an additional save to the code?