Workdays due and overdue

Applemoose

New Member
Joined
Feb 14, 2018
Messages
2
Hi,

I am looking to find a way to calculate the remaining workdays between 2 cells/dates and keep them counting when the date has past.

So the following:
A1: Start Date
B1: End date
C1: Either working days left or days overdue

Today is Feb 14th:

A1: 01-02-18
B1: 08-02-18
C1: -4

A1: 10-02-18
B1: 20-02-18
C1: 5

I think this should be a rather simple formula, but I just can't seem to make it work.
I hope someone can help me! :)
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Welcome to the Board!

Take a look at the NETWORKDAYS function, i.e. https://www.techonthenet.com/excel/formulas/networkdays.php

So the formula in C1 would look like:
Code:
=NETWORKDAYS(TODAY(),B1)
By the way, I get -5, not -4 for your first example (days 8,9,12,13,14).
Maybe you are in a different time zone than me!
 
Upvote 0
Thank you!
Both formulas seem to work.

Only difference is that =NETWORKDAYS(TODAY(),B1) gives 1 day extra when there's a negative outcome compared to =NETWORKDAYS(TODAY(),B1)+(TODAY()>B1)

Thank you so much for your help :)
 
Upvote 0

Forum statistics

Threads
1,215,453
Messages
6,124,925
Members
449,195
Latest member
Stevenciu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top