I'm trying to create a formula in the Sheet Summary that shows the number of checked items in a Checkbox column named Pending
, out of the total number of rows that have either a checked or unchecked box (i.e., excluding blanks).
=COUNTIF([Pending]:[Pending], 1) + "/" + (COUNTIF([Pending]:[Pending], 1) + COUNTIF([Pending]:[Pending], 0))
I’ve verified that:
- The column name is correct
- The column is defined as a Checkbox type
- The summary field is set to Text/Number
Could you please help me understand what’s causing the error, and whether there’s a recommended workaround?
Thanks in advance,
Gaia