Help with ISBLANK & ISDATE syntax
I made a checkbox helper column. I want the box checked if an "install date" is a date and is between 14-21 days, AND "Submitted For Order" column is blank.
Here is the formula i have
=IF(ISDATE([Install Date]@row), IF([Install Date]@row < TODAY(+21), IF([Install Date]@row > TODAY(+14), IF(ISBLANK([Submitted For Order]@row, 1, 0))))),
I tested the formula. When an "install date" fits the criteria it gives me an "incorrect argument" response.
Thanks for your help!
I included a couple screenshots
Best Answer
-
Try something like this...
=IF(AND([Submitted For Order]@row = "", [Install Date]@row >= TODAY(14), [Install Date]@row <= TODAY(21)), 1)
Answers
-
Try something like this...
=IF(AND([Submitted For Order]@row = "", [Install Date]@row >= TODAY(14), [Install Date]@row <= TODAY(21)), 1)
-
I worked. so If/and is the better option for what im trying to do? thanks so much!
SGF
-
I believe so. Instead of running a series of true/false checks, just run one true/false on all criteria at the same time.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.9K Get Help
- 441 Global Discussions
- 153 Industry Talk
- 501 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 79 Community Job Board
- 511 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!