Calculating the cumulative annual fee on a growing account (growth has both fixed AND compounding elements)

Dandie1992

New Member
Joined
Jul 27, 2024
Messages
1
Office Version
  1. Prefer Not To Say
Hello!

Context: I am trying to build a model for work that calculates the cumulative expected fee we can expect to generate over a clients lifetime. I can calculate this manually using a table but I'd like to condense this into a formula.

Say we start with an initial account value of 100,000
This grows by a certain annual percentage (say 10%) but also a fixed annual amount of say 1,000 which also compounds in the following years.
At the end of every year we charge say 0.5% on the value of the total account.
I'd like to be able to calculate the cumulative fee over a certain number of years taking into consideration the compounding growth of the account.

Also note that the fee doesn't have to be removed from the account.

I'm completely stuck. Is there a specific function that can be used?
 
Last edited by a moderator:

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
A5=Principle, B5 =Rate of interest(10 in example), C5= Charge (0.5 in example), D5 No of years.
Excel Formula:
=$A$5*((1+$B$5/100)*(1-$C$5/100))^$D$5
Manual Calculation
5​
0.5​
1​
2​
3​
4​
5​
100000​
105000​
525​
104475​
109698.8​
548.4938​
109150.3​
114607.8​
573.0388​
114034.7​
119736.5​
598.6823​
119137.8​
125094.7​
625.4734​
124469.2​
Formula in E4
100000​
5​
0.5​
3​
114034.7​
 
Last edited:
Upvote 0
Welcome to the MrExcel board!

"Prefer Not To Say" in relation to your Office version makes it difficult to make relevant suggestions since different versions have different functions available.

If you have the relevant functions I have used, you could try the formula I have in cell B6 below.
I have only included the section in rows 8:12 to show that the B6 result in a single formula is the same as the result obtained by working out the compounded amount and fee on an annual basis.

24 07 28.xlsm
ABCDEFGHIJKL
1Initial Value100,000.00
2Growth Rate10%
3Annual addition1,000.00
4Fee %0.50%
5Years10
6Total Fee9,142.14
7
8End of year
9StartYear 1Year 2Year 3Year 4Year 5Year 6Year 7Year 8Year 9Year 10
10Value100,000.00111,000.00123,100.00136,410.00151,051.00167,156.10184,871.71204,358.88225,794.77249,374.25275,311.67
11Fee555.00615.50682.05755.26835.78924.361,021.791,128.971,246.871,376.56
12Cumulative fee555.001,170.501,852.552,607.813,443.594,367.945,389.746,518.717,765.589,142.14
Fee
Cell Formulas
RangeFormula
B6B6=SUM(-FV(B2,SEQUENCE(B5),B3,B1)*B4)
B10B10=B1
C10:L10C10=B10*(1+$B2)+$B3
C11:L11C11=$B4*C10
C12:L12C12=SUM($C11:C11)
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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