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
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!