Question : Query help

I have an Access table with 2 columns, TestID and TestDate.  It holds a test number and the date of the test.  A test number is repeated several times with each time the test was done.  I need a query that gives me just the most recent test date of each test.

Thanks  

Answer : Query help

SELECT TestID, Max(TestDate)
FROM SomeTable
GROUP BY TestID
Random Solutions  
 
programming4us programming4us