Combining IF and ISBLANK
Hello,
I have these two formulas working separately on a four-color symbols column, but I cannot combine the two of them without getting error messages.
=IF(ISBLANK([M1 Completed Date]@row), "Gray")
=IF([Milestone Due Date 1]@row >= [M1 Completed Date]@row + 9, "Green", IF([Milestone Due Date 1]@row <= [M1 Completed Date]@row + 4, "Red", "Yellow"))
Could someone please help me put them together?
Thank you,
Ashley
Best Answer
-
Try
=IF(ISBLANK([M1 Completed Date]@row), "Gray", IF([Milestone Due Date 1]@row >= [M1 Completed Date]@row + 9, "Green", IF([Milestone Due Date 1]@row <= [M1 Completed Date]@row + 4, "Red", "Yellow")))
Gray is checked first, if M1 Completed is not blank then your G R Y formula is evaluated.
Answers
-
Try
=IF(ISBLANK([M1 Completed Date]@row), "Gray", IF([Milestone Due Date 1]@row >= [M1 Completed Date]@row + 9, "Green", IF([Milestone Due Date 1]@row <= [M1 Completed Date]@row + 4, "Red", "Yellow")))
Gray is checked first, if M1 Completed is not blank then your G R Y formula is evaluated.
-
Thanks @KPH, that seems to have done it. I really appreciate it.
Ashley
-
Happy to help!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.8K Get Help
- 406 Global Discussions
- 219 Industry Talk
- 457 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 297 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!