S shadowspell New member Local time Today, 07:50 Joined Apr 8, 2003 Messages 8 May 21, 2003 #1 When generating a report, how can I get a total on the number of times a certain checkbox was checked? Thanks, Chris
When generating a report, how can I get a total on the number of times a certain checkbox was checked? Thanks, Chris
Fornatian Dim Person Local time Today, 12:50 Joined Sep 1, 2000 Messages 1,394 May 21, 2003 #2 If the checkbox is on your report use an expression in the footer of the group suchas: =Sum(Abs([YourChkBx]))
If the checkbox is on your report use an expression in the footer of the group suchas: =Sum(Abs([YourChkBx]))
dcx693 Registered User. Local time Today, 07:50 Joined Apr 30, 2003 Messages 3,265 May 21, 2003 #3 FYI shadowspell, Fornation's formula works because Access stores the values of checkboxes as true or false. Internally, Access stores true as -1 and false as 0.
FYI shadowspell, Fornation's formula works because Access stores the values of checkboxes as true or false. Internally, Access stores true as -1 and false as 0.
S shadowspell New member Local time Today, 07:50 Joined Apr 8, 2003 Messages 8 May 21, 2003 #4 Thx Thank you Fornation, that did exactly what I needed. Chris