I need to indicate when a task is complete, in progress, and overdue based on two criteria
This is the formula that I have currently but it is returning the error "#UNPARSEABLE";
Basically I need to indicate when a task is complete (Green), in progress (Yellow), and overdue (Red) based on two criteria, if a date is reached and the box is checked (Green), if a date is reached and box is unchecked (Yellow), If a date is in the past and box is unchecked (Red).
=IF(AND([Eval Date Scheduled]@row = TODAY(), [Employee Eval Status]@row = 1, "true", "false"), "Green"), IF(AND([Eval Date Scheduled]@row = TODAY(), [Employee Eval Status]@row = 0, "true", "false"), "Yellow"), IF(AND([Eval Date Scheduled]@row > TODAY(), [Employee Eval Status]@row = 0, "true", "false"), "Red"))
Answers
-
Try this instead:
=IF([Eval Date Scheduled]@row = TODAY(), IF([Employee Eval Status]@row = 1, "Green", "Yellow"), IF([Employee Eval Status]@row <> 1, "Red"))
-
Will that work for both criteria though? Because I need both criteria listed above to be taken into account.
-
Yes. Give it a try though just to be sure.
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
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!