Want to keep the cell blank if reference values are blank

Hi, I have this formula below, it works well, though when the reference cells are blank I want it to return blank. But, instead it returns "red" symbol if blank reference and "Yellow" if wording is mentioned other than a check mark.
=IFERROR(IF(Done@row = 1, "Green", IF([Due date calculator]@row <= -1, "Red", IF([Due date calculator]@row <= 3, "Yellow", "Blue"))), "")
Answers
-
It appears that the calculations might be including blank/s as part of the numerical calculations. Consider adding an explicit clause at the beginning of the formula, instead of ISERROR? Something along these lines:
=IF(ISBLANK([Due date calculator]@row),"",IF(Done@row=1โฆโฆโฆ..
Good luck!
If this answer resolves your question, please help the Community by marking it as an accepted answer. I'd also be grateful for your response - "Insightful"or "Awesome" reactions are much appreciated. Thanks!
Help Article Resources
Categories
Check out the Formula Handbook template!