Here...just put the sample data in an access database and call it table1 with
the columns of title (text), rev (number/long integer), title (text), and
date (date/time)
So, 1st query is called query1 with the following SQL (just paste it in the
SQL view)
SELECT Table1.Title, Max(Table1.Rev) AS MaxOfRev
FROM Table1
GROUP BY Table1.Title;
So, 2nd query use 1st query to relink with table 1
SELECT Table1.Title, Table1.Rev, Table1.Position, Table1.Date
FROM Query1 INNER JOIN Table1 ON (Query1.MaxOfRev = Table1.Rev) AND
(Query1.Title = Table1.Title)
ORDER BY Table1.Title, Table1.Rev;
If you still can't get this to work, I can send you a zipped file of this,
if you give me your e-mail address.
> I didn't think that I was so uninformed when it came to Access but I'm
> finding out how little I know !
[quoted text clipped - 31 lines]
> >>
> >> THANK YOU