Here's my query so far:
This produces a report for each FLD1 where its value occurs more than once, and the number of times that value occurs. Is there a way to also include for each FLD1 the total number of FLD1 occurrences?
Example:
FLD1 HowMany Total
aaa 2 7
bbb 2 7
ccc 3 7
Thanks
Code:
SELECT Table1.[FLD1], Count(Table1.[FLD1]) AS HowMany
FROM Table1
GROUP BY Table1.[FLD1]
HAVING (((Count(Table1.[FLD1]))>1));
Example:
FLD1 HowMany Total
aaa 2 7
bbb 2 7
ccc 3 7
Thanks