Hi Team,
I have a collection with multiple columns.
I would like to replace/substitute all values in a particular column.
Example column Color replace all spaces with a "_".
Any help is greatly appreciated.
thanks
Hi @christian12
This is the syntax that you can use:
UpdateIf(colYourCollection,
true,
{Color: Substitute(Color, " ", "_")}
)