SUMIFS excluding criteria
I am trying to sum the amount awarded to programs that have been won by all clients except Client X, Client Y or Client Z but my formula below is coming up #UNPARSEABLE. What am I doing wrong?
=SUMIFS([Amount Awarded]:[Amount Awarded], [Customer Name]:[Customer Name], <> ”Client
X", <> ”Client Y”, <> “Client Z”, Status:Status, "5_Closed Won")
Best Answer
-
Hi @akarlsson,
You need to include an AND for the criteria or to to have the Customer Name column referenced for each client:
=SUMIFS([Amount Awarded]:[Amount Awarded], [Customer Name]:[Customer Name], AND(@cell <> "Client X", @cell <> "Client Y", @cell <> "Client Z"), Status:Status, "5_Closed Won")
OR
=SUMIFS([Amount Awarded]:[Amount Awarded], [Customer Name]:[Customer Name], <>"Client X", [Customer Name]:[Customer Name], <>"Client Y", [Customer Name]:[Customer Name], <>"Client Z", Status:Status, "5_Closed Won")
Hope this helps, but if you've any problems/questions then just let us know!
Answers
-
Hi @akarlsson,
You need to include an AND for the criteria or to to have the Customer Name column referenced for each client:
=SUMIFS([Amount Awarded]:[Amount Awarded], [Customer Name]:[Customer Name], AND(@cell <> "Client X", @cell <> "Client Y", @cell <> "Client Z"), Status:Status, "5_Closed Won")
OR
=SUMIFS([Amount Awarded]:[Amount Awarded], [Customer Name]:[Customer Name], <>"Client X", [Customer Name]:[Customer Name], <>"Client Y", [Customer Name]:[Customer Name], <>"Client Z", Status:Status, "5_Closed Won")
Hope this helps, but if you've any problems/questions then just let us know!
-
Both work! Thanks, Nick.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.6K Get Help
- 433 Global Discussions
- 136 Industry Talk
- 466 Announcements
- 4.9K Ideas & Feature Requests
- 143 Brandfolder
- 147 Just for fun
- 64 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 298 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!