Support for Formula if ISBLANK
Hi All,
I am stuck and need some help. I am unable to figure out how to return a blank if the Due Date is blank or the Status is COmplete. Can anyone help me adjust the formula I am using?
=IF(Status@row = "Complete", "", IF([Due Date]@row < TODAY() + 7, "Due in Next Week", IF([Due Date]@row < TODAY() + 15, "Due in Next 15 Days", IF([Due Date]@row < TODAY() + 30, "Due in Next 30 Days"))))
Best Answer
-
Try:
=IF(OR(Status@rowΒ = "Complete",ISBLANK([Due Date]@row)),"", IF([due date]@row< TODAY() + 7, "Due in Next Week", IF([Due Date]@row < TODAY() + 15, "Due in Next 15 Days", IF([Due Date]@row < TODAY() + 30, "Due in Next 30 Days"))))
Work?
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
Answers
-
Try this
=IF(OR(Status@rowΒ = "Complete", Status@row=""), "", IF([Due Date]@row < TODAY() + 7, "Due in Next Week", IF([Due Date]@row < TODAY() + 15, "Due in Next 15 Days", IF([Due Date]@row < TODAY() + 30, "Due in Next 30 Days"))))
-
Try:
=IF(OR(Status@rowΒ = "Complete",ISBLANK([Due Date]@row)),"", IF([due date]@row< TODAY() + 7, "Due in Next Week", IF([Due Date]@row < TODAY() + 15, "Due in Next 15 Days", IF([Due Date]@row < TODAY() + 30, "Due in Next 30 Days"))))
Work?
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
-
Thank you both so much for your quick help!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 205 Use Cases
- 517 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 83 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!