I'm trying to create a formula for the ball to automatically update based on a "Status" column and a "Modified Date" column. Here's what I have so far...part of it appears to be working, but I'm having difficulty with the Red and Yellow/Green part of the function. Can someone please help?
=IF(Status@row = "Executed", "Blue", IF(Status@row = "Canceled", "Blue", IF(AND(Status@row = "Waiting for Requestor Response", (([Modified Date]@row) < TODAY(-60))), "Red", IF(AND(Status@row = "WD Legal Review", (([Modified Date]@row) < TODAY(-60))), "Red", IF(AND(Status@row = "Customer Legal Review", (([Modified Date]@row) < TODAY(-60))), "Red", IF(AND(Status@row = "Sent for Signatures", (([Modified Date]@row) < TODAY(-60))), "Red", IF(AND(Status@row = "Waiting for Requestor Response", (([Modified Date]@row) < TODAY(-30))), "Yellow", "Green", IF(AND(Status@row = "WD Legal Review", (([Modified Date]@row) < TODAY(-30))), "Yellow", "Green", IF(AND(Status@row = "Customer Legal Review", (([Modified Date]@row) < TODAY(-30))), "Yellow", "Green", IF(AND(Status@row = "Sent for Signatures", (([Modified Date]@row) < TODAY(-30))), "Yellow", "Green"
Thank you!