Help with formulas to drive Harvey Ball Status
Hello!
I am trying to automate the Harvey Ball (R, A, G, Gray) status indicator on my project plan sheet. I am very new to formulas and am not sure what I am doing wrong.
Below is a screenshot of the implicated Columns:
The values in Status are: Not Started, In Progress, Complete. Harvey Balls are in Health: Green, Yellow, Red, Gray.
This is what I would like to design:
Green is Complete (regardless of End Date value)
Yellow is In Progress AND Today is less than or equal to to End Date
Red is In Progress or Not Started AND Today is greater than or equal to End Date
Gray is Not Started and Today is less than or equal to End Date
This is the formula I have been using in Health:
=IF(Status@row = "Complete", "Green", IF(AND(Status@row <> "Complete", TODAY() > [End Date]12), "Red", IF(AND(Status@row = "Not Started"), "Gray", "Yellow")))
The formula seems to be wrong because sometimes it display Red if Start and End Dates are both empty, and sometimes it displasy Gray if same. It always displays Red when there are no dates in the Start/End Date columns.
Is my mistake obvious? I really appreciate your time!
Answers
-
Try this one...
=IF(Status@row = "Complete", "Green", IF([End Date]@row >= TODAY(), IF(Status@row = "In Progress", "Yellow", "Gray"), "Red"))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K 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
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!