View Single Post
  #2   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

If you have the total hours in C2 this formula will give the overtime

=MAX(C2-40,0)

if the total hours are not decimal hours but excel hours and you want the OT
in Excel hours

=MAX(C2-40/24,0)

formatted as time

--
Regards,

Peo Sjoblom

(No private emails please, for everyone's
benefit keep the discussion in the newsgroup/forum)



"RJ" wrote in message
...
I am trying to create an Employee Time Sheet that has running totals of
hours
and calculates those running totals at an hourly wage. This part, I have
created. The part I am having trouble with is entering formulas that will
calculate overtime rates once 40+ hours is reached.