+ Reply to Thread
Results 1 to 4 of 4

percentage decrease in population each month

  1. #1
    Registered User
    Join Date
    07-28-2010
    Location
    london, england
    MS-Off Ver
    Excel 2007
    Posts
    91

    percentage decrease in population each month

    Hi all,

    I'm trying to calculate how many people will quit a service each month based upon a known annual cancellation rate.

    I've tried using the annual rate/12, but the problem is that because in each month you have the amount of people left from the last month less the cancellation rate, applying this rate to a decreasing population does not return the correct results.

    I believe a similar approach to calculating compound interest needs to be taken and I've been trying the following formula but to no success..

    =((1+canc_percent/12^month number)-1)

    Where canc_percent is the percentage of people canceling.

    Any help would be appreciated.

    Please see the attached dummy spreadsheet.

    Many Thanks,
    James

    dummy.xlsm
    Last edited by j.farr3ll; 08-06-2013 at 08:14 AM.

  2. #2
    Forum Expert Ace_XL's Avatar
    Join Date
    06-04-2012
    Location
    UAE
    MS-Off Ver
    2016
    Posts
    6,074

    Re: percentage decrease in population each month

    Due to the compounding effect you need to calculate the effective monthly rate which can be done by

    =(1+canc_percent)^(1/12)-1

    This might give you a start
    Life's a spreadsheet, Excel!
    Say thanks, Click *

  3. #3
    Registered User
    Join Date
    07-28-2010
    Location
    london, england
    MS-Off Ver
    Excel 2007
    Posts
    91

    Re: percentage decrease in population each month

    Ok so using your corrected formula for the compound interest rate I get a month drop out rate of 5.9463% when the annual rate is set to 100%.

    Then I have tried to apply this to each month using a formula for decreasing population growth:

    population in month = rounddown(((population start of year*(1-compound rate)^months since start of year)),0)

    i.e. if the compound rate is in cell G9 of the dummy sheet the formula for February year 1 would be:

    =ROUNDDOWN(((B17*(1-$G$9)^2)),0)

    However, as a sense a sense check, I'd expect everyone to drop out by the end of year 1 if the annual dropout rate is 100%. Here I'm only seeing about 53% of people dropping out.

    Any further help would be greatly appreciated.

    Thanks,
    James

  4. #4
    Registered User
    Join Date
    07-28-2010
    Location
    london, england
    MS-Off Ver
    Excel 2007
    Posts
    91

    Re: percentage decrease in population each month

    Found the solution....

    Used the compounded rate as described above,

    then worked out the cumulative number of people dropping out at the end of each month using: Pq=Pi(1-(e^(r*t)))
    where Pq = cumulative population quit at time,
    Pi = initial population,
    e = exponential
    r = compound rate
    t = time periods since initial population.

    As this was a negative number, the population remaining at the end of each month could be found using the following formula:

    =if(Pi+Pq<0.0,Pi+Pq)

    Cheers,
    James

+ 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. Percentage Increase/Decrease
    By SathishKumar in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-19-2013, 01:53 PM
  2. Percentage Increase/Decrease
    By SathishKumar in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 05-16-2013, 10:52 AM
  3. Percentage of increase/decrease for time
    By buzzkill in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-17-2012, 10:43 AM
  4. Percentage of decrease last 2 columns
    By thorsmath in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 05-06-2009, 11:04 PM
  5. Percentage Increase/Decrease
    By ianonline in forum Excel General
    Replies: 2
    Last Post: 06-24-2006, 11:10 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