I am trying to provide a status on our department response time. We have 30 days to respond to another department for requests, once they are received.
1) I wanted to put a Green, Yellow, and Red status on the request, based on if the open request is:
a. greater than 14 days until the due date, (Green)
b. greater than 7 days until the due date, (Yellow)
c. less than 7 days until the due date, (Red)
2) I also wanted to make sure that if we met the 30-day requirement, the overall status for the request is green or if we were late in the response the overall request status is Red.
3) Here is my Logic:
a. =IF([Actual Response Date]@row = "", IF(TODAY() + 14 < [Response Due Date]@row, "Green", IF(TODAY() + 7 < [Response Due Date]@row, "Yellow", IF([Response Due Date]@row > [Actual Response Date]@row, "Green", "Red"))))
Most of the logic is working but once a valid date if loaded in the Actual Request date the logic does not return a result. Does anyone see what I am missing?