calculating pay with and without overtime

  • Thread starter Thread starter lebanonfamous
  • Start date Start date
L

lebanonfamous

need help with a formula to calculate gross pay with 1.5 overtime rate with
<=> 40 hrs Please help Thanks
 
Try this:

A1 = hourly rate
A2 = total hours (in decimal format: 48)

=A1*MIN(40,A2)+A1*1.5*MAX(0,A2-40)
 
Hi,

Here is a shorter formula to do the same thing with the rate in B1 and the
hours in A1


=MAX(A1,40+(A1-40)*1.5)*$B$1
 
thx brain freeze here needed the help


ShaneDevenshire said:
Hi,

Here is a shorter formula to do the same thing with the rate in B1 and the
hours in A1


=MAX(A1,40+(A1-40)*1.5)*$B$1
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top