Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 13
Default Overtime Calculations

I have a spreadsheet tracking the time a salaried person starts, when they
leave for lunch, when they return from lunch, and when they leave at the end
of the workday. The spreadsheet totals the hours and deducts the time taken
for lunch with no problem. I want to create a formula that will use the
total net hours worked for the week and then calculate the net hourly wage if
the person was hourly. I want to ensure that wages paid are accurately
compensating the hours worked for a salaried person. I currently have a
separate formula that performs that calculation, but it requires me to deduct
40 hours, convert the remaining time into a decimal format, and enter that
into the formula. The formula I am using for that calculation is
=1000/(40+((14.2)*1.5)). The 1000 is using $1000 as an example for the
person's weekly salary, and the 14.2 are the hours worked over 40 hours,
which would be multiplied times 1.5 if the person was hourly. I use a formula
=SUM(G12:G16) that sums up the normal five-day workweek. It is formatted
using [h]:mm. I'm having trouble creating a formula that uses the resulting
total hours from this formula in the previous formula. Sorry for all the
detail, but this one has me stumped.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,276
Default Overtime Calculations

Hi,
take a look to CPearson web

http://www.cpearson.com/excel/overtime.htm

If this was helpful please say yes, thanks

"bgcooker" wrote:

I have a spreadsheet tracking the time a salaried person starts, when they
leave for lunch, when they return from lunch, and when they leave at the end
of the workday. The spreadsheet totals the hours and deducts the time taken
for lunch with no problem. I want to create a formula that will use the
total net hours worked for the week and then calculate the net hourly wage if
the person was hourly. I want to ensure that wages paid are accurately
compensating the hours worked for a salaried person. I currently have a
separate formula that performs that calculation, but it requires me to deduct
40 hours, convert the remaining time into a decimal format, and enter that
into the formula. The formula I am using for that calculation is
=1000/(40+((14.2)*1.5)). The 1000 is using $1000 as an example for the
person's weekly salary, and the 14.2 are the hours worked over 40 hours,
which would be multiplied times 1.5 if the person was hourly. I use a formula
=SUM(G12:G16) that sums up the normal five-day workweek. It is formatted
using [h]:mm. I'm having trouble creating a formula that uses the resulting
total hours from this formula in the previous formula. Sorry for all the
detail, but this one has me stumped.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,722
Default Overtime Calculations

Just need to multiply your SUM by 24 to get a unit base of hrs.
=A2/(MIN(40,G17*24)+1.5*MAX(0,G17*24-40))

This formula has weekly salary in A2, and your SUM in G17. Now you don't
have to convert to decimals and input that into formula.

--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"bgcooker" wrote:

I have a spreadsheet tracking the time a salaried person starts, when they
leave for lunch, when they return from lunch, and when they leave at the end
of the workday. The spreadsheet totals the hours and deducts the time taken
for lunch with no problem. I want to create a formula that will use the
total net hours worked for the week and then calculate the net hourly wage if
the person was hourly. I want to ensure that wages paid are accurately
compensating the hours worked for a salaried person. I currently have a
separate formula that performs that calculation, but it requires me to deduct
40 hours, convert the remaining time into a decimal format, and enter that
into the formula. The formula I am using for that calculation is
=1000/(40+((14.2)*1.5)). The 1000 is using $1000 as an example for the
person's weekly salary, and the 14.2 are the hours worked over 40 hours,
which would be multiplied times 1.5 if the person was hourly. I use a formula
=SUM(G12:G16) that sums up the normal five-day workweek. It is formatted
using [h]:mm. I'm having trouble creating a formula that uses the resulting
total hours from this formula in the previous formula. Sorry for all the
detail, but this one has me stumped.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 13
Default Overtime Calculations

Thanks - this worked great.

"Luke M" wrote:

Just need to multiply your SUM by 24 to get a unit base of hrs.
=A2/(MIN(40,G17*24)+1.5*MAX(0,G17*24-40))

This formula has weekly salary in A2, and your SUM in G17. Now you don't
have to convert to decimals and input that into formula.

--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"bgcooker" wrote:

I have a spreadsheet tracking the time a salaried person starts, when they
leave for lunch, when they return from lunch, and when they leave at the end
of the workday. The spreadsheet totals the hours and deducts the time taken
for lunch with no problem. I want to create a formula that will use the
total net hours worked for the week and then calculate the net hourly wage if
the person was hourly. I want to ensure that wages paid are accurately
compensating the hours worked for a salaried person. I currently have a
separate formula that performs that calculation, but it requires me to deduct
40 hours, convert the remaining time into a decimal format, and enter that
into the formula. The formula I am using for that calculation is
=1000/(40+((14.2)*1.5)). The 1000 is using $1000 as an example for the
person's weekly salary, and the 14.2 are the hours worked over 40 hours,
which would be multiplied times 1.5 if the person was hourly. I use a formula
=SUM(G12:G16) that sums up the normal five-day workweek. It is formatted
using [h]:mm. I'm having trouble creating a formula that uses the resulting
total hours from this formula in the previous formula. Sorry for all the
detail, but this one has me stumped.

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 857
Default Overtime Calculations

Hi,

Here is one solution:

=A2/(24*G17+MAX(G17-5/3,0)*12)

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"bgcooker" wrote:

I have a spreadsheet tracking the time a salaried person starts, when they
leave for lunch, when they return from lunch, and when they leave at the end
of the workday. The spreadsheet totals the hours and deducts the time taken
for lunch with no problem. I want to create a formula that will use the
total net hours worked for the week and then calculate the net hourly wage if
the person was hourly. I want to ensure that wages paid are accurately
compensating the hours worked for a salaried person. I currently have a
separate formula that performs that calculation, but it requires me to deduct
40 hours, convert the remaining time into a decimal format, and enter that
into the formula. The formula I am using for that calculation is
=1000/(40+((14.2)*1.5)). The 1000 is using $1000 as an example for the
person's weekly salary, and the 14.2 are the hours worked over 40 hours,
which would be multiplied times 1.5 if the person was hourly. I use a formula
=SUM(G12:G16) that sums up the normal five-day workweek. It is formatted
using [h]:mm. I'm having trouble creating a formula that uses the resulting
total hours from this formula in the previous formula. Sorry for all the
detail, but this one has me stumped.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Overtime calculations Tia[_3_] Excel Worksheet Functions 3 May 27th 08 12:38 PM
Overtime Calculations Michele Excel Worksheet Functions 1 April 10th 07 09:08 PM
Overtime calculations kozzzle Excel Discussion (Misc queries) 4 August 30th 06 05:30 PM
=SUMPRODUCT((Overtime!$J$6:$GY$6-DAY(Overtime!$J$6:$GY$6)+1=A25)*(Overtime!$J$7:$GY $2 paulrm906 Excel Worksheet Functions 8 June 11th 06 10:34 AM
Overtime Calculations Doug Excel Worksheet Functions 1 March 8th 05 12:57 AM


All times are GMT +1. The time now is 05:51 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"