I am trying to get this calculation to work
=IF(TODAY() < [Start]@row, "not started", IF(AND(TODAY() >= [Start]@row, TODAY() <= [Finish Date]@row, [% Complete]@row < 100), "In progress - on track", IF(AND(TODAY() > [Finish Date]@row, [% Complete]@row < 100), "in progress - delayed", IF(AND(TODAY() > [Finish Date]@row, [% Complete]@row = 100), "complete", IF(AND(TODAY() > [Start]@row, [% Complete]@row = 0), "postponed", [Project Progress]@row)))))
I am trying to Update the [Project Progress] with "In progress - on track" when today is between [Start]and [Finish Date] and [% Complete]is less than 100%, update the [Project Progress] with "in progress - delayed" when today is beyond [Finish Date]and the [% Complete] is less than 100%, update the [Project Progress] with "complete" if today is past [Finish Date] and the [% Complete] is 100%, update [Project Progress] to "not started" if today is before [Start], update [Project Progress] to "postponed" if today is past [Start]and [% Complete]is 0%
Can anyone help me please and thanks. Even the AI option gives me the same calculation