Calculating Critical Open Items per Business Analyst
I am trying to calculate how many Open items a business analyst has that are in the critical category, this is the formula i am trying to use but i must be doing something wrong
Open equals = To Do, In Progress, Daily Task
=COUNTIFS({2025 Team Activity Tracker Range 3}, HAS(@cell, "BA NAME"), {2025 Team Activity Tracker Range 1}, @cell = Status13), OR(HAS(@cell, Status2), (HAS(@cell, Status3), (HAS(@cell, Status4), (HAS(@cell, Status5)))))
Cayla Davis | Technology Strategy and Optimization Manager
Halifax, Nova Scotia, Canada
Best Answer
-
You would need something more along the lines of:
=COUNTIFS({Analyst Column}, HAS(@cell, "BA NAME"), {Status Column}, @cell <> "Completed", {Category Column}, @cell = Status@row)
Note: You indicated in your text that the "Open" statuses are To Do, In Progress, and Daily Tracker, but in your formula you also included Deferred. Instead of saying one of these four statuses, I specified not Completed. If you also need to exclude Deferred, two statuses to exclude is still less than three statuses to be included, so I would go with exclusion instead of inclusion.
=COUNTIFS({Analyst Column}, HAS(@cell, "BA NAME"), {Status Column}, AND(@cell <> "Deferred", @cell <> "Completed"), {Category Column}, @cell = Status@row)
Answers
-
You would need something more along the lines of:
=COUNTIFS({Analyst Column}, HAS(@cell, "BA NAME"), {Status Column}, @cell <> "Completed", {Category Column}, @cell = Status@row)
Note: You indicated in your text that the "Open" statuses are To Do, In Progress, and Daily Tracker, but in your formula you also included Deferred. Instead of saying one of these four statuses, I specified not Completed. If you also need to exclude Deferred, two statuses to exclude is still less than three statuses to be included, so I would go with exclusion instead of inclusion.
=COUNTIFS({Analyst Column}, HAS(@cell, "BA NAME"), {Status Column}, AND(@cell <> "Deferred", @cell <> "Completed"), {Category Column}, @cell = Status@row)
-
Perfect! That worked, thank you so much!!! You taught me something new :) Thanks Paul
Cayla Davis | Technology Strategy and Optimization Manager
Halifax, Nova Scotia, Canada
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.9K Get Help
- 474 Global Discussions
- 207 Use Cases
- 517 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 83 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!