Please help me figure out why this is not working:
=IF([% Complete]@row = 1, "Completed", IF(AND([Start Date]@row <= TODAY(60), [% Complete]@row = 0), "Not Started", IF(AND(NOT(ISBLANK([Start Date]@row )), NOT(ISBLANK([% Complete]@row ))), "In Progress", IF(AND([Start Date]@row >= TODAY(61), [% Complete]@row = 0), "Upcoming", IF(ISBLANK([Start Date]@row ), "Upcoming")))))
The last piece of the formula is not triggering a change to "Upcoming". If a date is greater than 61 days it does change the status to "Upcoming", but if Start Date is blank instead of changing to "Upcoming" it changes to "Not Started" and I am not sure why. Please help!