View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Biff
 
Posts: n/a
Default Is there a way to add up check boxes

Hi!

Open the Control Toolbx toolbar
Click on Design Mode
Right click the checkbox and select Properties
Look for LinkedCell
Enter a cell reference that will link the checkbox to that cell. When the
checkbox is checked the linked cell will display TRUE, when the checkbox is
unchecked the linked cell will display FALSE.

Exit Design Mode

Then, to count how many checkboxes are checked you just need a simple
Countif:

Assume all the checkboxes are linked to cells in column A:

=COUNTIF(A1:A20,TRUE)

You may not want to see the contents of the linked cells. You might be able
to "cover" them with the checkbox itself or you can put them in an off
screen location or you can hide them with conditional formatting. Lots of
options!

Biff

"strider11580" wrote in message
...
I have a Excel sheet that I made. I went to View, Toolbars, then Control
Toolbox. I entered the design mode and made a check box. I then proceded
to
adjust that box to fit the cell I needed it to fit into. I then added the
boxes to the whole collum. I can check and uncheck my boxes fine. I would
like to have a running total at the bottom of that row to tell me how many
boxes are checked. I will be adding and subtracting checks from this
collum
so I need it to keep up and tell me how many I have checked. Can some one
give me an idea of how to do it. I have been told since the checkbox is
like
a picture you can't add them up, or somthing to that effect.