Looking to input a formula so that changing the "start date" of a row will change the "status" in the column next to it.
Tried the following:
=IF(AND([Start Date]@row < [Est. End]@row, [Est. End]@row < [Actual End]@row, [Actual End]@row = ""), "IN PROGRESS", IF(AND([Start Date]@row < [Est. End]@row, [Est. End]@row < [Actual End]@row, <[Actual End]@row), "COMPLETE", "NOT STARTED"))
Formula that I worked on trying to get it to work.
=IF([Start Date]@row < [Est. End]@row, "Started",
IF([Est. End]@row > [Start Date]@row, "In Progress",
IF([Actual End]@row > [Start Date]@row, "Complete", "Not Started")))
Status overall:
Not Started
In Progress
Blocked
Complete
I keep getting #INVALID OPERATION
Thanks