I am trying to suppress all values that don't meet my formula. I have included my formula for reference. This formula works but I am unable to suppress values that = "30000" where the CMT field has URIN in it.
IF({ED_IEV_EVENT_INFO_start.EVENT_TYPE}) <> "50" THEN YES AND
IF(({ED_IEV_EVENT_INFO_start.EVENT_TYPE}) = "30000" AND ({ED_IEV_EVENT_INFO_start.EVENT_CMT}) like "*URIN*") THEN NO
ELSE IF ({ED_IEV_EVENT_INFO_start.EVENT_TYPE}) <> "30000" THEN YES
YES = suppress
NO = do not suppress
I problem I have is I want to see values of TYPE = 30000 with CMT = URIN but do not want to see values of TYPE = 30000 with any CMT not equal to URIN.
Thank you all in advance for looking and helping in anyway you can.