I am trying to write a If-nested formulas that works out the following.
What i am trying to say with this formula is the following:
IF the status is Complete and the planned end date is today or within five working days = Green
IF the status is In Progress and the planned end date is today or with in three working days = Yellow
IF the status is Not Started and the planned end date is today or with in 10 days after todays date = Red
=If(OR(Status@row = "Complete", [due date]@row =< Today(-5)), "Green", IF(Status@row = "In Progress", [due date]@row < Today(-3)) "Yellow", IF(Status@row = "Not Started", [Planned Finishe] = Today(10)) "Red"
Is there a AND function in here, or is what i am trying to ask not correct.... Please help