For each row you can get a total by taking advantage of the fact that a checkbox is -1 if true and 0 if false. If you add a calculated column to the underlying query it could look like this in design mode: Total:Abs(checkbox1 + checkbox2 + checkbox3 + checkbox4, etc) or like this if in SQL Mode: Select ...,Abs(checkbox1 + checkbox2, etc) AS Tot
If you need a group or grand total of the individual checkboxes, create a calculated field in the query for each one giving the field a value of 1 if it is true like so:
TotCheckbox1:IIF(checkbox1, 1, 0)
TotCheckbox2:IIF(checkbox2, 1, 0), etc
or like so:
SELECT ..., IIF(checkbox1, 1, 0) AS TotCheckbox1, IIF(checkbox2, 1, 0) AS TotCheckbox2, etc.
Good Luck! Please remember to give helpful posts the stars they deserve! This makes the post more visible to others in need!
![[thumbsup] [thumbsup] [thumbsup]](/data/assets/smilies/thumbsup.gif)