The SYD function in Google Sheets is a financial tool used to calculate the depreciation of an asset over a specified period. By employing the sum of years digits method, it provides a more accelerated depreciation schedule, making it particularly useful for assets that lose value quickly in their initial years. This function is essential for accountants, financial analysts, and businesses aiming to manage their asset depreciation accurately.
Syntax
SYD(cost, salvage, life, period)
- cost: The initial cost of the asset.
- salvage: The value of the asset at the end of its useful life.
- life: The total number of periods in which the asset is expected to be used.
- period: The specific period for which the depreciation is being calculated.
Example #1
SYD(10000, 2000, 5, 1)
In this case, the function calculates the first year depreciation of an asset that costs $10,000, has a salvage value of $2,000, and a useful life of 5 years. The result would be $1,600.
Example #2
SYD(15000, 3000, 7, 3)
This function call computes the depreciation for the third year of an asset that costs $15,000, with a salvage value of $3,000 and a lifespan of 7 years. The result might be $2,200.
Example #3
SYD(5000, 500, 10, 5)
Here, the SYD function calculates the depreciation for an asset worth $5,000 with a salvage value of $500 over 10 years, specifically for the fifth year. The resulting value would be $450.
Error handling
- VALUE!: This error occurs if any of the arguments are not numbers.
- NUM!: This error indicates that the “period” argument exceeds the “life” argument.
- DIV/0!: This error happens if the “life” parameter is zero, as division by zero is undefined.