J
JBeckett
Here's my problem. I get a CSV file from a vendor that I need to edit. The
file comes in the following format:
"field1","field2","field3","field4"
After editing the file and saving as a CSV, my data looks like the following
in a text editor:
field1,field2,field3,field4
In order to send the file back to the vendor I need those quotation marks
back. I've tried importing the data and setting the text qualifier to {none},
which accomplishes the goal of preserving the quotation marks, however when I
save as a CSV file, my data comes out as so:
"""field1""","""field2""","""field3""","""field4"""
Any input would be greatly appreciated.
file comes in the following format:
"field1","field2","field3","field4"
After editing the file and saving as a CSV, my data looks like the following
in a text editor:
field1,field2,field3,field4
In order to send the file back to the vendor I need those quotation marks
back. I've tried importing the data and setting the text qualifier to {none},
which accomplishes the goal of preserving the quotation marks, however when I
save as a CSV file, my data comes out as so:
"""field1""","""field2""","""field3""","""field4"""
Any input would be greatly appreciated.