Exclude Items in a Query

D

Dick Bell

I have an inventory field "Backordered"; if the field value is >0 or an item
is on backorder I want to exclude that item from my query. Also a similiar
field, "Obselete", always has either a Y or N. How do I exclude an item
where the field contains a Y?
Thanks for your help,
Dick
 
J

John Vinson

I have an inventory field "Backordered"; if the field value is >0 or an item
is on backorder I want to exclude that item from my query. Also a similiar
field, "Obselete", always has either a Y or N. How do I exclude an item
where the field contains a Y?
Thanks for your help,
Dick

For the Backordered, just set a criterion of

=0 OR IS NULL

For Obsolete, use a criterion of

<> "Y"

(not equal to Y)
 

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

Top