Tiered Pay Scale Calculations

A

AZapata

I am calculating a multi tiered pay scale based on earnings:
0-200,000 net earnings = a bonus of 10% of the earnings
200,001-400,000= 15% bonus for this tier
400,001-1,000,000= 20% bonus for this tier
and so on...
I want to be able to enter a value in a cell and have it calculate the total
bonus. IN this example a Net Earnings of $500,000 should result in a bonus
of aprox. $70,000 ($20,000 for first tier, $30,000 for second, and $20,000
for the third).

Please Help
 
J

JulieD

Hi

might be an easier way, but here's one option
=IF(A1>200000,IF(A1>400000,(A1-400000)*0.2+50000,(A1-200000)*0.15+20000),A1*0.1)

Cheers
JulieD
 
B

budgie

I am calculating a multi tiered pay scale based on earnings:
0-200,000 net earnings = a bonus of 10% of the earnings
200,001-400,000= 15% bonus for this tier
400,001-1,000,000= 20% bonus for this tier
and so on...
I want to be able to enter a value in a cell and have it calculate the total
bonus. IN this example a Net Earnings of $500,000 should result in a bonus
of aprox. $70,000 ($20,000 for first tier, $30,000 for second, and $20,000
for the third).

Candidate for a VLOOKUP table
 

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