Hi, I am struggling with an multiple IF statement. I have tried many ways and keep getting either Malformed If Statement. I am using the statement below:
IF Contains([Taxonomy used],'E')
AND if ([Matching Status]='MATCHED')
THEN "RECONCILED" ELSE Null()
ENDIF
I also wanted to add a couple of other statements to the formula and haven't attempted this yet as struggling with adding just one IF statement above.
IF Contains([Taxonomy used],'E')
AND if ([Matching Status]='UNMATCHED1')
THEN "UNMATCHED" ELSE Null()
ENDIF
IF Contains([Taxonomy used],'E')
AND if ([Matching Status]='UNMATCHED2')
THEN "MATCHED" ELSE Null()
ENDIF
Any suggestions?