Working hrs. computation

PrinceExcel

New Member
Joined
Sep 10, 2018
Messages
31
I am trying to create a report where working hrs. is computed.
Ex.

8/30/2019 4:00 PM - 09/02/2019 9:00 AM

Working hrs. 8 am - 5 pm

I want to have a result of 2 hrs. Since worked it done in 8/30/19 4-5pm and 9/2/19 8-9am only. 8/31/19 & 9/1/19 are weekends. Also I want to exclude hrs in night time (downtime) and holidays/weekends.

Please help.
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Hey,

Try this:

ABCDE
1StartDateEndDateStartDateTimeEndDateTimeWorking Hours
230/08/201902/09/201916:0009:002.00

<tbody>
</tbody>


Where A2:D2 are manually entered, if A2 and B2 contain the time in them as well (e.g. A2 = 30/08/2019 16:00) then use formulas to generate just the time in cells C2 & D2 as such:

C2 (drag across to D2)
=A2-ROUNDDOWN(A2,0)

Once set up, then in E2:
Code:
SUM((NETWORKDAYS(A2,B2)-SUMPRODUCT((WEEKDAY(A2)>1)*(WEEKDAY(A2)<7)+(WEEKDAY(B2)>1)*(WEEKDAY(B2)<7)))*9,IF(AND(WEEKDAY(A2)>1,WEEKDAY(A2)<7),IF(C2<8/24,9,IF(C2>17/24,0,17/24-C2)*24)),IF(AND(WEEKDAY(B2)>1,WEEKDAY(B2)<7),IF(D2<8/24,0,IF(D2>17/24,9,(D2-8/24)*24))))
 
Last edited:
Upvote 0
If you want to account for the holidays then make a list of dates that represent the holidays, give it a named range "holidays" and then try this formula again in E2:

Code:
SUM((NETWORKDAYS(A2,B2,holidays)-SUMPRODUCT((SUMPRODUCT(--(A2=holidays))=0)*(WEEKDAY(A2)>1)*(WEEKDAY(A2)<7)+((SUMPRODUCT(--(B2=holidays))=0)*WEEKDAY(B2)>1)*(WEEKDAY(B2)<7)))*9,IF(AND(WEEKDAY(A2)>1,WEEKDAY(A2)<7,SUMPRODUCT(--(A2=holidays))=0),IF(C2<8/24,9,IF(C2>17/24,0,17/24-C2)*24)),IF(AND(WEEKDAY(B2)>1,WEEKDAY(B2)<7,SUMPRODUCT(--(B2=holidays))=0),IF(D2<8/24,0,IF(D2>17/24,9,(D2-8/24)*24))))

E.g. If you try StartDate as 25/12/2019 and EndDate as 26/12/2019, if these 2 dates are in the holidays named range then the result will be 0, as expected.
 
Upvote 0
What does the formula return for you? What exactly did you try?
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,693
Members
448,979
Latest member
DET4492

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