Really need query help!!

C

Cam

Hello,

I have an appended query that append data to a table based on several
criteria.
The tables include the following data:
Order Oper Status Date
123 80 2 8/17/09
123 90 1 8/17/09
123 100 1 8/17/09
123 110 1 8/17/09
123 120 1 8/17/09
123 130 1 8/17/09
123 130 2 8/21/09
123 140 1 8/17/09
250 10 1 8/17/09
250 20 2 8/17/09
250 30 1 8/17/09

I would like to create a select query to filter data where it will not show
any record where it match the Order then lowest oper number and before the
Status 2. Thanks Results would look like this.

Order Oper Status Date
123 130 2 8/21/09
123 140 1 8/17/09
250 20 2 8/17/09
250 30 1 8/17/09
 
K

KARL DEWEY

Do you have another field like an autonumber to indicate what the record
order is as you have multiple with same date and same Order and Oper?
Or does your date field include time?
 
C

Cam

Hi Karl,

Yes, I do have an autonumber as it is an appended table. How does it affect
the query? Thanks
 

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