Ray:
spanned=the length of time between the 1st record and the 10th record
of the desired recordset.
i.e. If I knew that 1 record is created each day, I could limit the
record set using the date field. <=Today AND >=Today-10 days.
Your solution is similar to what I found, and Dirk's. I modified the
query to TOTALS query, changed the date column to "MAX", then viewed
the query in SQL so I could change the limit to top 10.
Since I also displayed the date in my form, I had to add the date
field column a second time, leaving the 2nd column to GroupBy.
Thanks for your comments.
I'm not sure what you mean by the date being "spanned". But assuming you
have a table with names and qualification dates, the following should work:
SELECT TOP 10 Name FROM QualificationTable
ORDER BY QualificationDate DESC
It would give you the 10 records with the largest (most recent)
qualification date.
Ray
Hidi Ho,
The Dweeber