+ Reply to Thread
Results 1 to 5 of 5

Straight Line Depreciation for Long Term Model of Depreciation

  1. #1
    Registered User
    Join Date
    02-21-2017
    Location
    Norway
    MS-Off Ver
    2016 (Win10)
    Posts
    76

    Straight Line Depreciation for Long Term Model of Depreciation

    Hi,

    SLN function does not work for my case because I need the calculation to stop when asset is fully depreciated. another reason is because the purchase arrives evenly in each quarter. That means 1st quarter purchase will have full year depreciation and last quarter purchase will only have one-quarter of full year depreciation.

    I cannot find any formula to support that except to build my own formula. I have uploaded my model here. First I calculate the % for each useful life until the end of useful life - which I called depreciation schedule. Then I started my complicated formula to calculate for each asset.

    The issue I have is each asset have different useful life, so at the moment the complicated formula I used is hard coded to specific row of the depreciation schedule and using specific row of planned purchase.

    I want to make the selection of formula to use flexible because users may want to select different useful life.

    If I make my set of "complicated formula" as another schedule, what kind of formula can I use to make sure based on the useful life that user selected, the depreciation calculation will choose the right formula to calculate??
    Attached Files Attached Files

  2. #2
    Valued Forum Contributor loginjmor's Avatar
    Join Date
    01-31-2013
    Location
    Cedar Rapids, Iowa
    MS-Off Ver
    Excel 2013
    Posts
    1,073

    Re: Straight Line Depreciation for Long Term Model of Depreciation

    Hi -

    I'm not an accountant so I don't fully understand your method. It appears that an asset is purchased over multiple years? For example Asset 1 costs $150 but $100 is in 2017 and $50 is expended in 2018? And the two costs are depreciated separately and added together? So for Asset 1, Year 1 is $5 depreciation of the $100 and in Year 2, this Asset is upgraded? Enhanced? Accumulated? So you have $5 depreciation for the original $100 Plus $2.50 for first year of the second part of Asset 1 of $50? It seems like these are being treated as separate assets for depreciation purposes and added together. Am I understanding that correctly?

    Wouldn't it be easier to break Asset 1 into Asset 1A of $100 on one line and depreciate that out and have a separate line for Asset 1B of $50 and depreciate that out and then add those two lines together on a third line called Asset 1 or Asset 1 Combined? it seems like the complexity of your formula is due to the spreading of expenditures over multiple years.
    ____________________________________________
    If this has solved your problem, please edit the thread title to add the word [SOLVED] at the beginning. You can do this by
    -Go to the top of the first post
    -Select Thread Tools
    -Select Mark thread as Solved

    If I have been particularly helpful, please "bump" my reputation by pressing the small star in the lower left corner of my post.

  3. #3
    Registered User
    Join Date
    02-21-2017
    Location
    Norway
    MS-Off Ver
    2016 (Win10)
    Posts
    76

    Re: Straight Line Depreciation for Long Term Model of Depreciation

    Hi,

    Asset 1 is a type of asset. So purchase of this asset will happen yearly if needed. Using the sample i uploaded, user decided to plan to purchase asset 1 $100 in year 2017 and $50 in year 2018. but in each year, the purchase is evenly distributed again 4 times. That means
    Q1 Yr 2017 - $ 25
    Q2 Yr 2017 - $25
    Q3 Yr 2017 - $25
    Q4 Yr 2017 - '$ 35

    each purchase in each year is depreciated separately.

    Yes the complexity is due to spreading the expenditure over multiple years....but that is long term planning or forecasting of the assets.

    Yes, I can probably split up the rows into Asset 1 Q1, Asset 1 Q2 etc...but I still need to be able to calculate the depreciation smartly for each purchase 1st year of purchase and last useful life year because in first year of purchase, Q1 is full year depreciation, Q2 is three-quarter, Q3 is two quarter and Q4 is only one quarter. The same goes to last year of useful life.

  4. #4
    Valued Forum Contributor loginjmor's Avatar
    Join Date
    01-31-2013
    Location
    Cedar Rapids, Iowa
    MS-Off Ver
    Excel 2013
    Posts
    1,073

    Re: Straight Line Depreciation for Long Term Model of Depreciation

    Hi -

    OK - So based on what you've told me, I restructured the data so that you can input different starting years for each asset, Useful Life, Starting quarter, and Asset Value. Then I used some nested IF statements to test each of the time criteria against the year (in row 29) and used a VLOOKUP to use the Depreciation Schedule based on the quarter the asset is placed in service. If an asset is placed in service partway through the year, a proportion of the first year depreciation is applied in that first part year and then full depreciation in the subsequent years plus the remainder of the part year depreciation in the last year.

    The formula looks like this:

    =IF($G15>J$29,0,IF(J$29>($C15+$G15),0,$B15*(1/$C15)*IF((J$29-$G15)=0,VLOOKUP($H15,$E$39:$H$42,4),IF(J$29=($C15+$G15),1-VLOOKUP($H15,$E$39:$H$42,4),1))))

    I have attached your spreadsheet with the above revisions. I highlighted the areas that I modified in a light orange color. The area that is highlighted green is no longer necessary because other columns I added replace those two columns. Try changing some of the numbers (like years of service, starting quarter, starting year, etc.) to see if the results are what you expect.

    Hope this helps.
    Attached Files Attached Files

  5. #5
    Registered User
    Join Date
    02-21-2017
    Location
    Norway
    MS-Off Ver
    2016 (Win10)
    Posts
    76

    Re: Straight Line Depreciation for Long Term Model of Depreciation

    Thank you! I shall test it out!

+ 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 use the IF Function in Straight Line Depreciation
    By tobbyexcel in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 10-07-2015, 06:54 PM
  2. Excel 2007 : Straight line depreciation
    By Simmi7 in forum Excel General
    Replies: 7
    Last Post: 10-10-2014, 08:45 PM
  3. Depreciation Straight line Calculation based on start and end date
    By anjoseph9626 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 03-03-2013, 04:44 PM
  4. [SOLVED] Formulas to show all previous depreciation combined, and also current depreciation.
    By Morisk in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 11-20-2012, 09:05 AM
  5. Straight Line Depreciation Calculation
    By andrew8008 in forum Excel General
    Replies: 4
    Last Post: 11-07-2012, 04:29 PM
  6. Straight Line Depreciation using the IF Function (Excel '03)
    By L_haynes in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 06-09-2010, 03:34 AM
  7. SLN - Straight Line Depreciation
    By [email protected] in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 07-06-2005, 10:05 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