Hi,
thank you for coming to the forum, my name is Adekunle.its worth noting that this is a user community and we are all users here. while we strive to assist and share insights
we are not microsoft.
To calculate the insurance premium based on the Sum Insured and Age Group, you can use a combination of INDEX and MATCH functions. Here's a formula for cell D10 (assuming the Sum Insured is in column C and Age is in column B):
=INDEX($E$2:$L$11,MATCH(B10,$A$2:$A$11,0),MATCH(C10,$B$1:$I$1,0))
This formula uses MATCH to find the row and column numbers corresponding to the Age and Sum Insured, and then uses INDEX to retrieve the premium amount from the specified range.
Here's a breakdown of the formula:
-
$E$2:$L$11: This is the range containing the premium values.
-
MATCH(B10,$A$2:$A$11,0): Finds the row number based on the Age in cell B10.
-
MATCH(C10,$B$1:$I$1,0): Finds the column number based on the Sum Insured in cell C10.
Remember to adjust the cell references based on the actual location of your data in your spreadsheet. Copy this formula to the entire table, and it should auto-tabulate the premium amounts based on the selected Sum Insured and Age Group.
Best regards
Adekunle