+ Reply to Thread
Results 1 to 16 of 16

Simple Monthly Recurring Revenue Q: Formula to know how much I made in 6 months?

  1. #1
    Forum Contributor
    Join Date
    07-17-2012
    Location
    N/A
    MS-Off Ver
    Excel 2010
    Posts
    218

    Simple Monthly Recurring Revenue Q: Formula to know how much I made in 6 months?

    I have a somewhat simple math formula I was wondering if I can get some help with.

    - I get 5 customers per week.
    - Each month has 4.3 weeks, so I get about 21.5 customers per month.
    - Customers pay $10 per month in a subscription service.
    - In 6 months, how much revenue would I have made?

    I think this has to do with "compounding revenue", thought I'm not completely sure what the math term for it is. The reason I find it tricky is this:

    - In month 1, if I get 21.5 customers paying $10/month, that's $215.00.
    - In month 2, I would have double the customers, which is $420 for that month. If I add the $215 from the first month, that's $635 revenue.
    - I want to know what the formula is, so that I can enter the "Month" in one cell, and then it calcultes it on the final cell.

  2. #2
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,047

    Re: Simple Monthly Recurring Revenue Q: Formula to know how much I made in 6 months?

    Why would you get "double the customers" in month 2? by implication, you would get 6 times the customers in moth 6 and 100 times the cutomers in month 100??? 500 cutomers/week 2150 customers/month?
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  3. #3
    Registered User
    Join Date
    05-15-2013
    Location
    az
    MS-Off Ver
    Excel 2007
    Posts
    13

    Re: Simple Monthly Recurring Revenue Q: Formula to know how much I made in 6 months?

    If you get an additional 21.5 customers a month it would be =21.5*(Months)*10

    If your customers double each month it would be =21.5*10*(2^(Months-1)) for the amount made that month

  4. #4
    Registered User
    Join Date
    05-15-2013
    Location
    az
    MS-Off Ver
    Excel 2007
    Posts
    13

    Re: Simple Monthly Recurring Revenue Q: Formula to know how much I made in 6 months?

    Unless you are asking for the total at that specific month period.

    The only way i would know would be to make the "A" column the month number (starting on A2) (down to the furthest desired month) and the "B" column (starting on B2) =B1+(21.5*10*A2) and then auto filling

  5. #5
    Forum Contributor
    Join Date
    07-17-2012
    Location
    N/A
    MS-Off Ver
    Excel 2010
    Posts
    218

    Re: Simple Monthly Recurring Revenue Q: Formula to know how much I made in 6 months?

    Quote Originally Posted by FDibbins View Post
    Why would you get "double the customers" in month 2? by implication, you would get 6 times the customers in moth 6 and 100 times the cutomers in month 100??? 500 cutomers/week 2150 customers/month?
    Sorry, let me explain.

    - In month 1, I get 21.5 customers.
    - In month 2, I "retain" the original 21.5 customers, and I "obtain" an additional 21.5 customers. In total, I have 43.
    - In month 3, I "retain" 43 customers and "obtain" an additional 21.5, etc. etc.

    So, my question is: in 6 months, how many customers will I have "retained", and how much revenue would I have generated in total?

    I'd like to setup a cell where I can enter the amount of weeks or months, and then calculate how much revenue I would have made in that time span.

  6. #6
    Forum Contributor
    Join Date
    07-17-2012
    Location
    N/A
    MS-Off Ver
    Excel 2010
    Posts
    218

    Re: Simple Monthly Recurring Revenue Q: Formula to know how much I made in 6 months?

    Quote Originally Posted by Nate87 View Post
    If you get an additional 21.5 customers a month it would be =21.5*(Months)*10

    If your customers double each month it would be =21.5*10*(2^(Months-1)) for the amount made that month
    Sorry, I clarified it in the last post. Each month I'm adding 21.5 customers. SO, I wonder what my total revenue generated after 10 months is.

    In month 1, I get 21.5 customers, which is $215.
    In month 2, I get 21.5 additional customers, which is 43 customers, $430.
    In month 3, I get 21.5 additional customers, which is 64.5 customers, $645.

    After 3 months, I generated $215, $430, $645, totaling $1,290.

    Is there a formula so that I can input the amount of months into a box, and then get that "total"?

  7. #7
    Valued Forum Contributor
    Join Date
    04-13-2011
    Location
    Ottawa, Canada
    MS-Off Ver
    365
    Posts
    1,101

    Re: Simple Monthly Recurring Revenue Q: Formula to know how much I made in 6 months?

    I originally wrote using =FACT formula...but it doesn't work
    Last edited by dluhut; 05-16-2013 at 03:08 PM.

  8. #8
    Valued Forum Contributor
    Join Date
    04-13-2011
    Location
    Ottawa, Canada
    MS-Off Ver
    365
    Posts
    1,101

    Re: Simple Monthly Recurring Revenue Q: Formula to know how much I made in 6 months?

    Please Login or Register  to view this content.
    Where cell A1 is where you input the month (1, 2, ... , 10) etc

    Edit: I've uploaded a sample, so you can choose which one you prefer.
    Attached Files Attached Files
    Last edited by dluhut; 05-16-2013 at 03:20 PM.

  9. #9
    Forum Contributor
    Join Date
    07-17-2012
    Location
    N/A
    MS-Off Ver
    Excel 2010
    Posts
    218

    Re: Simple Monthly Recurring Revenue Q: Formula to know how much I made in 6 months?

    Quote Originally Posted by dluhut View Post
    Please Login or Register  to view this content.
    Where cell A1 is where you input the month (1, 2, ... , 10) etc

    Edit: I've uploaded a sample, so you can choose which one you prefer.
    Great, thanks! I recall learning about factorials, but this is my first time seeing it in an Excel. What is the difference between "Total Rev" "Revenue Total" and "Sumproduct Formula"?

  10. #10
    Forum Contributor
    Join Date
    07-17-2012
    Location
    N/A
    MS-Off Ver
    Excel 2010
    Posts
    218

    Re: Simple Monthly Recurring Revenue Q: Formula to know how much I made in 6 months?

    Quote Originally Posted by dluhut View Post
    Please Login or Register  to view this content.
    Where cell A1 is where you input the month (1, 2, ... , 10) etc

    Edit: I've uploaded a sample, so you can choose which one you prefer.
    Please excuse the last question. I spent a couple of hours with it and understand it now. Can you update the Excel so that there is "Total Revenue" and "Total Customers". I attached an Excel so it's easier to understand, it's in the blue cells.
    Attached Files Attached Files

  11. #11
    Valued Forum Contributor
    Join Date
    04-13-2011
    Location
    Ottawa, Canada
    MS-Off Ver
    365
    Posts
    1,101

    Re: Simple Monthly Recurring Revenue Q: Formula to know how much I made in 6 months?

    Hello Lesoies,

    The attached file basically give you 2 options.

    The 1st one, which is at the very top, while user input the number of months, it'll calculate the total revenue received from month 1 to the input months.

    The 2nd option is basically telling you how much revenue and customer will be in a particular month. It also act as a way of checking to see if option 1 calculation is correct.

    As for the update of Excel, I believe I can just write it here (assuming if I get what you meant).

    "Total Customer" =$B$10*$A23
    "Total Revenue" = $B23 * $B$11

  12. #12
    Forum Contributor
    Join Date
    07-17-2012
    Location
    N/A
    MS-Off Ver
    Excel 2010
    Posts
    218

    Re: Simple Monthly Recurring Revenue Q: Formula to know how much I made in 6 months?

    Quote Originally Posted by dluhut View Post
    Hello Lesoies,

    The attached file basically give you 2 options.

    The 1st one, which is at the very top, while user input the number of months, it'll calculate the total revenue received from month 1 to the input months.

    The 2nd option is basically telling you how much revenue and customer will be in a particular month. It also act as a way of checking to see if option 1 calculation is correct.

    As for the update of Excel, I believe I can just write it here (assuming if I get what you meant).

    "Total Customer" =$B$10*$A23
    "Total Revenue" = $B23 * $B$11
    Yes, that works. Thank you!

  13. #13
    Registered User
    Join Date
    05-17-2013
    Location
    Saudi Arabia
    MS-Off Ver
    Excel 2007
    Posts
    10

    Re: Simple Monthly Recurring Revenue Q: Formula to know how much I made in 6 months?

    Try to copy and paste the following into excel (in A1) and that should give you the required results: i.e. Enter No. of Months and it should tell you the total income.
    Weeks in a month 4.3
    Customers per week 5
    Fee/ Month 10
    Enter Months 5
    Amount =B1*B2*B3*B4

  14. #14
    Forum Contributor
    Join Date
    07-17-2012
    Location
    N/A
    MS-Off Ver
    Excel 2010
    Posts
    218

    Re: Simple Monthly Recurring Revenue Q: Formula to know how much I made in 6 months?

    Hi, sorry to revisit an old thread. I had one last cell that wasn't updating and was wondering if you could help?

    In B11, if I change the Average Subscription Cost from $10 to $20, every cell changes correctly except for D23.

    D23 reads: =SUMPRODUCT(B23*(ROW(INDIRECT("1:"&$A$23))))
    And it doesn't appear to take into account B11.

    Thanks.

    Quote Originally Posted by dluhut View Post
    Hello Lesoies,

    The attached file basically give you 2 options.

    The 1st one, which is at the very top, while user input the number of months, it'll calculate the total revenue received from month 1 to the input months.

    The 2nd option is basically telling you how much revenue and customer will be in a particular month. It also act as a way of checking to see if option 1 calculation is correct.

    As for the update of Excel, I believe I can just write it here (assuming if I get what you meant).

    "Total Customer" =$B$10*$A23
    "Total Revenue" = $B23 * $B$11
    Attached Files Attached Files

  15. #15
    Forum Contributor
    Join Date
    07-17-2012
    Location
    N/A
    MS-Off Ver
    Excel 2010
    Posts
    218

    Re: Simple Monthly Recurring Revenue Q: Formula to know how much I made in 6 months?

    Sorry I was mistaken, I got it. Thanks!

  16. #16
    Registered User
    Join Date
    08-14-2014
    Location
    United States
    MS-Off Ver
    Microsoft office Version 2013
    Posts
    1

    Arrow Re: Simple Monthly Recurring Revenue Q: Formula to know how much I made in 6 months?

    There is no such direct formula but you can calculate it manually as it may happen that you customers can increase or decrease.In that case no formula will work but instead if you want to calculate then you can take the minimum amount by day you have earned and the minimum amount of customers you have and then multiply it with 30 and then to 6. You will get your estimated minimum amount that you have earned. Definitely you will earn more than this....

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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