I have a report Crystal 8.5 I need a formula for the record selection. IN SQL this works
SELECT * FROM tblClaim WHERE NOT (AppraiserLastName IS NULL) AND DateClosed IS NULL
However in Crystal the first part works
{tblClaim.AppraiserLastName} <> "NULL"
But I can't figure out how to use DateClosed IS NULL. When I try to enter it it wants only date information since it is a date field. Is there a workaround for this in the Crystal formula ?? Thanks for any help.
SELECT * FROM tblClaim WHERE NOT (AppraiserLastName IS NULL) AND DateClosed IS NULL
However in Crystal the first part works
{tblClaim.AppraiserLastName} <> "NULL"
But I can't figure out how to use DateClosed IS NULL. When I try to enter it it wants only date information since it is a date field. Is there a workaround for this in the Crystal formula ?? Thanks for any help.