how do I change the default output to blank if neither criteria is true

WinaHath
✭✭✭✭
=IF([Date of Last Invoice]@row < DATE(YEAR(TODAY()) - 2, MONTH(TODAY()), DAY(TODAY())), "Inactive", "Active")
I need to add that if the column is blank to leave it blank instead of defaulting to "Inactive"
Best Answer
-
@WinaHath =IF(ISBLANK([Date of Last Invoice]@row), "", IF([Date of Last Invoice]@row < DATE(YEAR(TODAY()) - 2, MONTH(TODAY()), DAY(TODAY())), "Inactive", "Active"))
Answers
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!