Hi Guys,
I want to find and replace a string in all rows in a particular column.
For example replace the string "be" with "" for all values in column "Task".
Tried the below code although doesn't work.
UpdateIf(Col,
"be" in Task,
{Task: Substitute( "Task", "be", "" ))}
)
Any help is greatly appreciated.
Thanks