Formula ISNOTBLANK with multiple cells

Hi I'm trying to write a formula that says if cell A is not blank and cell B is not blank but cell C is blank say false but I am getting an error. Help?
=IF(ISNOTBLANK([Total number of cases (100) of 10 kits]@row),(ISNOTBLANK([Shipped Date]@row),ISBLANK([Received Date]@row)=false)
Best Answer
-
Try this:
=IF(AND(NOT(ISBLANK([Total number of cases (100) of 10 kits]@row)), NOT(ISBLANK([Shipped Date]@row)), ISBLANK([Received Date]@row)), "false")
Answers
-
There is no "ISNOTBLANK" function in Smartsheet. You have to combine the NOT and ISBLANK function.
NOT(ISBLANK([Column name]@row))
-
Thank you for your help. So I redid it and still getting an error??
=IF(NOT(ISBLANK([Total number of cases (100) of 10 kits]@row)), (NOT(ISBLANK([Shipped Date]@row)), ISBLANK([Received Date]@row)=false)))
-
Try this:
=IF(AND(NOT(ISBLANK([Total number of cases (100) of 10 kits]@row)), NOT(ISBLANK([Shipped Date]@row)), ISBLANK([Received Date]@row)), "false")
-
PERFECT! Is there a way to make it check a box vs return false??
-
Nevermind, I figured it out. THANK YOU SO MUCH!!!!! I really appreciate the help
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 205 Use Cases
- 516 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 82 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!