+ Reply to Thread
Results 1 to 14 of 14

Depreciation Computation in a Single Row

  1. #1
    Forum Expert
    Join Date
    01-05-2013
    Location
    Singapore
    MS-Off Ver
    H&B2016 & H&B2021
    Posts
    3,069

    Depreciation Computation in a Single Row

    Hi all

    Need help on a single formula to calculate yearly depreciation for capital expenditure over the years. The long way that I calculate the depreciation is to tabulate them in rows 8 to 17 and then add them up in row 18.

    What I desire is a formula in cell C20, dependent on Shelf Life in cell C4 and Capex in cell C6. Then populate it to Year 10.

    Any help is greatly apreciated! Thank you!

    Joseph

    Depreciation Computation.png
    Attached Files Attached Files

  2. #2
    Banned User!
    Join Date
    02-06-2020
    Location
    Iowa City, IA, USA
    MS-Off Ver
    2016 - 365 / 2007
    Posts
    2,014

    Re: Depreciation Computation in a Single Row

    Quote Originally Posted by josephteh View Post
    What I desire is a formula in cell C20, dependent on Shelf Life in cell C4 and Capex in cell C6. Then populate it to Year 10.
    ok, but what is the meaning of both of those numbers/terms? shelf life and capex? I assume the shelf life is the usable period of the product? and capex is what? furthermore, do the standards of depreciation methods apply here? e.g....

    => straight line
    => sum of years
    => DDB

  3. #3
    Forum Guru Bo_Ry's Avatar
    Join Date
    09-10-2018
    Location
    Thailand
    MS-Off Ver
    MS 365
    Posts
    7,213

    Re: Depreciation Computation in a Single Row

    Please try at C20

    =SUMPRODUCT($C6:C6,(COLUMN(C6)-COLUMN($C6:C6)<$C$4)/$C$4)
    Attached Files Attached Files

  4. #4
    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
    52,945

    Re: Depreciation Computation in a Single Row

    Not sure how you keep increasing the value every other year?...46, 39, 45, 23, 45 etc?
    And how come dep values drop away after year 5?
    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

  5. #5
    Forum Expert
    Join Date
    01-05-2013
    Location
    Singapore
    MS-Off Ver
    H&B2016 & H&B2021
    Posts
    3,069

    Re: Depreciation Computation in a Single Row

    Quote Originally Posted by vba_php View Post
    ok, but what is the meaning of both of those numbers/terms? shelf life and capex? I assume the shelf life is the usable period of the product? and capex is what? furthermore, do the standards of depreciation methods apply here? e.g....

    => straight line
    => sum of years
    => DDB
    Capex is capital expenditure, which is the purchase of fixed assets. Oh, thanks for pointing out. That's right, the depreciation method is straight line over the usable period of the product.
    Last edited by josephteh; 09-10-2020 at 02:06 AM.

  6. #6
    Forum Expert
    Join Date
    01-05-2013
    Location
    Singapore
    MS-Off Ver
    H&B2016 & H&B2021
    Posts
    3,069

    Re: Depreciation Computation in a Single Row

    Quote Originally Posted by FDibbins View Post
    Not sure how you keep increasing the value every other year?...46, 39, 45, 23, 45 etc?
    And how come dep values drop away after year 5?
    Oh, the figures are random figures, not real figures.

  7. #7
    Forum Expert
    Join Date
    01-05-2013
    Location
    Singapore
    MS-Off Ver
    H&B2016 & H&B2021
    Posts
    3,069

    Re: Depreciation Computation in a Single Row

    Quote Originally Posted by Bo_Ry View Post
    Please try at C20

    =SUMPRODUCT($C6:C6,(COLUMN(C6)-COLUMN($C6:C6)<$C$4)/$C$4)
    Thanks, Bo_Ry! It works perfectly! However, is it possible to do a non-array formula? My projection worksheet is huge and the calculation is real slow.

  8. #8
    Forum Expert
    Join Date
    01-05-2013
    Location
    Singapore
    MS-Off Ver
    H&B2016 & H&B2021
    Posts
    3,069

    Re: Depreciation Computation in a Single Row

    Just realise, the formula works as well without Ctrl-Shift-Enter!

  9. #9
    Forum Guru Bo_Ry's Avatar
    Join Date
    09-10-2018
    Location
    Thailand
    MS-Off Ver
    MS 365
    Posts
    7,213

    Re: Depreciation Computation in a Single Row

    Sumproduct can handle Array calculation without Ctrl+Shift+Enter
    For non Array calculation, please try
    =Sum(C6:index(6:6,max(column()-$c$4,column($c6))))/$c$4

  10. #10
    Forum Expert
    Join Date
    01-05-2013
    Location
    Singapore
    MS-Off Ver
    H&B2016 & H&B2021
    Posts
    3,069

    Re: Depreciation Computation in a Single Row

    Quote Originally Posted by Bo_Ry View Post
    Sumproduct can handle Array calculation without Ctrl+Shift+Enter
    For non Array calculation, please try
    =Sum(C6:index(6:6,max(column()-$c$4,column($c6))))/$c$4
    Thanks, Bo_Ry. The formula seems like not correct. Please see attached file.
    Attached Files Attached Files

  11. #11
    Forum Guru Bo_Ry's Avatar
    Join Date
    09-10-2018
    Location
    Thailand
    MS-Off Ver
    MS 365
    Posts
    7,213

    Re: Depreciation Computation in a Single Row

    Need to plus 1

    =SUM(C6:INDEX(6:6,MAX(COLUMN()-$C$4+1,COLUMN($C6))))/$C$4

  12. #12
    Forum Expert
    Join Date
    01-05-2013
    Location
    Singapore
    MS-Off Ver
    H&B2016 & H&B2021
    Posts
    3,069

    Re: Depreciation Computation in a Single Row

    Thank you Bo-Ry & everyone who responded! Here is Rep for everyone!

  13. #13
    Forum Expert
    Join Date
    01-05-2013
    Location
    Singapore
    MS-Off Ver
    H&B2016 & H&B2021
    Posts
    3,069

    Re: Depreciation Computation in a Single Row

    Is it possible to have other formulas?

  14. #14
    Forum Guru Bo_Ry's Avatar
    Join Date
    09-10-2018
    Location
    Thailand
    MS-Off Ver
    MS 365
    Posts
    7,213

    Re: Depreciation Computation in a Single Row

    Maybe
    =SUM(INDEX($C6:C6,MAX(1,COUNT($C6:C6)-$C$4+1)):C6)/$C$4

    Volatile Offset
    =SUM(OFFSET(C6,,,,-MIN($C$4,COLUMNS($C6:C6))))/$C$4
    Attached Files Attached Files

+ 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. Straight Line Depreciation for Long Term Model of Depreciation
    By fornight in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 03-13-2017, 03:14 PM
  2. Replies: 0
    Last Post: 03-27-2016, 01:32 AM
  3. Computation in the same cell
    By jarr25 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 08-07-2015, 12:14 PM
  4. Philippine Tax Computation
    By kikay in forum Hello..Introduce yourself
    Replies: 2
    Last Post: 10-14-2014, 02:49 AM
  5. [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
  6. Tax computation
    By bfjunio05 in forum Excel General
    Replies: 4
    Last Post: 04-05-2012, 02:44 PM
  7. Tax Computation
    By harishs in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 07-10-2007, 08:07 AM

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