Hey all,
I'm using a Count Collect formula I grabbed from the PMO template as a baseline. Here's the original formula:
=COUNT(COLLECT({Task ID}, {Task Status}, "In Progress", {Task Health}, $Label@row))
Only thing I changed from the PMO is instead of "Project" I changed it to "Task". I'm trying to get similar metrics on individual tasks that don't fall within projects.
What I'm struggling with is modifying the "Collect" criterion (currently "In Progress") to look for more than just "In Progress" status.
Here's what I tried that I was positive was going to work, but it returns a 1, when it should return a 0.
=COUNT(COLLECT({Task ID}, {Task Status}, OR({Task Status} <> "Complete", {Task Status} <> "Canceled"), {Task Health}, $Label@row))
Essentially all statuses that are not "Complete" nor "Canceled".
Let me know what I'm missing or if I can provide any additional information. Thanks!