If Cell A is NOT blank AND Cell B is Not blank
I'm having trouble with my syntax I believe. I need to determine if Cell A AND Cell B are NOT BLANK then execute a function otherwise leave Cell C blank.
The below is what I thought would work, however, I'm getting 'unpaseable'
=IF(AND(NOT(ISBLANK([Case Product Removed]@row)), (NOT(ISBLANK([Case Product Re-Stocked]@row)), [Construction Start]@row - 14)
What am I doing wrong?
Best Answer
-
@PeggyLang Looks like you had some characters incorrect in your formula. Your second NOT statement should not have the Open Parentheses, and your AND statement should close before the True statement of your IF expression. See the adjusted formula below.
=IF(AND(NOT(ISBLANK([Case Product Removed]@row)), NOT(ISBLANK([Case Product Re-Stocked]@row))), [Construction Start]@row - 14)
Answers
-
@PeggyLang Looks like you had some characters incorrect in your formula. Your second NOT statement should not have the Open Parentheses, and your AND statement should close before the True statement of your IF expression. See the adjusted formula below.
=IF(AND(NOT(ISBLANK([Case Product Removed]@row)), NOT(ISBLANK([Case Product Re-Stocked]@row))), [Construction Start]@row - 14)
-
-
Your Welcome
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63K Get Help
- 379 Global Discussions
- 212 Industry Talk
- 442 Announcements
- 4.6K Ideas & Feature Requests
- 140 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 302 Events
- 33 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!