Date Calculation

jedilefty

Board Regular
Joined
Nov 14, 2017
Messages
52
Office Version
  1. 365
Platform
  1. Windows
Hello! How can I calculate the number of working days between two dates, and the start date would count as 0? If something started on 12/2/24 and completed on 12/5/24 result should be 3 days, not 4.

Currently using the formula:

=NETWORKDAYS(start_date,completion_date)-SIGN(NETWORKDAYS(start_date,completion_date,))
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
=NETWORKDAYS(start_date,completion_date)-1


That is funny that NETWORKDAYS calcs the first day as part of the equation. Official Description:
Returns the number of whole working days between start_date and end_date.
 
Upvote 0
=NETWORKDAYS(start_date,completion_date)-1


That is funny that NETWORKDAYS calcs the first day as part of the equation. Official Description:
Returns the number of whole working days between start_date and end_date.
Thank you for the reply Jeffrey. However, I found out what the problem was. I also had holidays excluded and I referenced the wrong cells with those holiday. 😵‍💫
 
Upvote 0
Solution

Forum statistics

Threads
1,225,451
Messages
6,185,050
Members
453,276
Latest member
devilsbarrister

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