"IF" formla and Red/Yellow/Green
I am putting together a sheet that will be used as a template. There are 3 columns (Date Assigned and Date Due and Status). Status states Complete, Not Complete, and Not Applicable. There is another column that has the Red/Yellow/Green bubbles that should automatically update (red if late, yellow if within the date range, green if complete).
How would I configure the formula if the Status status "Not Complete" and is outside the date ranger (delinquent) and the bubble turns Red. Green if Complete, and Yellow if within the date range?
I know I've done this but it's been a few months and the formulas have been removed from my other sheets as they were no longer needed.
Best Answer
-
Try something like this...
=IF(Status@row = "Complete", "Green", IF(TODAY()> [Date Due]@row, "Red", IF(TODAY()> [Date Assigned]@row, "Yellow)))
Answers
-
Try something like this...
=IF(Status@row = "Complete", "Green", IF(TODAY()> [Date Due]@row, "Red", IF(TODAY()> [Date Assigned]@row, "Yellow)))
-
Thank you. I knew something like a nested IF function was the way to go.
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.7K 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
Check out the Formula Handbook template!