A
Angela
Is there a function in Access that would enable me to count the records in a
Report when a check box is ticked
Report when a check box is ticked
Is there a function in Access that would enable me to count the records in a
Report when a check box is ticked
John Spencer said:Since checkboxes are usually tied to a yes/no field they always have a
value. The trick here is to account for the field always having a value (-1
or 0).
=Abs(Sum(CheckboxField))
or
= Count(IIF(CheckboxField=True,1, Null))
--
John Spencer
Access MVP 2002-2005, 2007
Center for Health Program Development and Management
University of Maryland Baltimore County
..