I have been working on this for two days and I finally decided to ask for help. I am trying to achieve the following:
If Dev Progress is marked as "complete" then "Blue"
If Dev Progress is marked as "In progress" and Today is between Start date and End date then "Green"
If Dev Progress is marked as "not started" and Today is greater than the start date but less than the end date, mark as yellow
If Dev Progress is marked as "delayed" then "Red"
If Dev Progress is marked "not started" and/or the end date is greater than Today mark as "Red"
If Dev progress is marked as "in Progress" and Today is greater than the end date mark as "Red"
If Dev is marked as "Not Applicable" then show "N/A"
Below is what I have tried so far and it's already not working. I haven't added all the parts of the formula.
=IF([Dev Progress]3 = "Completed", "Blue", IF([Dev Progress]3 = "In Progress", [Dev Start Date]3 < TODAY(), [Dev End Date]3 > TODAY()), "Yellow", IF(OR(AND([Dev Progress]3 = "Not Started"), AND([Dev Start Date]3 < TODAY(), OR(AND([Dev Progress]3 = "In Progress", [Dev End Date]3 < TODAY())))), "Red"))
I tried using the above and modifying it by clicking the cell(@row)
Thank you!