IF(AND Formula + substraction
Hello!
I have the % Burn Rate of my project and the % Complete, I want to subtract and according to the difference in them I want Harvey Balls to display different colors.
If the difference between the % Burn Rate and the % Complete is => 6% I want it to be "Red"
If the difference is From 1% to 5% I want to be "Yellow"
And if the difference is <= 0% I want it to be "Green"
This is my formula:
=IF(AND([Task Name]$8 - [% Complete]$10 = 0.01, [Task Name]$8 - [% Complete]$10 = 0.05, "Yellow", IF([Task Name]$8 - [% Complete]$10 >= 0.06, "Red", "Green")))
[Task Name]8 is my Burn Rate % is cell linked to another sheet.
[% Complete] is the percentage complete of the project that is calculated from smartsheet itself.
The first part of the formula doesn't work and I'm not sure why, please help :(
Best Answer
-
Hi, try this:
=IF(([Task Name]$8 - [% Complete]$10) >= 0.06, "Red", IF([Task Name]$8 - [% Complete]$10 <= 0, "Green", "Yellow"))
Answers
-
Hi, try this:
=IF(([Task Name]$8 - [% Complete]$10) >= 0.06, "Red", IF([Task Name]$8 - [% Complete]$10 <= 0, "Green", "Yellow"))
-
Thank you @Sravya Gupta it worked!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 459 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 138 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!