+ Reply to Thread
Results 1 to 3 of 3

Hardware Depreciation

Hybrid View

  1. #1
    Registered User
    Join Date
    07-06-2007
    Posts
    6

    Hardware Depreciation

    Hello

    I am creating an asset register and would like a column to display the current value of a piece of hardware where the purchase date and purchase value are both known.
    Assuming the lifecyle period would need to be known this would be 3 years, at which point the item would be rated at zero value.
    Which function should be used to give the desired results?

    Cheers

  2. #2
    Forum Expert
    Join Date
    03-23-2004
    Location
    London, England
    MS-Off Ver
    Excel 2019
    Posts
    7,082

    Re: Hardware Depreciation

    This is more of a maths question than a specific Excel function.

    "Assuming the lifecycle period...would be 3 years"
    Based on that the result doesn't need to be specific, an approximation would suffice.
    So 3 years = 365 * 3 = 1095 days.

    The calculation would be:

    (1095 - (Today - purchase date)) * 100% * value of hardware

    so

    (1095 - (TODAY() - PURCHASEDATE)) * 100% * PURCHASEVALUE

    This will produce 100% of purchase price assuming bought today and 0% when purchase date is 3 years old.
    Beyond 3 years the result will be negative so you may want to modify this to

    IF(1095 - (TODAY() - PURCHASEDATE) < 0,0,1095 - (TODAY() - PURCHASEDATE)) * 100% * PURCHASEVALUE
    Last edited by Special-K; 03-05-2012 at 09:17 AM.
    Regards
    Special-K

    Ensure you describe your problem clearly, I have little time available to solve these problems and do not appreciate numerous changes to them.

  3. #3
    Registered User
    Join Date
    07-06-2007
    Posts
    6

    Re: Hardware Depreciation

    Thanks for the quick reply.

    The above offers a bespoke solution. Is there not a function that would give an industry recognised result?

    Regards

+ 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