I have a Table and in that table a field named Results with values of 3 digit numbers. I have used the count function to report the number of times a value is repeated in said field with this query.
SELECT [My Table].Results, Count([My Table].Results) AS [Total Results]
FROM [My Table]
GROUP BY [My Table].Results;
How do I use the count function to also return all combinations of the 3 digit number also repeated in field?
Example
Results Count
123 1
132 1
213 1
789 1
798 1
879 1
897 1
After Query I would like the count to show for all values in the field.
Results Count
123 3
132 3
213 3
789 4
798 4
879 4
897 4
etc.