I have a percentage completion column, status column, and finish date column.
I would like a formula as follows to enter a text value into the status column…
IF percentage = 100 and Finish date = Today then enter "Complete" if true and "In Progress" if not.
If percentage > 100 and Finish date > Today then enter "Not Started" if true and "Incomplete" if not.
This is what I have so far…What am I doing wrong???
=IF(AND(Percentage@row = 1, [Finish Date]@row = TODAY()), "Completed", "In Progress", IF(AND(Percentage@row > 1, [Finish Date]@row < TODAY()), "Incomplete", "Not Started"))