Stop counting NETDAYS formula based on date in another column
Here are the column names in my sheet that pertain to my question:
[Address By Date] [Days Remaining / Overdue] [Date Resolved]
The column formula is in the [Days Remaining / Overdue] column and I want it to stop counting when a date is entered into the [Date Resolved] column.
The current column formula in the [Days Remaining / Overdue] column is: =IFERROR(NETDAYS([Address By Date]@row, TODAY()), "")
(There may not be a date in the [Address By Date] field and I was returning errors without using IFERROR.)
Would appreciate any help with trying a combo formula that would work! :)
Best Answer
-
Hey @afarabaugh
Try this
=IF(ISDATE([Date Resolved]@row), NETDAYS([Address By Date]@row, [Date Resolved]@row), IFERROR(NETDAYS([Address By Date]@row, TODAY()), ""))
Will this work for you?
Kelly
Answers
-
Hey @afarabaugh
Try this
=IF(ISDATE([Date Resolved]@row), NETDAYS([Address By Date]@row, [Date Resolved]@row), IFERROR(NETDAYS([Address By Date]@row, TODAY()), ""))
Will this work for you?
Kelly
-
Thank you @Kelly Moore - This works. :)
I appreciate you responding!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!