In Excel, Is there an option to prevent quotes from being used on text strings when you export a sheet to TSV?
feedback
|
|
If your data contains double quotes, commas or new-line characters, then Excel will wrap that field in double quotes in the text file (and double up any existing double quotes). Check out this Wikipedia entry on the "Basic rules" for CSV files (which Excel seems to follow). Unfortunately Excel saves it like that, and there's not much you can do about that. You may have to write a VBA macro to strip them on save (if possible), or write a program to strip them after the fact, or perhaps use a text editor and search and replace them with "null", or an implementation of grep or alike. | |||||||||
feedback
|
|
If you use the .prn format "Formatted Text (Space Delimited)" for saving text in excel then no quotes are added. | |||
|
feedback
|
