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
- 64.9K Get Help
- 441 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!