Excel: Calculating Depreciation Using the Production Method

Last reviewed: November 3, 1994
Article ID: Q78388
The information in this article applies to:
  • Microsoft Excel for Windows, versions 2.x, 3.0, 4.0, 5.0
  • Microsoft Excel for OS/2, versions 2.2, 3.0

SUMMARY

Microsoft Excel includes functions to calculate straight line, sum of the years digits, and double-declining balance depreciation (SLN, DDB, SYD). A fourth depreciation method, the production method, is widely used in business to calculate depreciation on items that can produce discrete units. Items such as vehicles and machinery are most often depreciated in this manner. The custom function macro shown below calculates depreciation using this method.

MORE INFORMATION

  1. Enter the following into a macro sheet:

          A1: Prod_Depr
          A2: =Result(1)
          A3: =Argument("usage",1)
          A4: =Argument("cost",1)
          A5: =Argument("residual_value",1)
          A6: =Argument("useful_life",1)
          A7: =usage*((cost-residual_value)/useful_life)
          A8: =Return(A7)
    

  2. Select cell A1. From the Formula menu, choose Define Name. Select the Function option and choose the OK button.

  3. You can use the custom function from your worksheet by choosing Paste Function from the Formula menu. The custom function should be at the bottom of the list of functions. Select it and choose the OK button.

  4. Enter the arguments for the function per the following descriptions:

        - "usage" is the amount of usage, in units, the item has received
          during the depreciation period. This can be measured in miles or
          hours used.
        - "Cost" is the original price paid for the item.
        - "Residual_value" is the estimated salvage or trade-in value.
        - "useful_ life" is the planned usage, in units, of the item during
          its lifetime.
    

Note that it may be easier to enter the formula shown in cell A7 directly into your worksheet if you do not intend to use the function frequently.

Example

Suppose a truck is purchased for $25,000, and has a residual value of $1500. The useful life of the truck is 250,000 miles. During a specific period of operation, the truck is driven for 15,000 miles. Using the above function, the depreciation for that period is $1410.

REFERENCES

"Online Help," version 5.0 "User's Guide," version 3.0, page 567


KBCategory: kbusage
KBSubcategory:

Additional reference words: 2.0 2.00 2.01 2.1 2.10 2.2 2.20 2.21 3.0 3.00
4.0 4.00 4.0a 4.00a 5.0 5.00


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: November 3, 1994
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.