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
- 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
Check out the Formula Handbook template!