SUMIFS one of two names found
If Team One OR Team Two are found in the 'Team' column, add up the values found in 'Story Points' column.
This formula gives me an error:
=IFERROR(SUMIFS([Story Points]:[Story Points], OR(Team:Team = "Team One", Team:Team = "Team Two"), [RezW#]:[RezW#], [Week#]@row), "nope")
The formula below works fine for a single team name, so is the OR function wrong?
=IFERROR(SUMIFS([Story Points]:[Story Points], Team:Team, "Team One", [RezW#]:[RezW#], [Week#]@row), "nope")
Best Answer
-
Hi @fred sodergren ,
Try:
=IFERROR(SUMIFS([Story Points]:[Story Points], Team:Team, OR(@cell = "Team One",@cell= "Team Two"), [RezW#]:[RezW#], [Week#]@row), "nope")
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
Answers
-
Hi @fred sodergren ,
Try:
=IFERROR(SUMIFS([Story Points]:[Story Points], Team:Team, OR(@cell = "Team One",@cell= "Team Two"), [RezW#]:[RezW#], [Week#]@row), "nope")
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
-
Awesome, thanks for the help with the syntax!
-
Happy to help. Thanks for contributing to the Community.
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!