Hi All,
In the Formula Tool I'm trying to use the following IF THEN statement to update BRAND but it's not working properly. X and Z are changed to "ALL STILL XLIC":
if !CONTAINS([BRAND],"X") && contains([CARBONATION],"NON") && contains([TYPE],"XLIC")
then "ALL STILL XLIC"
ELSEif !CONTAINS([BRAND],"Z") && contains([CARBONATION],"NON") && contains([TYPE],"XLIC")then "ALL STILL XLIC"
else [BRAND] endif
Is it not possible to have three conditions in the statement?