Welcome to CodeGuru forums!
In CR ide, select menu / File / Report Options
It will display a properties page
Uncheck : "Convert Database NULL Values to Default"
Add a Record Selection Formula
Code:
IsNull ({TableName.DateFieldName})
It will display all the records that has a null value in that field
(change the table & field names to the real ones)
OR
In CR ide, select menu / File / Report Options
It will display a properties page
Check : "Convert Database NULL Values to Default"
Add a Record Selection Formula
Code:
DateValue ({TableName.DateFieldName}) = DateValue(0,0,0)
It will display all the records that had a null value in that field before CR converted them internally to a zero date
(change the table & field names to the real ones)
Bookmarks