Try
=Abs(Sum([Recommend]))
How it works
A Check box has a value of 0 (unchecked) or -1 (Checked). So we sum the
values and get a negative number for all the boxes that are checked. We use
the Abs function (absolute value) to get rid of the negative sign.
Count counts the presence of a value. The only time Count does not count
something is if the value is NULL. Since 0 and -1 are both values you get a
count of the number of checkboxes. You could count the checks with this
statement
=Count(IIF([Recommend] = True, 1,Null))
amd the non-checks with
=Count(IIF([Recommend] = False, 1,Null))

Signature
John Spencer
Access MVP 2002-2005, 2007-2008
Center for Health Program Development and Management
University of Maryland Baltimore County
.
>I have a report that shows the results of our customer satisfaction
> questionnaires.
[quoted text clipped - 7 lines]
> Many thanks
> CW
CW - 07 Mar 2008 14:01 GMT
Perfect! Worked first time. And I appreciate the explanation of how it works.
Many thanks John.
CW
> Try
> =Abs(Sum([Recommend]))
[quoted text clipped - 24 lines]
> > Many thanks
> > CW