Time

arnapsui

Board Regular
Joined
Mar 16, 2010
Messages
55
Hi

I have a list of employees and the total time they worked in excel. I need to calculate the Overtime for each. Please note the example below:

EmpName WorkedTime DutyHoursPerDay WorkedDays OT

A 174:00:00 8 27
B 322:50:00 8 27
C 284:30:00 9 27
D 124:45:00 9 27

How can I calculate the OT for each employee?

Note that I have formatted the WorkedTime column as [h]:mm:ss. This is why I get the WorkedTime from our HandPunch Machine.

Anyone can help me?
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Hello

Try.
Excel Workbook
ABCDE
1EmpNameWorkedTimeHoursPerDayWorkedDaysOT
2A174:00:008270
3B322:50:00827106.8333
4C284:30:0092741.5
5D124:45:009270
Sheet1
Excel 2010
Cell Formulas
RangeFormula
E2=IF(B2*24-(C2*D2)<=0,0,B2*24-(C2*D2))
 
Upvote 0
Hi

I have a list of employees and the total time they worked in excel. I need to calculate the Overtime for each. Please note the example below:

EmpName WorkedTime DutyHoursPerDay WorkedDays OT

A 174:00:00 8 27
B 322:50:00 8 27
C 284:30:00 9 27
D 124:45:00 9 27

How can I calculate the OT for each employee?

Note that I have formatted the WorkedTime column as [h]:mm:ss. This is why I get the WorkedTime from our HandPunch Machine.

Anyone can help me?
Here's another one...

Book1
ABCDE
1NameTotal TimeHrs/DayDaysOT
2A174:00:008270:00
3B322:50:00827106:50
4C284:30:0092741:30
5D124:45:009270:00
Sheet1


Formula entered in E2 and copied down to E5:

=MAX(0,B2-(C2*D2/24))

Format as [h]:mm
 
Upvote 0

Forum statistics

Threads
1,224,583
Messages
6,179,673
Members
452,937
Latest member
Bhg1984

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