Returns the depreciation of an asset for a specified period using the double-declining balance method or some other specified rate.
이 함수는 Google Sheets에서도 Excel과 동일하게 작동합니다 — 구문과 인수가 같습니다.
DDB(cost, salvage, life, period, [factor])The DDB function calculates depreciation at an accelerated rate, where depreciation is highest in the first period and decreases in subsequent periods. The rate of depreciation is calculated as (factor / life), and the function automatically adjusts to the straight-line method when depreciation is greater than the declining balance calculation.
=DDB(10000, 1000, 10, 1)결과: 2000
Calculates the first-year depreciation for a $10,000 asset with a $1,000 salvage value over 10 years.
If the factor is omitted, Excel assumes a value of 2, which performs a double-declining balance calculation.
No, the period must be an integer and must be expressed in the same units as the life argument.