Pardon my ignorance in advance, I'm a complete novice at Crystal Reports.
I need to select all records where a specific field (employee.term_date
) is null. I don't seem to be able to use ISNULL
with a date/time field.
The following will select all records that contain a value in employee.term_date, but I am looking for the opposite - all records where this field is null.
Is there any easy way to use NOT
in the statement below, or is there a better way to accomplish this?
{employee.term_date} > DateTime(1900,1,1,0,0,0)
Thanks in advance for any assistance!
isnull()
with a datetime field. What makes you think you aren't able to use it that way? – Ryanisnull({table.column})
– Ryan