=IF([% Complete]@row = 1, "Complete", IF([% Complete]@row <= 0.99, IF([% Complete]@row >= 0.01, "In Progress", IF(Review@row = 1, "Review")))
This formula works perfectly. Until I add this at the end, "To Do".
If it doesn't fall into one of the categories, I need it to say "To Do".
I've tried multiple things, but it just won't work all together.
This is an expanded Status update. Thank you
% Complete is 1 = Complete
% Complete is 01-.99 & Flag is 0 = In Progress
% Complete is 0 & Flag is 1 = Review
otherwise = To Do
Thank you!