I need a formula for counting days until Due date
I feel like this is a simple formula that I am over thinking.
I have a sheet with one due date column. I want a formula to go in a second column that tells me how many days from "TODAY" is the due date.
Best Answers
-
Give this a try:
=IF(ISDATE([Due Date]@row), NETDAYS(TODAY(), [Due Date]@row), "")
-
I would suggest this:
=IFERROR(NETWORKDAYS(TODAY(), [Due Date]@row), "")
-
NETDAYS will give you the number of days until the due date. NETWORKDAYS will give you how many working days until the due date. It all comes down to your implementation and what you would like the result to be.
Answers
-
Give this a try:
=IF(ISDATE([Due Date]@row), NETDAYS(TODAY(), [Due Date]@row), "")
-
I would suggest this:
=IFERROR(NETWORKDAYS(TODAY(), [Due Date]@row), "")
-
Thank you both. I used: =NETDAYS(TODAY(), [Due Date]@row) and it's working so far. Did I miss something?
-
NETDAYS will give you the number of days until the due date. NETWORKDAYS will give you how many working days until the due date. It all comes down to your implementation and what you would like the result to be.
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