Including NOT(ISBLANK(... In Formula
Hello,
I'm having difficulty including in a IF(OR formula that is looking for a not blank column. This column is intended to be a helper to build a report which incorporates both AND and OR statements. I'm trying to indicate a "green" status if any one of the variables are true, but I'm getting stuck on looking for a column to have any person; just not be blank.
=IF(OR([Org]@row = "HR", [Leader]@row = "PERSON", NOT(ISBLANK([HR Component]@row), "Green", "Gray")))
Best Answer
-
You just have some misplaced parenthesis to close out the NOT and OR functions before moving on to the rest of the IF statement.
=IF(OR([Org]@row = "HR", [Leader]@row = "PERSON", NOT(ISBLANK([HR Component]@row))), "Green", "Gray")
Answers
-
You just have some misplaced parenthesis to close out the NOT and OR functions before moving on to the rest of the IF statement.
=IF(OR([Org]@row = "HR", [Leader]@row = "PERSON", NOT(ISBLANK([HR Component]@row))), "Green", "Gray")
-
@Paul Newcome thanks for the fast reply and the correction worked. Must have tried adding different combinations of the parenthesis but the correct one. Thanks!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.5K Get Help
- 402 Global Discussions
- 213 Industry Talk
- 450 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 135 Just for fun
- 56 Community Job Board
- 454 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!