I have this condition which works well (copied from line 89 of my plan)
=IF([% Complete]89 = 1, "Complete", IF([% Complete]89 = 0, "Not Started", "In Progress"))
I'd like to add two conditions:
1st: if the %complete is 90%, then the cell should change to "Scheduled"
What I thought would work:
=IF([% Complete]85 = 1, "Complete", IF([% Complete]85 = 0, "Not Started", IF([% Complete]85 = 90, "Scheduled", "In Progress"))) isn't working.
2nd: If a - (negative sign) is entered in the %complete field, the status field changes to "Backlog"
Can someone help me with this formula? Much appreciated!