Combined Formulars
I was planning to have this Formular incorporated in our sheets, however I can’t find a way to accomplish this:
The basic Formular is used to set a cell to either "1" or "0":
IF(AND([Contract Date]7 - TODAY() <= 2, NOT(Status7 = "N/A"), NOT(Status7 = "Not Scheduled"), NOT(Status7 = "Completed")), 1, 0)
But,
Since “Contract Date” is blank until the date has been established, it will set the cell to "1" when no date is entered.
We don't want that!
Is it possible to bypass the execution until a date has been entered?
Sample:
IF [Contract Date]7 is not blank
Then Execute this
IF(AND([Contract Date]7 - TODAY() <= 2, NOT(Status7 = "N/A"), NOT(Status7 = "Not Scheduled"), NOT(Status7 = "Completed")), 1, 0)
Else
Bypass.
Best Answer
-
Try this: =IF(ISBLANK([Contract Date]@row), "", IF(AND([Contract Date]@row - TODAY() <= 2, NOT(Status@row = "N/A"), NOT(Status@row = "Not Scheduled"), NOT(Status@row = "Completed")), 1, 0))
Answers
-
Try this: =IF(ISBLANK([Contract Date]@row), "", IF(AND([Contract Date]@row - TODAY() <= 2, NOT(Status@row = "N/A"), NOT(Status@row = "Not Scheduled"), NOT(Status@row = "Completed")), 1, 0))
-
Newer seen that Function before - well there are probably more I don't know about.
It works!
Thank you for helping out
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 422 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!