options/ Voting / Radio buttons counting

  • Thread starter Thread starter Gbarnes1
  • Start date Start date
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.
 
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.
 
Back
Top