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
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!