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
- 63.5K Get Help
- 402 Global Discussions
- 213 Industry Talk
- 450 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 135 Just for fun
- 56 Community Job Board
- 454 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!