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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Blank date time field formula problem

Status
Not open for further replies.

Bennie47250

Programmer
Nov 8, 2001
515
US
Crystal 7.0 using a SQL 7.0 table linked in Access 97

Trying to write a formula that checks this field to see if it contains a value. If NO value is found do this, if a value is found do that. I can’t seem to find the proper way of checking this field for a NULL. Any tips would be appreciated.

Thanks
Bennie
 
Depending on your set-up one of the following should work:

if isnull(field} the do this else do that
or
if {field}=0 then do this else do that
or
if {field}="" then do this else do that Mike

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top