Not like

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Not Like "WF*" eliminates anything that starts with WF (good) and any null
values (not good). The solution was to change the Criteria to Not like "WF*"
OR Is Null.
My question is why didn't the simple "not like" work? Is this what is
expected?
Thanks
WAL
 
Due to Null's special nature, you can't use standard boolean operators like
=, <>, Like or Not Like to check Null values.

Remember that Null means "Value unknown". If it's unknown, then it could
start with WF...
 

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