Date Query

  • Thread starter Thread starter Erman Samelo
  • Start date Start date
E

Erman Samelo

I have a table that tracks every date an item is received
by my office. If one item goes back and forth numerous
times between two offices, that item will also have
numerous "date received" entry. I'm trying to construct a
query that only generates the most current date entered.
Is there a way to do this? Thanks.
 
Erman,

Something like:
SELECT Item, Max([date received]) AS LatestDate
FROM YourTable
GROUP BY Item

- Steve Schapel, Microsoft Access MVP
 

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

Similar Threads


Back
Top