harrymossman
Technical User
I am creating a form that runs a query and combines fields into a text string, which is written as a spreadsheet. Commas are used to separate the data into columns.
Initially, I had a problem because some of the numeric data had commas in it. These commas created extra columns I didn't want. Someone explained that I could fix this with format("Wn",fieldToFormat).
However, I am also having trouble with text elements of the string formula that have commas within them. E.g., "San Francisco, CA" (There's no set pattern of where the commas might be though.)
Can anyone suggest an easy way to fix this?
Initially, I had a problem because some of the numeric data had commas in it. These commas created extra columns I didn't want. Someone explained that I could fix this with format("Wn",fieldToFormat).
However, I am also having trouble with text elements of the string formula that have commas within them. E.g., "San Francisco, CA" (There's no set pattern of where the commas might be though.)
Code:
+ "," + tcMas.projectSite + "," +
Can anyone suggest an easy way to fix this?