Hi everyone,
I'm trying build a formula that looks at a column of check boxes, and if certain boxes are checked off, it will give me a "green light".
Here is the formula that currently works:
=IF(COUNTIF(Completed13:Completed26, 0) > 0.5, "Red", "Green")
It compiles all the check boxes in my column from row 13 to 26, however I need it to omit at least one cell, potentially more.
Any help or suggestions are greatly appreciated!