R Rui Soares via AccessMonster.com Oct 11, 2005 #1 I have one form with several check box, that I need to count. A little help..... please Thanks
A Al Camp Oct 11, 2005 #2 A checkbox has a value of 0 (unchecked/False) or -1 (checked/True) Given 3 Checkboxes... An unbound text control with... =Abs([Check1]+[Check2]+[Check3]) will indicate how many boxes are checked.
A checkbox has a value of 0 (unchecked/False) or -1 (checked/True) Given 3 Checkboxes... An unbound text control with... =Abs([Check1]+[Check2]+[Check3]) will indicate how many boxes are checked.