Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Formula help Date Field IS NULL 1

Status
Not open for further replies.

Tailgun

Technical User
Mar 30, 2002
417
US
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} <> &quot;NULL&quot;

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.
 
Not IsNull({AppraiserLastName}) and IsNull({DateClosed}) Software Training and Support for Macola, Crystal Reports and Goldmine
714-348-0964
dgilsdorf@mchsi.com
 
Thanks :) after I added the tbl names it works perfectly.

Thanks again
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top