How to automate RYGB balls based on due date and completion
I am trying to automate the "Status" column to display the following based on the "Original Action Due Date" column:
Coming due in greater than 60 days - Green
Coming due in 60 days - Yellow
Past due - Red
I am also trying to automate the "Status" column to return a blue color when the "Date Closed" column is populated with a date.
I appreciate any help!
Answers
-
You could use something like this changing the color scheme
the cells in the "Duration" column has this formula =NETDAYS($StartDate2, TODAY()
=IF(Duration19 <= 10, "Green", IF(Duration19 <= 15, "Yellow", IF(Duration19 <= 19, "Blue", IF(Duration19 >= 20, "Red"))))
🥄Bill Brendle
Remember the truth "There is no spoon"
-
Can you help me modify this formula to less than 60 days? What part of the formula would I modify for less days. Thank you.
-
@Sara Downing I would suggest using something like this to remove the need for the additional column:
=IF([Original Action Due Date]@row > TODAY(60), "Green", IF([Original Action Due Date]@row >= TODAY(), "Yellow", "Red"))
@Scott Nuss Does the above help, or do you need something different?
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 141 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!