G Guest Dec 26, 2003 #1 I am trying to count the number of "yes" check boxes in a column in an Access Report. How do I do this?
I am trying to count the number of "yes" check boxes in a column in an Access Report. How do I do this?
F fredg Dec 26, 2003 #2 EB said: I am trying to count the number of "yes" check boxes in a column in an Access Report. How do I do this? Click to expand... To count the number of Yes values: =ABS(Sum([CheckBoxName])) To Count No values: =Sum([CheckBoxName]+1)
EB said: I am trying to count the number of "yes" check boxes in a column in an Access Report. How do I do this? Click to expand... To count the number of Yes values: =ABS(Sum([CheckBoxName])) To Count No values: =Sum([CheckBoxName]+1)