Home > Software engineering >  google sheets sumif not working with checkBoxes
google sheets sumif not working with checkBoxes

Time:02-20

Hello so I have a google sheet where I am running some scripts depending on some values on sheet, one of them should be a sum of rows where a checkbox is checked, however, when I try to do the sumif that fulfills this condition, it does not work, here is what I tried so far: enter image description here

also I tried to do the same while switch the value and checkbox column but I still have the same problem so there must be something I am missing out, thank you.

CodePudding user response:

Try

=SUMPRODUCT(B18:B25*A18:A25)

enter image description here

this works for me too =sumif(B18:B25,true,A18:A25)

  • Related