Returns the sum-of-years'-digits depreciation of an asset for the specified period.
Syntax
Copy Code
|
|---|
SYD( Number cost, Number salvage, Number life, Number period ) → Currency |
SYD is calculated as follows: SYD = (cost - salvage) * (life - per + 1) * 2 / (life * (life + 1)).
If life is zero, the function returns the #DIV/0! error value. If life is less than zero or period is greater than life, the return is #NUM!.
Formula
Copy Code
|
|---|
=SYD(10000,1500,10,1) |