r6zrK‖

ydHGN‖SYD Function [VBA]

MAefZ‖Returns the arithmetic-declining depreciation rate.

warning

R9TFi‖This constant, function or object is enabled with the statement Option VBASupport 1 placed before the executable program code in a module.


FVEx2‖Syntax:


SYD (Cost as Double, Salvage as Double, Life as Double, Period as Double)

GePPP‖Return value:

Double

WADQ4‖Parameters:

3HLSz‖Cost is the initial cost of an asset.

3WD4k‖Salvage is the value of an asset at the end of the depreciation.

Np8vp‖Life is the depreciation period determining the number of periods in the depreciation of the asset.

TkePs‖Period is the period number for which you want to calculate the depreciation.

SEjHR‖Error codes:

5 Invalid procedure call

EFSA4‖Example:


REM ***** BASIC *****
Option VBASupport 1
Sub ExampleSYD
Mcu4F‖REM Calculate the yearly depreciation of an asset that cost $10,000 at
u9ABj‖REM the start of year 1, and has a salvage value of $1,000 after 5 years.
Dim syd_yr1 As Double
898Jk‖REM Calculate the depreciation during year 1.
syd_yr1 = SYD( 10000, 1000, 5, 1 )
2NwmB‖print syd_yr1 ' syd_yr1 is now equal to 3000.
End Sub