Need to calculate hours worked from normal shift until 10 hour for overtime calculation

tanyaslater

New Member
Joined
Oct 13, 2015
Messages
8
Hi there

I'm struggling to find the right formula for the Additional Hours Worked column J in this spreadsheet. I need the formula to calculate overtime adn the different number of hours between the end of a standard shift Column C and 10 hours which will then allow columns K & L to calculate the 1.5 x time and double time rates accordingly.

I urgently need to get this resolved so ANY help whatsoever would be much appreciated.

Many thanks

Standard Shift HrsStart TimeNormal Shift EndFinish TimeTotal HoursDecimal HoursTotal Extra Hours Worked Additional Hours (Normal Shift to 10 hours 1.5 time (10 hrs to 12 hrs)2 x time (12 hrs onwards) Shift Rate Hourly Rate 1.5 x Rate 2 x Rate Additional Hours $$ 1.5 x $$ 2 x $$ Total Overtime
Jane Bloggs816:300:304:0011:3011.503.503.501.50-0.50 $200.00 $25.00 $37.50 $50.00 $87.50 $56.25-$25.00 $118.75
Joe Bloggs616:3022:301:158:458.752.752.75-1.25-3.25 $75.00 $12.50 $18.75 $25.00 $34.38-$23.44-$81.25-$70.31

<colgroup><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col><col span="2"><col span="2"><col></colgroup><tbody>
</tbody>
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
So it appears that hours between 8-10 are at the Hourly rate. Thus your additional hours at standard rate should be 2.
Enter this in Column "J"

Code:
=IF(H2>10,2,"")

But your example shows "Additional Hours" of 3.5. For Joe; should it be .75?

Code:
=IF(H2>8,H2-8,"")
 
Upvote 0

Forum statistics

Threads
1,215,758
Messages
6,126,709
Members
449,331
Latest member
smckenzie2016

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