Bagikan melalui


Financial.SLN(Double, Double, Double) Metode

Definisi

Mengembalikan nilai yang menentukan depresiasi garis lurus aset untuk satu periode.

public:
 static double SLN(double Cost, double Salvage, double Life);
public static double SLN (double Cost, double Salvage, double Life);
static member SLN : double * double * double -> double
Public Function SLN (Cost As Double, Salvage As Double, Life As Double) As Double

Parameter

Cost
Double

Wajib diisi. Biaya awal aset.

Salvage
Double

Wajib diisi. Nilai aset pada akhir masa pakainya yang berguna.

Life
Double

Wajib diisi. Panjang masa pakai aset yang berguna.

Mengembalikan

Depresiasi garis lurus aset untuk satu periode.

Pengecualian

Life = 0.

Contoh

Contoh ini menggunakan SLN fungsi untuk mengembalikan depresiasi garis lurus aset untuk satu periode mengingat biaya awal aset (InitCost), nilai penyelamatan pada akhir masa pakai aset yang berguna (SalvageVal), dan total masa pakai aset dalam tahun (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)

Keterangan

Periode depresiasi harus dinyatakan dalam unit yang sama dengan Life argumen . Semua argumen harus berupa angka positif.

Berlaku untuk

Lihat juga