RYG Formula for Date Started
Hey all. Very new to any type of formula composition. This is likely very basic for some.
We have a "Date Started" column and "Date Completed" Column. Essentially I would like to set up a Red, Yellow, Green Status column tracking each project.
My guidelines would be "Green" if date completed has a date.
"Yellow" If between today and 6 days since "Date Received"
"Red" If greater than or equal to 7 days since "Date Received"
Any insight? Thanks in advance
Answers
-
=IF(ISDATE([Date Completed]@row), "Green", IF(AND([Date Received]@row=TODAY(), [Date Received]@row>=TODAY(-6)), 'Yellow", IF([Date Received]@row<=TODAY(-7),"Red")))
Will this work for you?
Kelly
-
HI Kelly!
This gave me "#UNPARSEABLE"
-
Hey
Sorry for the typo. There is an apostrophe in front of Yellow instead of the quote.
=IF(ISDATE([Date Completed]@row), "Green", IF(AND([Date Received]@row=TODAY(), [Date Received]@row>=TODAY(-6)), "Yellow", IF([Date Received]@row<=TODAY(-7),"Red")))
try now
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 141 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!