Formula Help
Hi,
Need help combining these two formulas to calculate the # of days open from the date of entry. Not to include "Solution complete" or "Solution identified and agreed upon".
=IF(NOT(Status@row = "Solution Complete"), (TODAY() - Date@row), "")
=IF(NOT(Status@row = "Solution identified and agreed upon"), (TODAY() - Date@row), "")
Thank you
Tags:
Comments
-
There are a couple of ways you can do this. You can nest them together like so:
=IF(NOT(.................), TODAY() - Date@row, IF(NOT(.................), TODAY() - Date@row, ""))
.
But since they have the same results, you can also use an AND function like this:
=IF(AND(NOT(................), NOT(..............)), TODAY() - Date@row, "")
-
Thank you
, the last combined formula worked.
-
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!