Sample of using if condition in advance mode in an action
Hello Experts,
I'm trying to update a mobile number format using journey.
I want to add multiple conditions, like
if mobile number 0023456789 then update +23456789 in new_mobile column,
if mobile number 023456789 then update +23456789 in new_mobile column etc.
trying with some syntax:
if substr(mobile_number,0,2) == '00', '+' +substr(mobile_number,2,15),
Could someone please help how can I ingest value in one filed using conditions in other field.