Thanks
I have tried your suggestion, and several permutations of it without
success. Mine looks like this:
SELECT *
FROM qryTempRptQry
WHERE JobLabel IN(SELECT TOP 10 JobLabel
FROM qryTempRptQry
GROUP BY JobLabel
ORDER BY Count(JobLabel) Desc);
My results seem not be in order of Count(JobLabel) Desc, they are Grouped
though. Under my actual Group, there is a row for each item, but They read
like these, with the Count not descending as expected:
JobLabel1 40 items
JobLabel12 10 items
JobLabel32 31 items
JobLabel7 6 items and so on.
Does the 50 in your original example mean the top 50 in the record stack,
regardless of field, or otherwise?
I hope this is clear enough for you to kind of see what I'm trying to
accomplish.
Thanks