Checking for empty date field

davesmith202

Employee of Access World
Local time
Today, 11:38
Joined
Jul 20, 2001
Messages
522
I can check using Is Null as a filter but what about if someone has previously entered a date but then deleted it? It won't be a null. So, what criteria would I use to check for that in my query?

Thanks,

Dave
 
Use LEN

If Len(FieldName) = 0 then etc

Len equals Length.
 
I can use that in the QBE grid? I need the filter for the query and not a vba created query.
 
Sorry about that I did not realise you were using a query.

Try
NewField:Len(FieldName)

Criteria > 0
 

Users who are viewing this thread

Back
Top Bottom