Returns the depreciation of an asset for a specified period using the double-declining balance method or some other specified rate.
Diese Funktion funktioniert in Google Sheets genauso wie in Excel — gleiche Syntax und Argumente.
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)Ergebnis: 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.