Google Sheets – How to Calculate Compound Interest with Different Interest Rates

google sheets

Assume that I have the following different interest rates for different periods. I would like to calculate a compound interest rate based on these rates for lets say 200 periods. How can I do it elegantly instead of multiplying int_rate1 * int_rate2 * int_rate3 ...

Year    Month   Interest Rate
2014    1       8.04
2014    2       9.14
2014    3       10.06
2014    4       9.11
2014    5       9.20

Best Answer

You can use PRODUCT to provide the product of a range of values, eg:

=PRODUCT(C2:C201)

And if you wanted the compound interest effective at each month, then in row 2:

=PRODUCT(C$2:C2)

and fill down as far as required.