straight time, time and a half, and double time

J

Jeremy

OK i am having a lot of trouble with this one. I am calculating overtime
hours for an ongoing job.

I get a total number of hours worked for every employee.

The first 40 hours of the week are straight time
Between 40 and 60 are time and a half
Over 60 hours are double time

Can someone help with the formulas? I think I have the end ones, but not
the middle one. See below

=IF(K31>=40,40,K31)

=IF(K31>60,K31-60)
 
P

Peo Sjoblom

Try


for the time and a half



=MAX(MIN(K31-40,20),0)




for double




=MAX(0,K31-60)

--


Regards,


Peo Sjoblom
 
M

Mike H

Hi,

I'd use these 3
=IF(K31>=40,40,K31)
=IF(K31>40,MIN(K31-40,20),0)
=IF(K31>60,K31-60,0)

Mike
 

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

Top