There’s 1 column that contains commas. When I output my query to csv, these commas break the csv format. What I’ve been doing to avoid this is a simple
replace(A.”Sales Rep”,’,’,”)
Is there a better way of doing this so that I can actually get the commas in the final output without breaking the csv file?
Thanks!
Quote the fields with
"would become
and if the fields have BOTH a
,and a", double the quotes:becomes