Can someone take a look at this formula and let me know why I am getting a boolean required on line # 5
If (isnull ({VENDOR_INFO.VEND_FIELD5}))
then
" "
else
({VENDOR_INFO.VEND_FIELD5})
and
({VENDOR_INFO.VEND_FIELD5}) <> "OVERDUE"
and
({VENDOR_INFO.VEND_FIELD5}) <> "OVERDUES"
I know I have null data in this table but when I include the last 2 statements then my null data does not appear, only tickets with data in the field appears.
If (isnull ({VENDOR_INFO.VEND_FIELD5}))
then
" "
else
({VENDOR_INFO.VEND_FIELD5})
and
({VENDOR_INFO.VEND_FIELD5}) <> "OVERDUE"
and
({VENDOR_INFO.VEND_FIELD5}) <> "OVERDUES"
I know I have null data in this table but when I include the last 2 statements then my null data does not appear, only tickets with data in the field appears.