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
- 67.1K Get Help
- 448 Global Discussions
- 154 Industry Talk
- 503 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 80 Community Job Board
- 512 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!