+ Reply to Thread
Results 1 to 13 of 13

Revenue Recognition Date Start/End

  1. #1
    Registered User
    Join Date
    11-13-2019
    Location
    NJ
    MS-Off Ver
    2013
    Posts
    36

    Revenue Recognition Date Start/End

    Hi, I am building a revenue recognition model for licenses. The amount paid must be spread out evenly based on the amount and the term length of the license (e.g. $100 spread over 2 months is 50 for each month. I am having trouble getting the model to start on the start date and end on the end date. Would appreciate any help. Thank you.
    Attached Files Attached Files

  2. #2
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,705

    Re: Revenue Recognition Date Start/End

    Your first entry (row 6) has a start date of 18th Feb and an end date of 18th April, so does that mean you want 10 (or should it be 11 ?) day's worth under Feb, 31 day's worth under March and 18 day's worth under April?

    Pete

  3. #3
    Registered User
    Join Date
    11-13-2019
    Location
    NJ
    MS-Off Ver
    2013
    Posts
    36

    Re: Revenue Recognition Date Start/End

    Hi, Thanks for responding! Would you be able to explain it for both ways? Thanks for your help.

    1) For row 6, 18 days in Feb, 31 days in March and 18 days in April? I understand that this method is more complex.
    2) For row 6, Since the columns show Month end date, For Feb 18 through April 18 = 2 months. Therefore, the start would be in Feb and the end would be in april.

  4. #4
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,705

    Re: Revenue Recognition Date Start/End

    I'm just about to log out, so I don't have time to give you a solution at the moment. However, this thread from yesterday is very similar:

    https://www.excelforum.com/excel-for...two-dates.html

    The main difference is that the dates in the columns of that one are end-of-month values, whereas yours are the first of each month.

    If you want to show it as equal monthly amounts, then row 6 should EITHER be shown in Feb and March OR March and April, NOT February to April.

    Also, if worked out on a daily basis, it would be for the remaining days of February (i.e. 28th minus 18th), which is either 10 or 11 days, depending on whether you count the days as inclusive or not. It's not really any more complicated working in days rather than months.

    Anyway, I'll pick this up tomorrow if no-one else has jumped in overnight.

    Pete

  5. #5
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,705

    Re: Revenue Recognition Date Start/End

    You can put this formula in cell L6 of your file:

    =IF(AND($G6<=EOMONTH(L$5,0),$H6>=L$5),(MIN(EOMONTH(L$5,0),$H6)-MAX(EOMONTH(L$5,-1),$G6))/($H6-$G6)*$I6,0)

    Then you can copy this across and down as required. You can also put this formula in AE6:

    =SUM(L6:AC6)

    and copy down, to check that it sums to the value in column I.

    The main formula works things out on a daily basis, so 30-day months have a different value than 31-day months, and the first and last payments are based on the number of days in those months.

    Hope this helps.

    Pete

  6. #6
    Registered User
    Join Date
    11-13-2019
    Location
    NJ
    MS-Off Ver
    2013
    Posts
    36

    Re: Revenue Recognition Date Start/End

    Hey Pete, thanks for your help! It seems to work well. I had a few follow ups if you could be so kind.

    1. Does it matter if I use start of the month instead of end of the month for your formula? (It seems to not matter) =IF(AND($G6<=EOMONTH(L$5,0),$H6>=L$5),(MIN(EOMONTH(L$5,0),$H6)-MAX(EOMONTH(L$5,-1),$G6))/($H6-$G6)*$I6,0)
    2. For line 5 where I placed the dates. Is there a way to automatically show the correct last day of the month for respective year? For instance, instead of me manually typing in 1/31/18 or 4/30/18, there is a formula that calculated that?
    3. How would I show equal monthly amounts? For instance, for line 6, If I start in Feb and end in March. Also, If I start in the following month March and end in April?

    Thanks and I greatly appreciate any input!

  7. #7
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,705

    Re: Revenue Recognition Date Start/End

    In answer to your questions:

    1. If it works for you then use that.

    2. You can put this formula in M5:

    =EOMONTH(L5,1)

    Format L5 and M5 as a date in the style you prefer, then copy M5 across as far as you need to.

    3. Before I went out earlier, I was working on an alternative that worked on months, but I couldn't get it right for row 14 where you have a start date of 1st April and an end date of 1st June (all the others were right). If I tweaked the formula to get that row correct, then many of the others were wrong, so I think I need a different approach. I'll take another look later on.

    Hope this helps.

    Pete

  8. #8
    Registered User
    Join Date
    11-13-2019
    Location
    NJ
    MS-Off Ver
    2013
    Posts
    36

    Re: Revenue Recognition Date Start/End

    Thank you pete! I would appreciate any advice you can offer

  9. #9
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,705

    Re: Revenue Recognition Date Start/End

    This seems to have done it - put this formula in L6:

    =IF(AND($G6<=L$5,(SUM($K6:K6)-$K6)<$I6),$I6/$J6,0)

    then copy across and down as required. This assumes that you have end-of-month dates across row 5.

    Hope this helps.

    Pete

  10. #10
    Registered User
    Join Date
    11-13-2019
    Location
    NJ
    MS-Off Ver
    2013
    Posts
    36

    Re: Revenue Recognition Date Start/End

    Thanks Pete,

    I can't seem to get it to work. Appreciate your input.
    Attached Files Attached Files
    Last edited by misterv; 12-02-2019 at 05:56 PM.

  11. #11
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,705

    Re: Revenue Recognition Date Start/End

    You seem to have got rid of your Months column in V3 - I was working on your V2, and I've attached my copy of that which I worked on.

    Hope this helps.

    Pete

    P.S. If that takes care of your original question, please take a moment to select Thread Tools from the menu above and to the right of your first post in this thread, and mark the thread as SOLVED.

    You might also like to know that you can directly thank those who have helped you by clicking on the small "star" icon located in the lower left corner of a post that you have found to be helpful (not just in this thread - for any post that has helped you). This also adds to the reputation of the poster (the small green bars in the poster's profile).

    Pete
    Attached Files Attached Files

  12. #12
    Registered User
    Join Date
    11-13-2019
    Location
    NJ
    MS-Off Ver
    2013
    Posts
    36

    Re: Revenue Recognition Date Start/End

    thanks pete!

  13. #13
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    24,705

    Re: Revenue Recognition Date Start/End

    You're very welcome.

    Pete

+ 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. [SOLVED] Deferred Revenue, Revenue Recognition --- integrating one time fee!
    By andrew.cloudsnap in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 05-28-2019, 05:05 PM
  2. [SOLVED] Weekly Forecasting of revenue by start date and finish date
    By sws75 in forum Excel General
    Replies: 3
    Last Post: 03-22-2017, 11:15 PM
  3. Daily revenue recognition with start date and end date by quarters
    By shakeexcel in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 04-18-2014, 01:26 AM
  4. Revenue recognition and deffered revenue
    By saurabhwise in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 10-08-2013, 11:12 AM
  5. Revenue Recognition
    By pdiddy123 in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 08-23-2007, 12:10 PM

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