Hi,
I have this field, Franchise Loans, that can have 3 possible values - NULL, 00000000, or some number. I want to call out where there is a number.
I have this IF statement: IF ([FRANCHISE_LN] != '00000000' OR !IsNull([FRANCHISE_LN])) THEN 'Y' ELSE 'N' ENDIF where it should be calling out where it's not the 00000000 or NULL value and only flag Y where that does not happen but instead it flags Y for every single value, including where it is NULL or 00000000.
How do i fix this?