Help with writing a formula to show Completed and Past Due along with other status.

Hi there, I am able to get all the status to show correctly, except the 'Complete' and 'Past Due', I know its something simple and I am just not thinking of it, help is appreciated!
I am using a 'End Date' and '% Complete'
Formula used on the 3rd date down
=IF(OR([% Complete]@row = 0, ISBLANK([% Complete]@row)), "Not Started", IF(AND([End Date]@row < TODAY(), [% Complete]@row < 100), "Past Due", IF([% Complete]@row = 100, "Complete")))
Formula used on the 4th date down
=IF(ISBLANK([% Complete]@row), "Not Started", IF([% Complete]@row < 1, "In Progress", IF([% Complete]@row = 1, "Complete", IF(AND([End Date]@row < TODAY(), [% Complete]@row > 100, "Past Due")))))
Best Answer
-
I see another typo. I didn't close the AND agreement. Sorry about that:
=IF([% Complete]@row = 1, "Complete", IF(ISBLANK([% Complete]@row), "Not Started", IF(AND([End Date]@row < TODAY(), [% Complete]@row < 1), "Past Due", IF([% Complete]@row < 1, "In Progress"
Answers
-
Try:
=IF([% Complete]@row = 1, "Complete", IF(ISBLANK([% Complete]@row), "Not Started", IF(AND([End Date]@row < TODAY(), [% Complete]@row , 1, "Past Due", IF([% Complete]@row < 1, "In Progress"
-
Thank you so much for answering! I tried it and getting the below response now
-
Ooops, I left something off when I edited:
=IF([% Complete]@row = 1, "Complete", IF(ISBLANK([% Complete]@row), "Not Started", IF(AND([End Date]@row < TODAY(), [% Complete]@row < 1, "Past Due", IF([% Complete]@row < 1, "In Progress"
-
Is it copying and pasting correctly? I am getting the same response.
-
I see another typo. I didn't close the AND agreement. Sorry about that:
=IF([% Complete]@row = 1, "Complete", IF(ISBLANK([% Complete]@row), "Not Started", IF(AND([End Date]@row < TODAY(), [% Complete]@row < 1), "Past Due", IF([% Complete]@row < 1, "In Progress"
-
PERFECT!! it works, thank you!!
Help Article Resources
Categories
Check out the Formula Handbook template!