+ Reply to Thread
Results 1 to 6 of 6

How to calculate cumulative sum of assets decreasing monthly straight line by the same %?

  1. #1
    Registered User
    Join Date
    09-11-2017
    Location
    New York
    MS-Off Ver
    2010
    Posts
    3

    How to calculate cumulative sum of assets decreasing monthly straight line by the same %?

    Hi,
    I'm an accountant, trying to build a formula that would calculate fees we are charging our client monthly based on assets as of that month. Is there a way to build ONE formula that would calculate the number for the year for me?

    Assumptions:
    [A] Prior year ending assets - $2,716 MM
    [B] Monthly change in assets (straight line, NOT compound) -1/12th of 15% decrease every month
    [C] Annual fee rate - 1.318%

    I can build something like this, but this is too many steps - I just want one formula, so i can calculate different scenarios for various assumptions... the hard part for me is cumulative assets for the year that I could just multiply by the monthly rate and get to the same answer. I figured out that cumulative change for the year equals MONTHLY CHANGE*78 (why 78? is this some sort of statistical formula? I don't know statistics or finance...). Here is an example - sorry the formatting doesn't work...



    [1] *** [2] *** [3] *** [4] *** [5] *** [6]
    N/A *** =[A] *** =[2]*[B]/12*[1] *** =[2]+[3] *** =[C]/12 *** =[4]*[5]

    Month *** PY assets *** Change in Assets *** Assets as if Month **** Fee Rate *** Fee
    1 2,716.00 (33.95) 2,682.05 0.001098333 2.95
    2 2,716.00 (67.90) 2,648.10 0.001098333 2.91
    3 2,716.00 (101.85) 2,614.15 0.001098333 2.87
    4 2,716.00 (135.80) 2,580.20 0.001098333 2.83
    5 2,716.00 (169.75) 2,546.25 0.001098333 2.80
    6 2,716.00 (203.70) 2,512.30 0.001098333 2.76
    7 2,716.00 (237.65) 2,478.35 0.001098333 2.72
    8 2,716.00 (271.60) 2,444.40 0.001098333 2.68
    9 2,716.00 (305.55) 2,410.45 0.001098333 2.65
    10 2,716.00 (339.50) 2,376.50 0.001098333 2.61
    11 2,716.00 (373.45) 2,342.55 0.001098333 2.57
    12 2,716.00 (407.40) 2,308.60 0.001098333 2.54
    TOTAL 32,592.00 (2,648.10) 29,943.90 0.001098333 32.89

    Thank you very much everyone!
    I spend two days trying to figure it out...
    Last edited by Notaguru777; 09-11-2017 at 01:13 PM.

  2. #2
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    5,937

    Re: How to calculate cumulative sum of assets decreasing monthly straight line by the same

    You can attach an example workbook - click "Go Advanced" and then "Manage Attachments"

    What number should be calculated? And if you have a 15% straight-line monthly decrease, wouldn't you reach $0 in 7 months? Or do you want 15% over the year? Or 1.5% per month?
    Bernie Deitrick
    Excel MVP 2000-2010

  3. #3
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: How to calculate cumulative sum of assets decreasing monthly straight line by the same

    =2716 * (1 - 15%/12 + 1 - 15%) / 2 * 1.318% returns 32.89

    A
    B
    C
    D
    E
    F
    G
    1
    Month
    PY Assets
    Change in Assets
    Assets as if Month
    FeeRate
    Fee
    2
    1
    2,716.00
    (33.95)
    2,682.05
    0.1098%
    2.95
    3
    2
    2,716.00
    (67.90)
    2,648.10
    0.1098%
    2.91
    4
    3
    2,716.00
    (101.85)
    2,614.15
    0.1098%
    2.87
    5
    4
    2,716.00
    (135.80)
    2,580.20
    0.1098%
    2.83
    6
    5
    2,716.00
    (169.75)
    2,546.25
    0.1098%
    2.80
    7
    6
    2,716.00
    (203.70)
    2,512.30
    0.1098%
    2.76
    8
    7
    2,716.00
    (237.65)
    2,478.35
    0.1098%
    2.72
    9
    8
    2,716.00
    (271.60)
    2,444.40
    0.1098%
    2.68
    10
    9
    2,716.00
    (305.55)
    2,410.45
    0.1098%
    2.65
    11
    10
    2,716.00
    (339.50)
    2,376.50
    0.1098%
    2.61
    12
    11
    2,716.00
    (373.45)
    2,342.55
    0.1098%
    2.57
    13
    12
    2,716.00
    (407.40)
    2,308.60
    0.1098%
    2.54
    14
    TOTAL
    32,592.00
    (2,648.10)
    32.89
    F14: =SUM(F1:F13)
    15
    32.89
    F15: =B2 * (1 - 15%/12 + 1 - 15%) / 2 * 1.318%
    Last edited by shg; 09-11-2017 at 01:08 PM.
    Entia non sunt multiplicanda sine necessitate

  4. #4
    Registered User
    Join Date
    09-11-2017
    Location
    New York
    MS-Off Ver
    2010
    Posts
    3

    Re: How to calculate cumulative sum of assets decreasing monthly straight line by the same

    Oh my god, this looks so easy! Thank you very much! I love you, shg!

  5. #5
    Registered User
    Join Date
    09-11-2017
    Location
    New York
    MS-Off Ver
    2010
    Posts
    3

    Re: How to calculate cumulative sum of assets decreasing monthly straight line by the same

    Sorry, I corrected it - should be -15% annual but 1/12th of it every month. This was solved already, nevertheless, thank you very much!

  6. #6
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: How to calculate cumulative sum of assets decreasing monthly straight line by the same

    You're welcome.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. How to format separately decreasing line in a line chart
    By Jan Zitniak in forum Excel Charting & Pivots
    Replies: 4
    Last Post: 11-08-2016, 01:35 AM
  2. Blank/NA values to be shown as dotted line rather than straight line in Charts
    By palaniappan0212 in forum Excel Charting & Pivots
    Replies: 1
    Last Post: 06-29-2016, 01:01 AM
  3. Replies: 1
    Last Post: 01-21-2016, 02:36 AM
  4. Formula to Calculate when fixed assets are replaced every X years
    By edphill in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 08-07-2014, 01:18 PM
  5. Replies: 2
    Last Post: 06-08-2014, 10:33 PM
  6. Straight Average Line on Line Chart
    By miked79 in forum Excel Charting & Pivots
    Replies: 1
    Last Post: 09-11-2008, 12:00 PM
  7. [SOLVED] straight line graph, really straight line..
    By Jason in forum Excel General
    Replies: 2
    Last Post: 07-20-2006, 05:15 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1