I'm using a COUNTIFS statement to sum up specific conditions. I have it functioning correctly aside from not being able to incorporate an "Active" column, which is a formula applied to a column that checks the box (true/false) based on a separate condition. When I attempt to add this final condition, I encounter the following error "#INCORRECT ARGUMENT SET". If I add the formula pertaining to the "Active" column in isolation on a different row (=COUNTIF(Active@row, true)), it functions just fine. Incorporating both is leaving me stumped. My existing formula is below. I appreciate any feedback you can provide. Thank you!
Working formula: =COUNTIFS({End Dates}, <TODAY(), {End Dates}, <>"", {TP Docs}, =$Document2, {TP Docs}, <>"", {Task}, NOT(CONTAINS("progress", @cell)))
Non working: =COUNTIFS(Active@row, =true, {End Dates}, <TODAY(), {End Dates}, <>"", {TP Docs}, =$Document2, {TP Docs}, <>"", {Task}, NOT(CONTAINS("progress", @cell)))
-JP