Nested IF Help
Hello,
I have these columns:
In a perfect world, when the status changes to RESOLVED, the date resolved would automatically populate. Since I can't do that without the use of something like Zapier, I'm trying to define a workaround using an additional column "Days to Resolve".
Some issues have been resolved, but a resolution date was never entered by the user.
So I I'd like to do is have a formula in the "Days to Resolve" column that says,
If there is a date in the "Date Resolved" column then NETWORKDAYS between the "Legacy Entry Date" and the "Date Resolved"
If there is no date in the "Date Resolved" column then "--"
I thought this could be done with a nested IF statement but I've been pulling my hair out since last night. :)
Thanks,
Donna
Best Answer
-
Donna,
I think the formulas below address the expectations laid out above - let me know if this fits the bill (the underlying issue might be with your placement of parenthesis on ISDATE):
STATUS
=IF(ISDATE([Date Resolved]@row), "Resolved", "Not Resolved")
DAYS IN PROGRESS
=IF(ISDATE([Date Resolved]@row), "--", NETWORKDAYS([Legacy Entry Date]@row, TODAY()))
DAYS TO RESOLVE
=IF(ISDATE([Date Resolved]@row), NETWORKDAYS([Legacy Entry Date]@row, [Date Resolved]@row), "--")
Answers
-
Donna,
I think the formulas below address the expectations laid out above - let me know if this fits the bill (the underlying issue might be with your placement of parenthesis on ISDATE):
STATUS
=IF(ISDATE([Date Resolved]@row), "Resolved", "Not Resolved")
DAYS IN PROGRESS
=IF(ISDATE([Date Resolved]@row), "--", NETWORKDAYS([Legacy Entry Date]@row, TODAY()))
DAYS TO RESOLVE
=IF(ISDATE([Date Resolved]@row), NETWORKDAYS([Legacy Entry Date]@row, [Date Resolved]@row), "--")
-
Yes! Thank you so much for your help
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.5K Get Help
- 434 Global Discussions
- 152 Industry Talk
- 494 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 506 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 307 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!