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
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.
-
Excellent! Happy to help!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!