calculating hourly rate

andrewb90

Well-known Member
Joined
Dec 16, 2009
Messages
1,077
Hello all,

I'm having a bit of a problem, and I'm hoping there's a simple solution.

I am trying to enter in Cell B1 an annual pay amount ($28,600), then in C1 place the number of hours worked per week (50), then the next cell D1 should display the hourly pay rate ($10). Iv'e managed to calculate this starting from the hourly rate x the hours per week, but am struggling to reverse it.

For this example:

$10/hr x 50 hours
reg pay $10x40 hours = $400
O/T pay $15x10 hours = $150
Weekly pay = $550
$550 x 52 weeks =$28,600

I just need to be able to enter any yearly total and amount of working hours to calculate the pay rate that would be equivilent based on 1.5x pay for all hours above 40.

Any help would be greatly appreciated.
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Hi,

Not sure which formula you needed, hope this covers it:


Excel 2010
BCDEFGHI
1Annual PayHours per WeekRegular RateRegular PayOT RateOT PayTotal Weekly PayActual Annual Pay
2$28,600.0050$10.00$400.00$15.00$150.00$550.00$28,600.00
Sheet1
Cell Formulas
RangeFormula
E2=MIN(C2,40)*D2
G2=MAX(0,C2-40)*F2
H2=E2+G2
I2=H2*52
 
Upvote 0
ABC
1Annual PayHours Worked/weekPay Rate
2286005010 (Formula Goes here)
328600607.85714287

<tbody>
</tbody>

Formula in C2:

Code:
=(A2/52)/IF(B2>=40,(40+((B2-40)*1.5)),B2)

Drag the formula down.
 
Upvote 0
I'm a bit confused. D2 shows no fomula but that result would need to be calculated based on the values from B2 & C2.
 
Upvote 0

Forum statistics

Threads
1,221,526
Messages
6,160,340
Members
451,637
Latest member
hvp2262

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