Need to Count Projects by Assignee AND Status
I am having difficulty getting a project count by Person AND has to be one of 3 Statuses. Currently I have this formula to look at project count by a certain person but its pulling in all projects even DONE or Archived. NOTE: The assignee can be more than one person
=COUNTIF(GDC:GDC, FIND("first last", @cell) > 0)
All I want to do is add in another parameter to look at LIVE projects; so projects with a status of "In Progress" or "Meeting Required" OR "On Deck". I simply cannot figure it out.
Best Answer
-
Switching your formula to COUNTIFS allows you to specify multiple criteria ranges, and the OR function lets you specify more than one possible criteria for a range. Try this:
=COUNTIFS(GDC:GDC, FIND("first last", @cell) > 0, Status:Status, OR(@cell = "In Progress", @cell = "Meeting Required", @cell = "On Deck"))
where Status is the name of your status column.
Regards,
Jeff Reisman
Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages
If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!
Answers
-
Switching your formula to COUNTIFS allows you to specify multiple criteria ranges, and the OR function lets you specify more than one possible criteria for a range. Try this:
=COUNTIFS(GDC:GDC, FIND("first last", @cell) > 0, Status:Status, OR(@cell = "In Progress", @cell = "Meeting Required", @cell = "On Deck"))
where Status is the name of your status column.
Regards,
Jeff Reisman
Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages
If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!
-
THANK YOU JEFF! I am new to SmartSheets and have been struggling with these formulas. I appreciate your help!
-
The first one worked when looking at GDC column but when I swap in a different column (here its graphic designers) it says Unparseable. Any Insight?
Example:
=COUNTIFS([Graphic Designers]:[Graphic Designers], FIND("first last", @cell) > 0), Status:Status, OR(@cell = "In Progress", @cell = "Meeting Required", @cell = "On Deck"))
-
Just a pesky extra closing parentheses right here:
=COUNTIFS([Graphic Designers]:[Graphic Designers], FIND("first last", @cell) > 0, Status:Status, OR(@cell = "In Progress", @cell = "Meeting Required", @cell = "On Deck"))
Regards,
Jeff Reisman
Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages
If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!
-
@Jeff Reisman Thanks Jeff, appreciate you helping me out today!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.5K Get Help
- 402 Global Discussions
- 213 Industry Talk
- 450 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 135 Just for fun
- 56 Community Job Board
- 454 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!