1

I was trying to count checkboxes and I saw some tutorials for the formula it was like this

=SUM(countif(B1:B8, TRUE))

it resulted in an error instead with "formula parse error"

player0
  • 124,011
  • 12
  • 67
  • 124
Albi RB
  • 11
  • 1

1 Answers1

0

try:

=SUM(COUNTIF(B1:B8; TRUE))

see: stackoverflow.com/questions/73767719/

enter image description here

player0
  • 124,011
  • 12
  • 67
  • 124