Hi,
Your question is somewhat vague. In your subject line you ask about
counting unchecked boxes. In your message you ask about counting records.
To count the check boxes, use Duane's method. Which from a brilliant
prior post by him can be simplified to:
select Sum(2+[E-Mail]+[Mail]) as Unchecked_Count
from tblYourTable;
To count the records where both the fields are not checked just do a
summary query with the condition of both have to be false.
select Count(*) as Record_Count
from tblYourTable
where [E-Mail] = False and [Mail] = False;
Clifford Bass