Replace space bar with comma in a sentence or adding comma after every word

Hello @anjeesanjeet ,

using Sting manipulation, you could use formula

replace(yourColumn, " ", ", ")

(substitution of space char with comma+space)

Maybe before this, make sure you get rid of punctuation characters (see this and similar posts).

Hope it helps.

Have a nice day,
Raffaello

1 Like