Enumlist values are parsing out when sent to csv

I have an ENUMLIST storing data as expected. I use SUBSTITUTE to put it into the clients format but when the data is exporting to csv it distributes across columns (due to the comma) when it should stay in one single field.

I tried wrapping it in another set of commas but appsheet doesnโ€™t like the expression.
โ€œ^โ€&SUBSTITUTE([BIN Refurb Type],",","^,^")&"^"

How can I get the data to appear only in the single field vs. parsed out? A million thanks

Need this:
2X_f_fa9bb9506c8e8062d3354b6866087c0368b8c1e8.png

Getting This:

0 4 182
4 REPLIES 4

Steve
Platinum 4
Platinum 4

Hmmmโ€ฆ Iโ€™d call that a deficiency in the CVS exporter. It should be smart enough to handle data with significant punctuation like that.

Maybe try wrapping like this instead:

'"' & SUBSTITUTE([BIN Refurb Type], ",", "^,^") & '"'

Got it. Will give it a try and report back

Hey Steve it worked! just had to add the ^ at the beginning and end.

Thanks Steve

Top Labels in this Space