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 for null values 1

Status
Not open for further replies.

micro2005

IS-IT--Management
Mar 14, 2005
50
US
CR 10 and SQL Server 2000.

I need to add a condition in the record selection for a null value. In other words I have to make sure that the records where the closuredate is null are selected. How can I do this?

Thanks in advance.

 
Try:

isnull({table.closuredate})

If that doesn't work, and assuming that it is a date field, try:

isnull({table.closuredate}) or
{table.closuredate} = date(0,0,0)

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top