Formula Consolidation
This was originally a checkbox column to see if an estimated was within a 10% margin on either side, but now I need it to account for if it is under/over the 10%.
Currently, three checkbox columns exist, with the following formulas:
EST GOOD -
=IF(AND([HR PER UNIT / EST]@row > [10% DOWN]@row, [HR PER UNIT / EST]@row < [10% UP]@row), 1, 0)
EST LOW -
=IF([HR PER UNIT / EST]@row < [10% DOWN]@row, 1, 0)
EST HIGH -
=IF([HR PER UNIT / EST]@row > [10% UP]@row, 1, 0)
I want to consolidate this into a single dropdown column using the RED/YELLOW/GREEN symbols, but I keep messing up my syntax. Hoping someone can help!
Thanks in advance. :)
Tags:
Best Answer
-
Does this work?
=IF([HR PER UNIT / EST]@row > [10% UP]@row, 1, IF([HR PER UNIT / EST]@row < [10% DOWN]@row, 1,IF(AND([HR PER UNIT / EST]@row > [10% DOWN]@row, [HR PER UNIT / EST]@row < [10% UP]@row), 1, 0)))
Answers
-
Does this work?
=IF([HR PER UNIT / EST]@row > [10% UP]@row, 1, IF([HR PER UNIT / EST]@row < [10% DOWN]@row, 1,IF(AND([HR PER UNIT / EST]@row > [10% DOWN]@row, [HR PER UNIT / EST]@row < [10% UP]@row), 1, 0)))
-
I'm using this for a drop down with symbols but you helped me figure out where my syntax was wrong. Thank you!
-
Perfect
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.3K Get Help
- 445 Global Discussions
- 144 Industry Talk
- 477 Announcements
- 5K Ideas & Feature Requests
- 85 Brandfolder
- 151 Just for fun
- 72 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 302 Events
- 36 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!