Finding null-blank dates

  • Thread starter Thread starter Joseph Meehan
  • Start date Start date
J

Joseph Meehan

I have a friend working with an Access database and and needs to query
just those dates that were blank when imported. She has tried null but it
gives a type mismatch as does "" and 0 etc.

Any ideas?

I believe she is working with Access 2002 and imported the data from a
text file from a mainframe download.

Thanks
 
Assuming this is a Date/Time field in the table, she must use:
Is Null
and not a zero or zero-length string.

If she is applying the criteria to a calculate field, encourage her to
typecast the calculation with CVDate(). Details in:
Calculated fields misinterpreted
at:
http://allenbrowne.com/ser-45.html
 
Allen said:
Assuming this is a Date/Time field in the table, she must use:
Is Null

That's what we both thought. I sent her your reply so we will see

Thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top