Dear Community Team
I have one formula field say MATCHED_OR_NOT and want to add below logic but this code is giving error. Can you please help me to analyze what is wrong with following code:
IF [GENDER1] = "E" OR ISNULL([GENDER1]) OR IsEmpty([GENDER1] THEN
IF [AGE_CALC] = [AGE_AT_ENTRY] THEN
"DIRECT - Y"
ELSE
"DIRECT - N"
ENDIF
ELSE
IF [ORIG_AGE] = [AGE_AT_ENTRY] THEN
"DIRECT - Y"
ELSE
"DIRECT - N"
ENDIF
ENDIF
Thank you.
Regards,
LadyN