Formula to reference one column based on entries from another column.
I need help on a formula for Project Assignment when a dollar amount is what determines who gets a Project assignment.
For example,
A Facilities coordinator will get a project if it falls between $5k - $24,999
Project Manager A will get a project if it falls between $25k and $99,999
Project Manager B will get a project if it falls between $100k and over
My attempt at creating the formula is below
=IF([Estimated Budget]@row = "Estimated Budget is between 5000 and 24999", "blue", IF(Estimated Budget@row = "Estimated Budget is between 25000 and 100000", "green", IF(Estimated Budget@row = "Estimated Budget is greater than 100000", "Pink")))
Best Answers
-
Try this:
=IF([Estimated Budget]@row >100000, "Pink", IF([Estimated Budget]@row >24999, "Green", IF([Estimated Budget]@row > 4999, "Blue", "Nobody, really?")))
-
It worked, thank you so much !
Answers
-
Try this:
=IF([Estimated Budget]@row >100000, "Pink", IF([Estimated Budget]@row >24999, "Green", IF([Estimated Budget]@row > 4999, "Blue", "Nobody, really?")))
-
It worked, thank you so much !
-
Glad I could help!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.5K Get Help
- 402 Global Discussions
- 213 Industry Talk
- 450 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 135 Just for fun
- 56 Community Job Board
- 454 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!