Is Not Null

Rich1968

Registered User.
Local time
Today, 14:52
Joined
Jan 24, 2003
Messages
57
Hey There!

I am trying to produce a list of e mail addresses from a query. I do not want any blank fields to show up. So I put "Is Not Null" (without the quotes) in the critera section of my query. I still get null values.

Any Suggestions?

Thanks

Rich1968
 
Hi Rich,

Is the email field's data type text? Try <> "" in the criteria section.

Regards,

Martins
 
Did you check for empty strings? Possibly a single space
In the query - add a new field and put
MyLen: IsNull([FieldName])
where field name is the field you are checking
If it is < 0 (-1) it might not be null.

Martins beat me to the post LOL - that is a good solution.
 
Last edited:

Users who are viewing this thread

Back
Top Bottom