Calculate Growth Value When Drawing Down Funds

SimonHughes

Active Member
Joined
Sep 16, 2009
Messages
452
Office Version
  1. 365
Platform
  1. Windows
Hello,

I want to create a spreadsheet where I start with a fixed value, say £100,000 which will grow at a rate of (say) 4%pa for 10 years when I will start drawing down capital at 10%pa. This part of the calculation is easy but what I then want to do is to apply the original 4% growth to the diminishing total as I draw down the capital.

Further, I would like to original capital value, the growth rate (quoted here as 4%) and the drawdown rate (quoted here as 10%) to be variable.

Can anyone help with this one please?
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
It is unclear to me exactly what you want to calculate. Perhaps something like the following.

ABC
1Init bal100,000.00
2Growth rate4.00%
3Withdrawal rate10.00%
4Accumulation phase10years
5
6Withdraw PhaseWithdrawal (at beg)End Bal
7End bal, year 10148,024.43
8Year 1114,802.44138,550.87
91213,855.09129,683.61
101312,968.36121,383.86
111412,138.39113,615.29
121511,361.53106,343.91
131610,634.3999,537.90
14179,953.7993,167.48
15189,316.7587,204.76
16198,720.4881,623.65
17208,162.3776,399.74

<tbody>
</tbody>
Rich (BB code):
Formulas:
A7: =B4
C7: =FV(B2,B4,0,-B1)
A8: =A7+1
B8: =C7*$B$3
C8: =(C7-B8)*(1+$B$2)
Copy A8:C8 into A9:C9 and for as many rows as you wish

The key formulas are highlighted in red. They calculate the initial balance for the withdrawal phase (ending balance of the accumulation phase) in C7; and the ending balance for each year of the withdrawal phase in C8, after withdrawing the specified percentage at the beginning of each year.
 
Upvote 0
It is unclear to me exactly what you want to calculate. Perhaps something like the following.

ABC
1Init bal100,000.00
2Growth rate4.00%
3Withdrawal rate10.00%
4Accumulation phase10years
5
6Withdraw PhaseWithdrawal (at beg)End Bal
7End bal, year 10148,024.43
8Year 1114,802.44138,550.87
91213,855.09129,683.61
101312,968.36121,383.86
111412,138.39113,615.29
121511,361.53106,343.91
131610,634.3999,537.90
14179,953.7993,167.48
15189,316.7587,204.76
16198,720.4881,623.65
17208,162.3776,399.74

<tbody>
</tbody>
Rich (BB code):
Formulas:
A7: =B4
C7: =FV(B2,B4,0,-B1)
A8: =A7+1
B8: =C7*$B$3
C8: =(C7-B8)*(1+$B$2)
Copy A8:C8 into A9:C9 and for as many rows as you wish

The key formulas are highlighted in red. They calculate the initial balance for the withdrawal phase (ending balance of the accumulation phase) in C7; and the ending balance for each year of the withdrawal phase in C8, after withdrawing the specified percentage at the beginning of each year.

Yes, that works very well thank you. I have made two alterations; to substitute a draw-down of the remaining balance by 10% (your formula B8: =C7*$B$3) to a draw-down of the balance at the end of the accumulation phase so as to maintain a "fixed" income for the period (my formula =$C$7*$B$3). This shows how many years I have before running out of funds with this fixed income. I have also included an inflation rate to subtract from the projected (hoped for) growth rate to give me a net growth rate which is more realistic.

Thanks for providing this information, excellent!
 
Upvote 0
You're welcome. Given your changes, the following might be helpful.

-----

With a fixed withdrawal amount, you can use NPER to calculate the number of years for the withdrawal phase, to wit (in E1):

=INT(NPER(B2,B8,-C7,0,1))

Note the type=1, since I assume that annual withdrawals are at the beginning of each year. The remaining balance is:

=FV(B2,E1,B8,-C7,1)

Interestingly, the NPER calculation is not affected by either the initial balance or the length of the accumulation phase. (Of course, the remaining balance at the end of the withdrawal phase is.)

So, the number of years for the withdrawal phase is simply:

=INT(NPER(B2,B3,-1,0,1))

-----

I would not apply in inflation rate to the investment growth or growth rate. Average investment returns are not affected by inflation.

Aside.... There is a difference between average investment growth rate, which is market-driven, and average required growth rate. If I did apply inflation to the average required growth rate, I would "add", not subtract. A 4% investment return is worth less a year from now due to inflation. But if the average inflation rate is 2%, the average inflation-adjusted required growth rate is not simply 6%. Instead, it is (1+4%)*(1+2%)-1, which is 6.08%.

However, your withdrawal requirement is affected by inflation, assuming that it largely funds expenses.

So, I would make the following changes to my previous example, given an average inflation rate in E2 (in order to minimize the changes to previous cell references).

B9: =B8*(1+$E$1)
Copy A9:C9 into A10:C10 until the ending balance in column C is negative.

Of course, the funds last until the year before.

-----

I might be able to develop a "closed-form" formula to calculate "nper", given an investment growth rate and a withdrawal inflation rate. Are you interested?

Also, usually the problem to solve goes in the reverse, to wit: what initial investment (and optional annual contribution, fixed or variable) is required in order to fund a withdrawal phase of n years after an accumulation phase of k years, given an average investment growth rate and (optionally) an average inflation rate applied to withdrawals. Is that really the problem that you would like to solve?
 
Last edited:
Upvote 0
You're welcome. Given your changes, the following might be helpful.

-----

With a fixed withdrawal amount, you can use NPER to calculate the number of years for the withdrawal phase, to wit (in E1):

=INT(NPER(B2,B8,-C7,0,1))

Note the type=1, since I assume that annual withdrawals are at the beginning of each year. The remaining balance is:

=FV(B2,E1,B8,-C7,1)

Interestingly, the NPER calculation is not affected by either the initial balance or the length of the accumulation phase. (Of course, the remaining balance at the end of the withdrawal phase is.)

So, the number of years for the withdrawal phase is simply:

=INT(NPER(B2,B3,-1,0,1))

-----

I would not apply in inflation rate to the investment growth or growth rate. Average investment returns are not affected by inflation.

Aside.... There is a difference between average investment growth rate, which is market-driven, and average required growth rate. If I did apply inflation to the average required growth rate, I would "add", not subtract. A 4% investment return is worth less a year from now due to inflation. But if the average inflation rate is 2%, the average inflation-adjusted required growth rate is not simply 6%. Instead, it is (1+4%)*(1+2%)-1, which is 6.08%.

However, your withdrawal requirement is affected by inflation, assuming that it largely funds expenses.

So, I would make the following changes to my previous example, given an average inflation rate in E2 (in order to minimize the changes to previous cell references).

B9: =B8*(1+$E$1)
Copy A9:C9 into A10:C10 until the ending balance in column C is negative.

Of course, the funds last until the year before.

-----

I might be able to develop a "closed-form" formula to calculate "nper", given an investment growth rate and a withdrawal inflation rate. Are you interested?

Also, usually the problem to solve goes in the reverse, to wit: what initial investment (and optional annual contribution, fixed or variable) is required in order to fund a withdrawal phase of n years after an accumulation phase of k years, given an average investment growth rate and (optionally) an average inflation rate applied to withdrawals. Is that really the problem that you would like to solve?

Thanks for this, I have incorporated the formula to calculate years left for a fixed withdrawal and take on board the point regarding inflation.

As I am no longer contributing to savings I start with the initial amount and am working backwards to calculate indicative draw-down rates and time-span under various growth/inflation scenarios. I now have the tools to do that and I thank you for your input.
 
Upvote 0

Forum statistics

Threads
1,214,646
Messages
6,120,715
Members
448,985
Latest member
chocbudda

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