Boolean Blank if cell is blank?
I am trying to create a boolean formula in which if the cell is blank the formula does not apply.... below is the formula I currently have
=IF([Av3000 Due Date]@row <= TODAY(), "Red", IF([Sure Seal Due Date]@row <= TODAY(), "Red", IF([Half Face Due Date]@row <= TODAY(), "Red", IF([Weld O Vista Due Date]@row <= TODAY(), "Red", IF([Av3000 Due Date]@row <= TODAY(+30), "Yellow", IF([Sure Seal Due Date]@row <= TODAY(+30), "Yellow", IF([Half Face Due Date]@row <= TODAY(+30), "Yellow", IF([Weld O Vista Due Date]@row <= TODAY(+30), "Yellow", "Green"))))))))
The issue I'm having though with the above formula is that if there is nothing in the cell its turning my Boolean red.... Please Help!!!
Answers
-
=IF(ISBLANK([Av3000 Due Date]@row), "Green", IF(ISBLANK([Sure Seal Due Date]@row), "Green", IF(ISBLANK([Half Face Due Date]@row), "Green", IF(ISBLANK([Weld O Vista Due Date]@row), "Green", IF([Av3000 Due Date]@row <= TODAY(), "Red", IF([Sure Seal Due Date]@row <= TODAY(), "Red", IF([Half Face Due Date]@row <= TODAY(), "Red", IF([Weld O Vista Due Date]@row <= TODAY(), "Red", IF([Av3000 Due Date]@row <= TODAY(+30), "Yellow", IF([Sure Seal Due Date]@row <= TODAY(+30), "Yellow", IF([Half Face Due Date]@row <= TODAY(+30), "Yellow", IF([Weld O Vista Due Date]@row <= TODAY(+30), "Yellow", "Green"))))))))))))
IT was all in the ISBLANK function!! I figured it out!!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.4K Get Help
- 424 Global Discussions
- 221 Industry Talk
- 464 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 144 Just for fun
- 60 Community Job Board
- 463 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 301 Events
- 40 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!