here is a query which might give you a clue on how to use aggregate functions. I you only want the summary you can take out on of the subqueries.SELECT
G.YR
, G.Genre
, (SELECT
Count(*)
FROM tblGenre
WHERE
Genre=G.Genre) AS GCnt
, (SELECT
Count(*)
FROM tblGenre
WHERE...