options/ Voting / Radio buttons counting

G

Gbarnes1

How do I count voting buttons ? Im sending an questionaire via email and
have the need for rapidly counting the responses. Thanks in advance.
 
D

Dave Peterson

You could make sure each checkbox has an associated linked cell.

Say your linked cells were in A1:A10, you could use:

=countif(a1:a10,true)

to find the number of checked checkboxes.
 
Top