I need help from the SmartSheet formula masters...
I have 10 checkbox columns (checkbox) and I want the RYG ball to automatically change with the following conditions:
- 1) "Red" if no checkboxes are checked.
- 2) "Yellow" if some checkboxes are checked.
- 3) "Green" if all checkboxes are checked.
with one exception... if a check box is "not required" (i.e., the cell value is "-" or "N/a") it should be excluded from the countif formula.
The formula =IF(COUNTIF([Column1]1:[Column2]1, 0) > 0.5, "Red", "Green") works for half of the request, but doesn't help with the "Yellow" status.
What can I do?