over time in a sheet

C

chilson

i need to put overtime in a work sheet
but here is what i need to do if you work Between 12:00 am to 8:00 am this
is double time now how do i calculate these hours as double time

So what i'm saying is if i come to work a 8:00pm and work unitl 4:00 am
i will invoice the company 4 stright hours and 4 double time hours

i want the program to auto calculate this .
 
J

Jacob Skaria

Suppose you have data in ColA and ColB as below...(Format colC and D to time
format)


6/21/09 6:00 PM 6/22/09 8:00 AM 6:00 8:00
6/21/09 8:00 PM 6/21/09 9:00 PM 1:00 0:00

C1(normal hours)
=IF(DAY(A1)=DAY(B1),B1-A1,1-MOD(A1,1))

D1(double hours)
=IF(DAY(A1)=DAY(B1),0,MIN(1/3,MOD(B1,1)))

If this post helps click Yes
 
R

Rick Rothstein

You didn't post the layout for your worksheet, so I'll assume you have a
total hours column (say, Column T for this example). Assuming your data
starts in Row 2, use =MIN(T2,4) for your normal hours and =MAX(T2-4,0) for
your overtime hours, so I guess the formula you want would be this...

=MIN(T2,4)+2*MAX(T2-4,0)
 

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