Hi, I have the following formula that is returning some Null Values. I exported into excel the Output data and looked at the items with STTL_STATUS of "5". About 95% of them returned a value but about 5% returned Null. I can't figure out why since the STTL_STATUS field has been cleared of whitespace, all values looked at = "5" exactly, and the [STTL_DATE] field has a value for every entry including the ones that are returning Null that is data formatted and also cleared of whitespace.
Can you think of any reason why a small subset of the output data would be returning a Null value? Thank you
if [STTL_STATUS] = "5" then [STTL_DATE] elseif [STTL_STATUS] = "4" then [STTL_APP_DATE] elseif [STTL_STATUS] = "2" and [STTL_ORDER_SUFFIX] = "POA" then [STTL_DATE] elseif [STTL_STATUS] = "2" and [STTL_ALREADY_APPLIED] = "1" then [STTL_DATE] else "Unapplied" endif