IF OR Formula with ISBLANK
Hi
I'm after a formula that will check if [Date Modified] is more than 30 days from TODAY and / or if the [Current Position] is blank enter boolean to check the box in [Update Required]. This is the formula I have but, it doesn't like it.
What am I doing wrong? Nested formulas are not my strong point!
TIA
Cheryl
Best Answer
-
Hi Cheryl,
It looks like your OR statement is in the wrong place. Try this instead:
IF(OR(ISBLANK([Current Position]@row), [Date Modified]@row>=TODAY(30)), true, false))
Try that out and let me know if that worked. I may have missed a parenthesis or something. But you need to move your OR up to where it's outside both of your testing conditions.
Answers
-
Hi Cheryl,
It looks like your OR statement is in the wrong place. Try this instead:
IF(OR(ISBLANK([Current Position]@row), [Date Modified]@row>=TODAY(30)), true, false))
Try that out and let me know if that worked. I may have missed a parenthesis or something. But you need to move your OR up to where it's outside both of your testing conditions.
-
Hi @cody
There was just an extra closed bracket on the end that needed to come off and it has worked great. Thank you so much 😊
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.8K Get Help
- 376 Global Discussions
- 207 Industry Talk
- 440 Announcements
- 4.5K Ideas & Feature Requests
- 139 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 284 Events
- 33 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!