Calculate working hours between two dates

Pat from Melb.

New Member
Joined
Aug 16, 2002
Messages
4
How do I calculate the number of working hours between two dates
For example day 1 06-August-02 09:00am
day 2 13-August-02 03:15pm
I need to know the working hours between these two dates, based on a working day starting at 8:00am in the morning and finishing at 5:00pm.
Please excuse me I am new at this.
 
What do "sT" and "eT" refer to - are those the start and end times of the working day, e.g. 08:00 and 17:00?

Will you only have start and end times which fall within the working times?
 
Upvote 0

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Sorry, I'll figure out what it was that I was trying to remember. But I follow you. They're just variables. I'll work with it and see how it goes for me.
 
Upvote 0
If your start time/date is in A1 and your end time/date in B1 and both of these fall within working hours then this formula

=24*((NETWORKDAYS(A1,B1,H_D)-1)*(ET-ST)+MOD(B1,1)-MOD(A1,1))

formatted as number

will give you the elapsed working hours between the two, in decimal format, assuming

H_D is a list of holidays
ST is start time of the working day
ET is end time of the working day
 
Upvote 0
What if you do not want to include holidays? H_D would obviously reference a range of cells with holiday dates. Or, is the list generated differently. Please excuse my ignorance, since I have not worked with type of formula before. I have been hunting around in the message board to get familiar with the details of it.

Also, I take it the ST and ET are preferred to be in 24 hour format.
 
Upvote 0
The 3rd argument of the NETWORKDAYS function is optional, if you don't want or need holidays just use

=24*((NETWORKDAYS(A1,B1)-1)*(ET-ST)+MOD(B1,1)-MOD(A1,1))

ET and ST can be in any format you want, as long as they are times, or you can just dispense with the named ranges altogether and put them in the formula, e.g.

=24*((NETWORKDAYS(A1,B1)-1)*("17:00"-"08:00")+MOD(B1,1)-MOD(A1,1))
 
Upvote 0
Thanks Barry,

It seems to be working, except I get a "-9.0" result when the same date is placed in both A1 and B1. I am trying to figure out what is causing it. Please excuse my brain deadness,... I have been away from Excel formulas for while.
 
Upvote 0
Can't figure out the "-9.0"
Project Schedule.XLS
FGHI
2STARTDATEENDDATEDURATION(DY)DURATION(HR)
3
407/14/200514:5607/14/200519:565.0
507/16/200508:0007/16/200508:00-9.0
6
707/22/200500:0007/22/200500:000.0
807/22/200500:0007/26/200500:0018.0
sheet1


P.S. I think my HTMLMaker is broken!

Any ideas?
 
Upvote 0
This formula will only work correctly when your start and end times fall on working days within working hours - because 16th July 2005 was a Saturday it doesn't work correctly in that case.

If you want to have start and end times which fall outside working hours you can do it but you need a different formula....

You can fix HTML maker - read the known issues

http://www.mrexcel.com/board2/viewtopic.php?t=92622#problems
 
Upvote 0
Darn it! I knew it was something easy and right under my nose. I should have know that was the day I flew to Aruba for Vacation,... on a Saturday. No wonder I'm brain dead. I drank too much rum and was exposed to the sun for too long.

Thank you, Barry!
 
Upvote 0
I believe the error of the display of the HTMLMaker code has something to do with the IE 6.0 pop-up blocker installed on my system. I have to comb through the website to find anyone else who has the same problem.

Thanks,
Chris A. Zanowick
 
Upvote 0

Forum statistics

Threads
1,223,884
Messages
6,175,175
Members
452,615
Latest member
bogeys2birdies

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