SYD Function [VBA]

Returns the arithmetic-declining depreciation rate.

warning

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


Syntax:


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

Return value:

Double

Parameters:

๋น„์šฉ์€ ์ž์‚ฐ์˜ ์ดˆ๊ธฐ ๋น„์šฉ์ž…๋‹ˆ๋‹ค.

์ž”์กด ๊ฐ€์น˜๋Š” ๊ฐ๊ฐ€์ƒ๊ฐ ์ดํ›„์— ๋‚จ์€ ์ž์‚ฐ์˜ ๊ฐ€์น˜์ž…๋‹ˆ๋‹ค.

๋‚ด๊ตฌ๋…„ํ•œ์€ ์ž์‚ฐ์˜ ๊ฐ๊ฐ€์ƒ๊ฐ์—์„œ ๊ฐ๊ฐ€์ƒ๊ฐํ•  ์ˆ˜ ์žˆ๋Š” ๊ธฐ๊ฐ„์˜ ์ด ํšŸ์ˆ˜๋ฅผ ์˜๋ฏธํ•ฉ๋‹ˆ๋‹ค.

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

Error codes:

5 ์ž˜๋ชป๋œ ํ”„๋กœ์‹œ์ € ํ˜ธ์ถœ์ž…๋‹ˆ๋‹ค.

Example:


REM ***** BASIC *****
Option VBASupport 1
Sub ExampleSYD
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 syd_yr1 As Double
REM Calculate the depreciation during year 1.
syd_yr1 = SYD( 10000, 1000, 5, 1 )
print syd_yr1 ' syd_yr1 is now equal to 3000.
End Sub

Please support us!