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!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.6K Get Help
- 433 Global Discussions
- 136 Industry Talk
- 468 Announcements
- 4.9K Ideas & Feature Requests
- 143 Brandfolder
- 147 Just for fun
- 64 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 298 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!