I have been playing around with the IF formula and thought I finally got the hang of it. However my "overdue" statement is not working and just set's it to "In Progress" when percent complete is not 100% on Todays date. I also want to do an At Risk statement but need to figure out what is wrong with the current formula.
The example I used is
=IF([Percent Complete]@row = 1, "Complete", IF(AND([Percent Complete]@row < 1, [Finish Date]@row < TODAY()), "Delayed", IF(AND([Percent Complete]@row < 0.5, [Finish Date]@row <= TODAY(5)), "At Risk", IF(AND([Percent Complete]@row < 1, [Finish Date]@row > TODAY(7)), "In Progress", ""))))
This is my current formula, I tried it with just TODAY() but that did not work either just sets it to in Progress.
=IF([Percent Complete]@row = 1, "Complete", IF([Percent Complete]@row = 0, "Not Started", IF([Percent Complete]@row > 0.01, "In Progress", IF(AND([Percent Complete]@row < 1, [End Date]@row <= TODAY(1)), "Overdue"))))
and
=IF([Percent Complete]@row = 1, "Green", IF([Percent Complete]@row = 0, "Blue", IF([Percent Complete]@row > 0.01, "Yellow")))
If you can assist, I feel like I am going in circles here