Sum of a series increasing by a variable percentage

wallacemp

New Member
Joined
Dec 2, 2010
Messages
11
Hi all,

This one has stumped me and I can't find the answer online.

I need to sum a series that increases by a percentage each period. However, the percentage it increases depends on the number of periods. I.e., if it needs to increase from 80K to 100K over 3 years, the annual percentage increase would be 7.72%; but if it needs to increase from 80K to 100K over 4 years, the annual percentage increase would be 5.74%.

What I need is a formula that can take this variability into account while summing the total of series for the given period. E.g., I know that the answer for the 3 year example given above is 259,009 (80,000 for period 1 + 86,177 for period 2 + 92,832 for period 3), but I don't know how to get it into a single formula (which I need, given the variability explained above).

To be clear, I will always know the beginning and end points (80K and 100K in the example above), the number of periods, and the percentage increase. What I need is the sum of the amounts for each period, as explained above.

I'm sure there's a math equation I learned in high school that I'm forgetting here. Can anyone help?
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
The algorithms needed are simply annuity formulas. I doubt they were taught in high school (American ones, at least), so don't feel that you're forgetful.

Here are some formulas that yield the answer. The ones with Red font are single-cell formulas that rely on the three inputs only.


Book1
ABCDE
1periods3
2begin80,000.00
3end100,000.00
4CAGR (compound annualised growth rate)7.7217%7.7217%
5
6Future Value (Excel functions)259,009.16259,009.16259,009.16259,009.16
7Future Value (financial maths)259,009.16259,009.16
8
9
10
11Period
12180,000.00
13286,177.39
14392,831.78
15end259,009.16
Sheet35
Cell Formulas
RangeFormula
B4=(B3/B2)^(1/B1)-1
B6=FV(B4,B1,-B2)
B7=1/B4*(1-1/(1+B4)^B1)*B3
B12=B2
B13=B2*(1+B4)
B14=B13*(1+B4)
B15=SUM(B12:B14)
D4=RATE(B1,0,-B2,B3)
D6=FV(D4,B1,-B2)
C6=FV((B3/B2)^(1/B1)-1,B1,-B2)
C7=1/((B3/B2)^(1/B1)-1)*(1-1/(1+((B3/B2)^(1/B1)-1))^B1)*B3
E6=FV(RATE(B1,0,-B2,B3),B1,-B2)
 
Last edited:
Upvote 0
Maybe...


A
B
C
D
E
1
Begin​
End​
Periods​
Increase​
Result​
2
80000​
100000​
3​
1,0772​
259009,16​
3
80000​
100000​
4​
1,0574​
348606,58​

Formula in D2 copied dow
=(B2/A2)^(1/C2)

Formula in E2 copied down: sum of terms of a geometric progression: S=a1*(q^n -1)/(q-1)
=A2*(D2^C2-1)/(D2-1)

M.
 
Upvote 0
A few more offerings:

ABCDEF
1StartEnd# periods (n)Percentsum of first n periods
28000010000037.72%259009.2
37.72%
4Single cell formula
5259009.2

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet5

Worksheet Formulas
CellFormula
D2=EXP(LN(B2/A2)/C2)-1
E2=A2*((1+D2)^C2-1)/D2
D3=RRI(C2,A2,B2)
E5=A2*((1+RRI(C2,A2,B2))^C2-1)/RRI(C2,A2,B2)

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>

Much the same as Marcelo's formulas that sum a geometric series, but note that Excel has many financial functions. The RRI function in D3 calculates the interest rate without having to remember the formulas (although you do have to remember which function to use!).
 
Upvote 0
Thanks everyone! DRSteele's equation in E6 worked perfectly, though I'm sure the others would work equally well. Really appreciate the help.
 
Upvote 0

Forum statistics

Threads
1,215,487
Messages
6,125,086
Members
449,206
Latest member
ralemanygarcia

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