Calculate daily hours

esgca2010

New Member
Joined
Jul 29, 2010
Messages
31
I have a spreadsheet that has hours worked by a job on a daily basis.

Example
Monday
Framing, Drywall, Stocking, Clean up
2, 4, 2, 3, 5 = 16 hours worked
8 hrs regular
4 hrs overtime
4 hrs DB time

How do I calculate the number of hours for overtime, and double-time?

It's a rush job and can't find it on my searches since examples show start time and end time.

I thank you in advance for your continued support.

Respectfully,
Elaine
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
From what you say above I assume that your hours are entered as shown rather than as proper times.

Regular hours =MIN(SUM(all hours),8)
Overtime hours =MEDIAN(SUM(all hours)-8,0,4)
Double time hours =MAX(SUM(all hours)-12,0)
 
Upvote 0
From what you say above I assume that your hours are entered as shown rather than as proper times.

Regular hours =MIN(SUM(all hours),8)
Overtime hours =MEDIAN(SUM(all hours)-8,0,4)
Double time hours =MAX(SUM(all hours)-12,0)
Thank you, Jason! Your formulas worked and you save me a big headache. You are awesome!
 
Upvote 0
Hello again,

Example: Monday person works on 1 job per day like drywall 16 hours but on Tuesday it could be Framing, Wednesday it could be Stocking

How do you break down each 1 day of work by 1 job out of multiple categories per day?

8 hrs regular
4 hrs overtime
4 hrs DB time

Thank you so much.
 
Upvote 0
It depends on the layout of your sheet, with the information so far there could be thousands of wrong answers to your question.

Please post an example of your data and expected results using XL2BB (see link below). Before posting, please remember to fictionalise anything personal / confidential, names, payroll numbers, etc.

 
Upvote 0

Forum statistics

Threads
1,215,043
Messages
6,122,822
Members
449,096
Latest member
Erald

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top