Line 3 works perfectly.
Why is it not recognising "Null" in Line 1 and 2.
Media and Magazine fields are both String.
Thanks for looking :)
Solved! Go to Solution.
Thanks for your quick reply.
I tried this but got the same result.
IF ([Media] = "Media" AND IsNull([Magazine])) THEN "Media"
ELSEIF (IsNull([Media]) AND [Magazine] = "Magazine") THEN "Magazine"
ELSEIF [Media] = "Media" AND [Magazine] = "Magazine" THEN "Media & Magazine"
ELSE "test"
ENDIF
Hi, for recognising Null Values, you will need to put IsNull([Media]), IsNull([Magazine]). By the way, you could probably use a normal Formula tool for your current formula.