SLN 関数

更新 : 2007 年 11 月

倍精度浮動小数点数型 (Double) の値を返します。定額法を用いて、資産の 1 期あたりの減価償却費を返します。

Function SLN( _
   ByVal Cost As Double, _
   ByVal Salvage As Double, _
   ByVal Life As Double _
) As Double

パラメータ

  • Cost
    必ず指定します。資産を購入した時点での価格を示す倍精度浮動小数点数型 (Double) の値を指定します。

  • Salvage
    必ず指定します。耐用年数が終了した時点での資産の価格を示す倍精度浮動小数点数型 (Double) の値を指定します。

  • Life
    必ず指定します。資産の耐用年数を示す倍精度浮動小数点数型 (Double) の値を指定します。

例外

例外の種類

エラー番号

条件

ArgumentException

5

Life = 0.

非構造化エラー処理を使用する Visual Basic 6.0 アプリケーションをアップグレードする場合は、「エラー番号」列を参照してください(エラー番号を Number プロパティ (Err オブジェクト) と照らし合わせます)。しかし、可能な限り、このエラー処理は Visual Basic の構造化例外処理の概要 で置き換えてください。

解説

減価償却の期間は、引数 Life と同じ単位で表されます。すべての引数には必ず正の値を指定してください。

使用例

次の例は、資産 1 期あたりの減価償却費を定額法を使って SLN 関数で計算します。資産購入時の価格 (InitCost)、耐用年数を経た後での資産の価格 (SalvageVal)、資産の耐用年数 (LifeTime) を指定します。

Dim InitCost, SalvageVal, LifeTime, DepYear As Double
Dim Fmt As String = "###,##0.00"

InitCost = CDbl(InputBox("What's the initial cost of the asset?"))
SalvageVal = CDbl(InputBox("Enter the asset's value at end of its life."))
LifeTime = CDbl(InputBox("What's the asset's useful life in years?"))

' Use the SLN function to calculate the deprecation per year.
Dim SlnDepr As Double = SLN(InitCost, SalvageVal, LifeTime)
Dim msg As String = "The depreciation per year: " & Format(SlnDepr, Fmt)
msg &= vbCrLf & "Year" & vbTab & "Linear" & vbTab & "Doubling" & vbCrLf

' Use the SYD and DDB functions to calculate the deprecation for each year.
For DepYear = 1 To LifeTime
    msg &= DepYear & vbTab & _
        Format(SYD(InitCost, SalvageVal, LifeTime, DepYear), Fmt) & vbTab & _
        Format(DDB(InitCost, SalvageVal, LifeTime, DepYear), Fmt) & vbCrLf
Next
MsgBox(msg)

必要条件

名前空間 : Microsoft.VisualBasic

モジュール : Financial

アセンブリ : Visual Basic ランタイム ライブラリ (Microsoft.VisualBasic.dll)

参照

参照

SYD 関数

DDB 関数

財務処理の概要

ArgumentException