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
- Customer Resources
- 66.7K Get Help
- 438 Global Discussions
- 152 Industry Talk
- 497 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 508 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 307 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!