Hi there!
I am trying to assign colors in a column based on the number of days an employee has been in the role:
Red for less than 90 days
Yellow for 90-180 days
Green for 181-365 days
Blue for over 365 days
Here's what I've been trying but I just can't get it to work... I've looked through several posts but I still need help! Thank you for your time and expertise!
=IF([Time]@row <= TODAY(90), "Red", IF(AND([Time]@row > TODAY(90), [Time]@row < TODAY(180), "Yellow")), IF(AND([Time]@row > TODAY(180), [Time]@row < TODAY(365), "Green")), IF([Time]@row >= TODAY(365), "Blue"))