Remove space between Enum list item and comma

I have a enum list of employees. when I select multiple employees and go to the excel file it looks like this: Josh , John. I would like to make the formatting Josh, John. Is there a way to do this?

Solved Solved
0 13 1,533
1 ACCEPTED SOLUTION

Personally, I think I would let AppSheet record lists in the way it likes to (โ€œJosh , Johnโ€ etc) and then use SUBSTITUTE() to fix it. SUBSTITUTE() is available in AppSheet and spreadsheets. In Google sheets it would be something like this:

SUBSTITUTE(A2," , โ€œ,โ€, ")

https://support.google.com/docs/answer/3094215?hl=en

Iโ€™m thinking of having two columns: one that AppSheet records in the way it likes and one that you reformat with SUBSTITUTE().

In AppSheet, you would need to convert the list to one long text string with CONCATENATE() before using SUBSTITUTE().

View solution in original post

13 REPLIES 13
Top Labels in this Space