Crystalguru
Technical User
I have a formula that is:
if {Comments.TimeStamp} in date(2002,12,01) to date(2002,12,31) and
({Comments.Action}like "Close - Leased*"
or {ILT_Comments.Action}like"Close - Leased with another*" )
then
1
else
0
This formula is working for the fields that meet the condition. It returns a 1. It also works for fields that do not meet the criteria - 0(zero). Due to a left outer join, some fields do not have anything in the Comments table (null). I have tried the if isnull(comments.ID) then 0, but it doesn't return the 0(zero).
Any ideas?
thanks
if {Comments.TimeStamp} in date(2002,12,01) to date(2002,12,31) and
({Comments.Action}like "Close - Leased*"
or {ILT_Comments.Action}like"Close - Leased with another*" )
then
1
else
0
This formula is working for the fields that meet the condition. It returns a 1. It also works for fields that do not meet the criteria - 0(zero). Due to a left outer join, some fields do not have anything in the Comments table (null). I have tried the if isnull(comments.ID) then 0, but it doesn't return the 0(zero).
Any ideas?
thanks