Hi,
Since a Yes/No field's value can only be -1 or 0, all you need do is
add them. Use the sum and abs() function e.g.:
=Abs(Sum([YourField]))
If you wish to count No's, use:
=Sum([CheckBoxField]+1)
OR just a dcount() e.g.:
=DCount("[MyYNField]","MyTableName","[MyYNField] = True/False")
You might also find this
article helpful!
HTH
Good luck