A query like:
SELECT CampSession, Count(CampSession) AS NumberRegistered
FROM YourTable
GROUP BY CampSession
will give you what you need, then base a report on the query.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com
"Steve" <(E-Mail Removed)> wrote in message
news:390C2E71-0E6B-473B-91DC-(E-Mail Removed)...
> The calc below gives the total number of records in the table which is not
> what I am after.
> Resident Camp Registration has 35 different camp sessions in 1500 records
> which when totaled in the report would be the # registered for each camp.
> I
> have tried adding several different criteria to count a total for each of
> the
> different camp sessions without success.
>
> =DCount("[1st Choice Camp Session]","[Resident Camp Registration]")
>
> Does anybody have any ideas?
>
> Thx in advance for the help.