Formula help using age ranges, current salary and premium amounts to calculate totals

thedanzone

New Member
Joined
Nov 20, 2017
Messages
2
I am trying to create a formula in excel to give me a monthly premium amount for disability coverage. I have current age in one column and annual salary in a other column. I need to take annual salary divided by 12 months then divide by 100. Monthly salary cannot exceed $6000.00. That part is easy, but how to take that figure and run it through the age table and get a rate?

Example 1 - 37 year old making $60k per year would be a $20 monthly premium.
Example 2 - 52 tear old making $250k per year would be a $70.20 monthly premium



Table
Age RangeRate per $100.00 of monthly salary
15-24$0.10
25-29$0.15
30-34$0.25
35-39$0.40
40-44$0.56
45-49$0.96
50-54$1.17
55-59$1.58
60-99$1.43

<colgroup><col><col></colgroup><tbody>
</tbody>
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Hi. Make your table like this:

Age RangeRate
150.10
250.15
300.25
350.40
400.56
450.96
501.17
551.58
601.43

<colgroup><col style="width:48pt" width="64"> <col style="width:48pt" width="64"> </colgroup><tbody>
</tbody>

and place it in A1:B10. Place your age in D1 and salary in D2. The formula then could be:

=MIN(72000,D2)/1200*LOOKUP(D1,A2:A10,B2:B10)
 
Upvote 0
Thanks.

Is there a to copy this formula to many rows of data. I am used to dragging the cell down, but the table range cells change when I drag it down.
 
Upvote 0
Thanks.

Is there a to copy this formula to many rows of data. I am used to dragging the cell down, but the table range cells change when I drag it down.

You need to absolute the cells. Dollar signs around the letters of the ranges.
 
Upvote 0

Forum statistics

Threads
1,215,783
Messages
6,126,876
Members
449,346
Latest member
Janspook03

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