Multiple IF arguments
I am trying to create a formula with a series of IF statements so that if the Gov Priority is High, it returns 30 in the Gov Priority Score cell, if it is Fixed it returns 50 in the Gov Priority Score cell, and so on. I cannot get the formula to work. Any suggestions?
This is the formula I was attempting to use:
=IF([Gov Priority]@row = Fixed,"50", IF([Gov Priority]@row = High,"30", IF([Gov Priority]@row = Medium,"20", IF([Gov Priority]@row= Low,"10", ))))
Answers
-
Hi @Mindy Schlegel ,
Try this:
=IF([Gov Priority]@row = "Fixed",50, IF([Gov Priority]@row = "High",30, IF([Gov Priority]@row ="Medium",20, IF([Gov Priority]@row= "Low",10,""))))
Let me know if it works!
Best,
Heather
-
Hi Heather,
Super close! Here is the formula that worked for me:
=IF([Gov Priority]@row = "High", 30, IF([Gov Priority]@row = "Medium", 20, IF([Gov Priority]@row = "Low", 10, IF([Gov Priority]@row = "Fixed", 100))))
Thanks for your help!!
Mindy
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 437 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!