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
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!