Say if I have the following code:
address1 = "Main,St".
address = "First Avenue".
output to "test.csv".
put unformatted address1 "," address2 skip.
output close.
if either address1 or address2 have commas in them, then the columns will not align properly in the csv file. How can I get around this with still have the "," as a delimiter?
Thanks
address1 = "Main,St".
address = "First Avenue".
output to "test.csv".
put unformatted address1 "," address2 skip.
output close.
if either address1 or address2 have commas in them, then the columns will not align properly in the csv file. How can I get around this with still have the "," as a delimiter?
Thanks