HOW DO I SET UP A "DOES NOT EQUAL" FORMULA IN DATABASE?

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

Guest

I am running a query for information based upon some invoices and want to
eliminate those invoices that contain specific words in a particular field.
How do I do that?
 
Mark said:
I am running a query for information based upon some invoices and
want to eliminate those invoices that contain specific words in a
particular field. How do I do that?

WHERE FieldName Not Like "*SomeWord*"
AND FieldName Not Like "*SomeOtherWord*"
etc...
 

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