My query does not return what I think should be the Null Values

Randy

Registered User.
Local time
, 22:50
Joined
Aug 2, 2002
Messages
94
I have a very simple table. It has 12 fields, but I am only interested in GroupId, and dimension. dimension has what I believe to be some null values. when I run a simple query, both fields as output, and field dimension sorted ascending, I get my correct results. But when I run it with IS NULL as a criteria, I get and empty answer set.
see attached screen shots.

Any idea what I am missing?
 

Attachments

It could be the field contains a ZLS. Try this in the criteria:

""

Or in SQL view try

WHERE Nz(Dimension, "") = ""

which will get both.
 
thank you, the "" worked just fine. I will google ZLS to understand why "" worked but not IS Null. Again many thanks.
 

Users who are viewing this thread

Back
Top Bottom