Use a query to find incomplete fulfillment orders

G

Guest

Dear all,

I would like to create a query on a table which records details on whether
we have recieved goods delivered or not. I have a field called Quantity and
another called Quantity recieved. I would like to create my query to pull
through any data where Quantity recieved doesn't match Quantity.

Very gratefull for any help here.
 
J

John Spencer

Basically, the criteria should be

Field: Quantity
Criteria: <> [Quantity Received]

If Quantity Received can be blank (null) then
Field: Quantity
Criteria: <> Nz([Quantity Received],-1)

OR use this if quantity received can be null

Field: Quantity
Criteria (line1): <> [Quantity Received]

Field: Quantity Received
Criteria(Line 1): <<Blank>>
Criteria(Line2): Is Null

--
John Spencer
Access MVP 2002-2005, 2007
Center for Health Program Development and Management
University of Maryland Baltimore County
..
 

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