Multiple Nested If Statements with Numbers
I'm trying to build a scoring system based on the number of times a new submission came in for different sites at my company. I have a form set up to feed into a sheet then have a background sheet with a countifs formula to get the number submitted each quarter. From there, I need to change this raw number into a score based on the number of submissions each site has but I keep getting "Unparseable" as a result. Is there something wrong with my formula below?
0 Submissions, 0 points
1 Submission, 3 points
2-4 submissions, 5 points
5 submissions, 10 points
=if([BP Approved]1 = 0, 0(if([BP Approved]1 = 1, 3(if([BP Approved]1 = 5, 10, 5)))))
Best Answer
-
Good evening,
Try:
=if([BP Approved]@row= 0, 0, if([BP Approved]@row = 1, 3, if([BP Approved]@row = 5, 10, 5)))
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
Answers
-
Good evening,
Try:
=if([BP Approved]@row= 0, 0, if([BP Approved]@row = 1, 3, if([BP Approved]@row = 5, 10, 5)))
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
- 67.5K Get Help
- 468 Global Discussions
- 156 Industry Talk
- 511 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 156 Just for fun
- 81 Community Job Board
- 520 Show & Tell
- 35 Member Spotlight
- 3 SmartStories
- 307 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!