• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

count check box

ganeshm

Member
Dear all,

i have attached an excel sheet to count check boxes.

One sample is done for the first row. what formula should i use to count whole check box

Regards,
ganeshm
 

Attachments

  • count check box.xlsx
    20.5 KB · Views: 9
hi xiq,

each check box has value on the top say 1st chk box has 25, 2nd has 15 and the 3rd has 5.

I would like to calculate for the remaining rows too.
 
@ganeshm ,

u can also use the following SUMPRODUCT formula :
Code:
=SUMPRODUCT(($V$6:$X$9=TRUE)*($Y$6:$AA$9))
Regards!!!
 
Last edited:
  • Like
Reactions: Xiq
Hi Ganesh ,

I really do not know why you need to assign the linked cell addresses in this fashion.

If you assign the linked cell for each checkbox as it own cell , and format the entire range as ;;; , the TRUE / FALSE text will not be displayed. Thereafter , all you need is a simple formula such as :
Code:
=SUMPRODUCT((E7:P7)*($E$6:$P$6))
in Q7. Copy this downwards.

Narayan
 
Back
Top