max value criteria

H

Howard Brody

If your job numbers increase each time, try:

SELECT tblTable.Item, Max(tblTable.JobNumber) AS LastJob
FROM tblTable
GROUP BY tblTable.Item;

If your job numbers don't necessarily increase each time
then you will need another criteria to pull the LastJob
by. Maybe the job date.

Hope this helps!

Howard Brody
 

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