Hello. I have a filter and formula (below) and Alteryx is not identifying the null values, it returns data as if every record has a value in the EXT_TRADE_ACCT_NBR field, which is not the case. This field is formatted as V_string. Do you have advice? Thanks.
Simple filter:
IsNull([EXT_TRADE_ACCT_NBR ])
Simple formula:
IF IsNull([EXT_TRADE_ACCT_NBR ])
THEN [ID1 ]+ [ID2]
ELSE "ok"
ENDIF