Need to Upgrade my Task Health Formula!
Hi! I have a very basic formula in place to calculate task health (red or green)
I am currently using:
=IF(AND(Status@row = <>"Complete", [Due Date]@row <= TODAY()), "Red", "Green")
I have two questions here.
1) I need this formula to also include "done" with "complete" IE... If the status is not "complete" OR "done" and the due date is less than today, task health = RED. (I have to use both DONE and COMPLETE, as my tasks that are synced to JIRA have a status of DONE **per JIRA** and all other tasks are marked as COMPLETE across all company projects (so I don't want to try and switch the wording to DONE for those).
2) Can I beef this formula up more? I would love for some tasks to populate YELLOW if the due date is in the next 7 days and the status is not "complete" or "done"
Thanks for your help!! 😀
Best Answer
-
Give this a go...
=IF(OR(Status@row = "Complete", Status@row = "Done"), "Green", IF([Due Date]@row<= TODAY(), "Red", IF([Due Date]@row<= TODAY(7), "Yellow")))
Answers
-
Give this a go...
=IF(OR(Status@row = "Complete", Status@row = "Done"), "Green", IF([Due Date]@row<= TODAY(), "Red", IF([Due Date]@row<= TODAY(7), "Yellow")))
-
Thank you Paul! This worked for me.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 205 Use Cases
- 516 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 82 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!