Premium Formula

Mallory

New Member
Joined
Dec 14, 2020
Messages
2
Office Version
  1. 2013
Platform
  1. Windows
I have created a spreadsheet for my clients and would like a formula to calculate the premium.

There are 4 Packages to choose from:

Core
Bronze
Silver
Gold

Premiums differ in each package according to the clients age.

I have a column with the clients age and I have a column which confirms the package and then I have tables that confirm give the premium
1607975854285.png



What formula can I use that will identify the plan and then give the premium based on the clients age.
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
You can use Choose. You can use the Table or Name Manager to hold the Lookup information.
Complete and check the numbers for the Table.
Complete and add the Names if you use that alternative.
Names like
Plan ={"Bronze","Core","Gold","Silver"}
Age ={18;31;46;51;56}
Bronze ={107.61;118.16;130.82;144.54;159.31} or use named ranges from the Table see below

T202012b.xlsm
ABCDEFGHI
1AgePlanAmount
260Silver239.49
324Bronze107.61AgeBronzeCoreGoldSilver
418107.61163.53
531118.16179.35
646130.82197.29
751144.54217.33
856159.31239.49
1f
Cell Formulas
RangeFormula
C2C2=LOOKUP(A2,$E$4:$E$8,CHOOSE(MATCH(B2,$F$3:$I$3,0),$F$4:$F$8,$G$4:$G$8,$H$4:$H$8,$I$4:$I$8))
C3C3=LOOKUP(A3,Age,CHOOSE(MATCH(B3,Plan,0),Bronze,Core,Gold,Silver))
Named Ranges
NameRefers ToCells
Bronze='1f'!$F$4:$F$8C2:C3
Core='1f'!$G$4:$G$8C2:C3
Gold='1f'!$H$4:$H$8C2:C3
Silver='1f'!$I$4:$I$8C2:C3
 
Upvote 0

Forum statistics

Threads
1,214,932
Messages
6,122,332
Members
449,077
Latest member
jmsotelo

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