From: EllenM on
Hello,
I have a table with several check boxes. I'd like to place in the report
footer a count of the number of records where both conditions exist:
checkbox 1 is checked
checkbox 2 is unchecked.

Thanks in advance for your help.

Ellen
From: Marshall Barton on
EllenM wrote:
>I have a table with several check boxes. I'd like to place in the report
>footer a count of the number of records where both conditions exist:
>checkbox 1 is checked
>checkbox 2 is unchecked.


Here's one way:

=Sum(IIf(checkbox1 And Not checkbox2, 1, 0))

--
Marsh
MVP [MS Access]