Hi Alteryx Community,
Appreciate some help regarding this simple challenge
Am currently stuck ending off with an ELSE NULL statement as append below
Would like to end off with ELSE "keep field value the same" statement. In order to keep the field value the same if the above 2 ifs statement is not met.
How would you go about ending the conditional statement
IF
Contains([Channel],"AGGREGATOR")
THEN "Aggregators"
ELSE IF
Contains([Channel], "AFFILIATES")
THEN "Partners and Affiliates"
ELSE Null()
ENDIF
Thanks in advance !