You need to base the report on a query, and do this:
Assume tblState
State - text
County - text
Select the state field, and then select the county field twice. Select View Totals, and then change the second county field to Count.
Your SQL will look like this:
SELECT tblState.State, tblState.County, Count(tblState.County) AS CountOfCounty
FROM tblState
GROUP BY tblState.State, tblState.County;
Then base the report off this query.
Did that help?
mmcdonal
|