I am trying to sum a set of columns if one condition does not exist.
I have tried a couple of formulas with no luck. If the first three criteria have "Fail" then the overall score should be Fail; however if not then I want to add the scores of the other columns together. Here's what I've tried so far. and I get #INCORRECT ARGUMENT for the if statement and #UNPASEABLE for the sum statement.
=SUMIFS([AF-S1]@row, "Fail", , [AF-S2]@row, "Fail", , [AF-S3]@row, "Fail", , [Total Call Opening Score]@row + [Total Communication Score]@row + [Total Ownership Score]@row + [Total Closure Score]@row = [Total Customer Centricity Score]@row)
=IF(OR([AF-S1]@row, [AF-S2]@row, [AF-S3]@row, "Fail", SUM([Total Call Opening Score]@row, [Total Communication Score]@row, [Total Ownership Score]@row, [Total Closure Score]@row, [Total Customer Centricity Score]@row)))
Best Answer
-
Hi Paul, thanks for taking the time to help! Here is a screenshot.
Answers
-
Are you able to provide screenshots for reference?
-
Hi Paul, thanks for taking the time to help! Here is a screenshot.
-
Try this:
=IF(OR([AF-S1]@row = "Fail", [AF-S2]@row = "Fail", [AF-S3]@row = "Fail"), "Fail", SUM([1st Score Column]@row, [2nd Score Column]@row, [3rd Score Column]@row))
-
Thank you that worked!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!