Stop counting blank cells
Hello,
I want to display whether a project is active or not based on 1) it started in the past and 2) status is anything BUT complete. The issue is that Smartsheet is counting the blank cells and returning a value of yes, it is active. However, I want to have a blank cell return the status of No. I have my formula below, but it's not accounting for blank cells.
=IF(AND([Target Start Date]@row < TODAY(), NOT(Status@row = "Complete")), "Yes", "No")
I would appreciate any advice or help! Thank you in advance!
The status I have are:
Best Answer
-
Try
=IF(ISBLANK(Status@row), "No", IF(AND([Target Start Date]@row < TODAY(), NOT(Status@row = "Complete")), "Yes", "No"))
Answers
-
Try
=IF(ISBLANK(Status@row), "No", IF(AND([Target Start Date]@row < TODAY(), NOT(Status@row = "Complete")), "Yes", "No"))
-
Thank you Paul! That worked.
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives