IF/AND Formula help please

I am trying to create a formula that says if all 4 cells are blank it returns the text "NOT YET ALLOCATED". If the allocated start date has been completed, but the other 3 cells are blank, the text returns "MISSED", otherwise the cell should remain blank.
I have entered the following formula, but am getting the error #UNPARSEABLE.
=IF(AND(ISBLANK([Allocated Start Date]@row), ISBLANK([Completed By]@row), ISBLANK(Status@row), ISBLANK([Completed Date]@row), ISBLANK([Allocated Start Date]@row) "NOT YET ALLOCATED"), IF(AND(ISBLANK([Completed By]@row), ISBLANK(Status@row), ISBLANK([Completed Date]@row), TODAY() > [Allocated start Date plus 3 days]@row, "MISSED")), " ")
Answers
-
You are close. You need to close your AND Statement, to get to your TRUE argument. Try the edit below...
=IF(AND(ISBLANK([Allocated Start Date]@row), ISBLANK([Completed By]@row), ISBLANK(Status@row), ISBLANK([Completed Date]@row), ISBLANK([Allocated Start Date]@row)),"NOT YET ALLOCATED", IF(AND(ISBLANK([Completed By]@row), ISBLANK(Status@row), ISBLANK([Completed Date]@row), TODAY() > [Allocated start Date plus 3 days]@row), "MISSED", " "))
-
Amazing!! thank you so much!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.9K Get Help
- 474 Global Discussions
- 208 Use Cases
- 517 Announcements
- 5.6K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 84 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!