Help with a Formula for Status Change
I want to create a formula that changes the status colors to red, yellow or green. Below are the criteria:
IF Due Date is < Today and progress bar is not "Full", then "Red".
IF Due Date is > Today - 3days, and progress bar is not "Three Quarters", then "Yellow"
All other scenarios = "Green"
Any help or suggestions would be appreciated.
Thank you
Best Answer
-
Try:
=IF(AND([due date]@row<today(), [Progress bar]@row <>"Full"), "Red", IF(AND([due date]@row>today(-3), [Progress bar]@row<>"three quarters"), "yellow", "green")
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
Answers
-
Try:
=IF(AND([due date]@row<today(), [Progress bar]@row <>"Full"), "Red", IF(AND([due date]@row>today(-3), [Progress bar]@row<>"three quarters"), "yellow", "green")
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
-
Thanks, Mark. It worked! Your help and insight was very much appreciated.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!