Calculating Growth with Annual Drawdown

SimonHughes

Active Member
Joined
Sep 16, 2009
Messages
452
Office Version
  1. 365
Platform
  1. Windows
I would like to work out today's value of an investment, of say £100,000 made on January 1 2010 which has grown by an annual amount of 14% (we can assume a linear growth rate) and with an annual draw down of 5% of the balance at year end.

So end of year one, I have capital of £114,000 and draw down 5% which is £5,700 leaving £108,300 to grow at 14%.

Looking for a nice formula where I can reference cells with investment value, growth rate and draw down rate (say in cells B1, B2, B3).
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
If you want to do this in a table, it's pretty easy:

Cell Formulas
RangeFormula
G2G2=B1
E3:E12E3=G2*(1+$B$2)
F3:F12F3=$B$3*E3
G3:G12G3=E3-F3


But if you're looking for formulas where you have a year in B4, and you automatically get the year n values without the whole table, that's possible too, but the formulas are more complicated.
 
Upvote 0
Thanks Eric, this table is exactly what I need. Much appreciated
 
Upvote 0
What value do you get in 10 years?

You can try the following
T202006a.xlsm
ABCD
1Investment100,000.00$221,965.03
2Growth14%
3Drawdown5%
4Term10
5Net Growth0.083
6GrowthDrawdownBalance
7100,000.00
8114,000.005,700.00108,300.00
7b
Cell Formulas
RangeFormula
D1D1=FV(B5,B4,0,-B1)
B5B5=(D8-D7)/D7
D7D7=B1
B8B8=D7*$B$2
C8C8=(D7+B8)*$B$3
D8D8=D7+B8-C8
 
Upvote 0
Or simply:

=FV((1+14%)*(1-5%)-1, 10, 0, -100000)

PS.... Missed this:
Looking for a nice formula where I can reference cells with investment value, growth rate and draw down rate (say in cells B1, B2, B3).

So the formula is:

=FV((1+B2)*(1-B3)-1, 10, 0, -B1)

Of course, 10 could be in a cell (B4), as well.
 
Upvote 0
edit Joeu2004 already posted the more concise version

T202006a.xlsm
ABCD
1Investment100,000.00
2Growth14%$221,965.03
3Drawdown5%$221,965.03
4Term10
7b
Cell Formulas
RangeFormula
D2D2=FV(B2-((1+B2)*B3),B4,0,-B1)
D3D3=FV((1+B2)*(1-B3)-1,B4,0,-B1)
 
Upvote 0

Forum statistics

Threads
1,215,063
Messages
6,122,934
Members
449,094
Latest member
teemeren

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