How Can I find the date of each Last Report

R

Robert Gillard

I have a table of Reports sent, which as the name suggests details each time
a report is sent out.(So if a report went out on the 1st off the month, it
would be listed 3 times for this year 1st Jan, 1st Feb, 1st March) Two of
the Fields are RepName and DateSent.

There are approx 80 reports that are run every month (some reports are sent
weekly), I would like to query the table to find the last date that each
report was sent. So I would end up with a list of 80 (different reports) and
the date on which they were last sent out.

Is this possible please, if not are there any other options.

Bob
 
D

Dan Artuso

Hi,
You would have a query that looks something like this:

Select RepName, Max(DateSent) As LastSent From yourTable Group By RepName
 

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