Excel timesheet's - working out overtime.

nome_

New Member
Joined
Aug 17, 2011
Messages
1
I don't know if this is possible, but I do only have very basic Excel knowledge (using Excel Mac 2011 - learnt how to use it when I was 11 - 12 years ago - on a PC!).

We have just changed the pay system at work and over-time will now be paid on any hours worked outside of 9am-5pm (instead of anything over 8hrs) is there a way that i can use excel to work this out?
Ideally by only have the employees enter the hours they worked - in two columns (start time and finish time) then have this broken down in a table underneath in totals for the week.

Please let me know if this is possible, any help would be appreciated.

Thanks.
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Here's something to start you out with: The 'trick' to working with time in excel is to remember that everything is stored as the numbers of days, so 12 hours = .5 That's why you see the 24 throughout the formulas.

The summarys would just be done with sum's, vlookup's and/or sumif's: it all depends on how you structure your workbook and whatever rules didn't get into your post (for example, someone taking 3 hours off in the middle of the day).



Excel Workbook
ABCDE
1startfinishTotal HoursHours Overtimehours Regular time
28:00 AM5:00 PM9.001.008.00
37:00 AM3:00 PM8.002.006.00
410:00 AM3:00 PM5.000.005.00
510:00 AM7:00 PM9.002.007.00
66:00 AM7:00 PM13.005.008.00
Sheet4

Excel 2007
Cell Formulas
RangeFormula
C2=24*(B2-A2)
D2=24*(MAX((9/24)-A2,0)+MAX(B2-(17/24),0))
E2=C2-D2
 
Upvote 0

Forum statistics

Threads
1,224,574
Messages
6,179,626
Members
452,933
Latest member
patv

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