Summary

To calculate overtime and pay associated with overtime, you can use the formulas explained on this page. In formula in cell I5 is:

=(F5*H5)+(G5*H5*1.5)

Generic formula

=(reg_hrs*rate)+(ot_hrs*rate*1.5)

Explanation 

Note: it's important to understand that Excel deals with time as fractions of a day. So, 12:00 PM is .5, 6:00 AM is .25, 6 PM is .75, and so on. This works fine for standard time and date calculations, but in many cases you'll want to convert times to decimal hours to make other calculations more straightforward. In the example shown on this page, we capture time in native units, but then convert to decimal hours in column E.

To calculate total hours worked, cell E5 contains:

=(D5-C5)*24

This is simply end time minus start time, multiplied by 24 to convert to decimal hours. If you need to calculate elapsed time that crosses midnight, see this page for options and general explanation.

To calculate regular time, F5 contains:

=MIN(8,E5)

This is an example of using MIN instead of IF to simplify. The result is the smaller of two options: 8 hours, or regular time as calculated above.

To calculate OT (overtime), G5 contains:

=E5-F5

Not much to see here. We simply subtract regular time from total hours to get overtime. Note the result will be zero if total time = regular time. This is important because it effectively "zeroes out" the overtime component of the formula in I5 when there is no overtime.

To calculate the Total, I5 contains:

(F5*H5)+(G5*H5*1.5)

This is where we finally calculate a total based on rate and hours, taking into account overtime paid at 1.5 times the normal rate. (Adjust the multiplier as needed). We first multiply regular time by the normal rate. Then we multiply overtime by the same rate times 1.5. As mentioned above, when overtime is zero, this part of the formula returns zero.

Finally, the sum of both calculations above is returned as the Total in column I.

Dave Bruns Profile Picture

AuthorMicrosoft Most Valuable Professional Award

Dave Bruns

Hi - I'm Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.