Hi Smarties,
I have columns of checkboxes across the sheet.
I would like to make a formula of "Total Number of checked boxes are: ____"
The below formula seems to work well counting all checked boxes across the sheet.
=COUNTIFS([Value 1]4:[Value 4]106, =1) + COUNTIFS(Completed4:Completed106, =1) + COUNTIFS([Critical Tasks]4:[Critical Tasks]106, =1)
It returns 46 (correct number of checked boxes)
However, when I put in the text as below,
="Total Number of checked boxes: " + COUNTIFS([Value 1]4:[Value 4]106, =1) + COUNTIFS(Completed4:Completed106, =1) + COUNTIFS([Critical Tasks]4:[Critical Tasks]106, =1)
It returns as Total Number of Checked boxes: 8335
Looks like it is counting something else in the strings of text that I have entered.
Any ideas?
Thanks
Syed