I use the below formula to return a status (Upcoming, In progress, Complete, Behind) based on % complete and due date:
=IF([% Complete]@row = 0, IF([Start Date]@row < TODAY(), "Behind", "Upcoming"), IF([% Complete]@row = 1, "Complete", IF([End Date]@row < TODAY(), "Behind", "In Progress")))
I would like add another condition (together with the above conditions): return "Requires review" when % complete is 70% and due date is not passed.
Thanks!