+ Reply to Thread
Results 1 to 6 of 6

Need help with calculating a compounding value

Hybrid View

  1. #1
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    =1000*(1 + 10%)^N where N is the number of years
    Entia non sunt multiplicanda sine necessitate

  2. #2
    Registered User
    Join Date
    12-05-2008
    Location
    Iowa
    Posts
    12
    This formula gives me the amount for each year, but I need a cumulative total of all the amounts for a given year. In my example, I need to formula that returns 2310 for year 2, and 3641 for year three. Thanks in advance for your help.

  3. #3
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    =amt * ((1 + int) ^ (N + 1) - 1) / int

    ... where amt is the initial amount, N is the number of periods, and int is the compounding rate, e.g.,

          -A- ----B---- -------------------------C-------------------------
      1   amt 1,100.00                                                     
      2   int    10%                                                       
      3                                                                    
      4    N     Sum                                                       
      5    0  1,100.00  B5 and down: =amt * ((1 + int) ^ (N + 1) - 1) / int
      6    1  2,310.00                                                     
      7    2  3,641.00                                                     
      8    3  5,105.10                                                     
      9    4  6,715.61

  4. #4
    Registered User
    Join Date
    12-05-2008
    Location
    Iowa
    Posts
    12
    This formula works great with one exception. If I try to calculate without using a compounding rate, which will need to be done in some cases, it results in a division by 0 error and does not let me calculate the cumulative totals by year with zero interest.

  5. #5
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    =if(int=0, (N+1) * amt, ~)

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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