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
- Smartsheet Customer Resources
- 64.3K Get Help
- 423 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 59 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!