Null Date Field

Khushalay

Registered User.
Local time
Today, 10:34
Joined
Apr 16, 2016
Messages
180
Hi friends

Im working on a query that returns the date field records excluding null that is if the said date field is null, query wont extract that record in the report.

Im using <>"" and Not IsNull() but both are not working. The type mismatch error comes whereas <>"" works in other text fields and check boxes. Maybe this expression is not used with the date field.

Can I please get some suggestions?

Thanks in advance.
 
You don't use the function IsNull(),
You only need:

Not is null
 
You might also consider the IsDate() function.
 

Users who are viewing this thread

Back
Top Bottom