Hello,
I am working on a project that is counting checked checkboxes that are checked via a column formula. I have tried changing to a COLLECT and a VALUE function but neither seem to work.
Summary Formula currently: =COUNTIF(VALUE([At Risk]:[At Risk]), =1) - Returns Invalid Data Type
Checkbox column formula: =IF(OR((AND([% Complete]@row <= 0.5, NETWORKDAYS(TODAY(), Finish@row) <= 10)), (AND([% Complete]@row <= 0.75, NETWORKDAYS(TODAY(), Finish@row) <= 5)), (AND(Status@row = "Not Started", NETWORKDAYS(TODAY(), Finish@row) <= 5)), AND([% Complete]@row < 1, Finish@row < TODAY())), 1)
Any help would be appreciated!