SLN рдкреНрд░рдХрд╛рд░реНрдп [VBA]

Returns the straight-line depreciation of an asset for one period. The amount of the depreciation is constant during the depreciation period.

warning

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


Syntax:


SLN (Cost as Double, Salvage as Double, Life as Double)

Return value:

Double

Parameters:

рд▓рд╛рдЧрдд рдПрдЙрдЯрд╛ рд╕рдореНрдкрддреНрддрд┐рдХреЛ рд╕реБрд░реБрдЖрдд рд▓рд╛рдЧрдд рд╣реЛ ред

рдмрдЪреЗрдХреЛ рд╣реНрд░рд╛рд╕ рдХрдЯреНрдЯреАрдХреЛ рдЕрдиреНрддреНрдпрдХреЛ рдмрдЪреЗрдХреЛ рдореВрд▓реНрдп рд╣реЛ ред

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

рддреНрд░реБрдЯрд┐ рд╕рдЩреНрдХреЗрддрд╣рд░реВ

5 рдЕрд╡реИрдз рдХрд╛рд░реНрдп-рд╡рд┐рдзрд┐ рдХрд▓

Example:


REM ***** BASIC *****
Option VBASupport 1
Sub ExampleSLN
REM Calculate the yearly depreciation of an asset that cost $10,000 at
REM the start of year 1, and has a salvage value of $1,000 after 5 years.
Dim y_dep As Double
y_dep = SLN( 10000, 1000, 6 )
print y_dep ' returns 1500.
End Sub