Creating Formula using check boxes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to create a formula using various check boxes?

For example, if a check box relating to a particular month is checked, then
that is added to the formula. The formula will then be slowly built according
to what has been checked.

This will be using the SUMPRODUCT formula..

Any ideas/advice appreciated..
 
Hi
if your checkboxes are for example linked to row 2 you could use something
like
=SUMPRODUCT(--(A2:X2),A3:X3)

to sum row 3 depending on the checked columns
 
What is wrong with a faster SumIf formula...

=SUMIF($C$2:$C$4,TRUE,$D$2:$D$4)

where C2:C4 are cell links for check boxes?
 
Thanks guys

You put me on the right track...

Aladin Akyurek said:
What is wrong with a faster SumIf formula...

=SUMIF($C$2:$C$4,TRUE,$D$2:$D$4)

where C2:C4 are cell links for check boxes?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top