Excel: Calculating Depreciation Using the Production MethodID: Q78388
|
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.
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)
- "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.
"Online Help," version 5.0
"User's Guide," version 3.0, page 567
Additional query words: 2.0 2.00 2.01 2.1 2.10 2.2 2.20 2.21 3.0 4.0 4.0a 4.00a 5.0
Keywords :
Version :
Platform :
Issue type :
Last Reviewed: March 23, 1999