Financial.SLN(Double, Double, Double) Metodo

Definizione

Restituisce un valore che specifica l'ammortamento costante di un bene per un solo periodo.

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

Parametri

Cost
Double

Obbligatorio. Costo iniziale del bene.

Salvage
Double

Obbligatorio. Valore del bene alla fine della sua vita utile.

Life
Double

Obbligatorio. Durata della vita utile del bene.

Restituisce

Ammortamento costante di un bene per un solo periodo.

Eccezioni

Life = 0.

Esempio

In questo esempio viene usata la SLN funzione per restituire l'ammortamento lineare di un asset per un singolo periodo dato il costo iniziale dell'asset (), il valore di salvataggio alla fine della vita utile dell'asset () e la durata totale dell'asset in anni (LifeTimeInitCostSalvageVal).

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)

Commenti

Il periodo di ammortamento deve essere espresso nella stessa unità dell'argomento Life . Tutti gli argomenti devono essere numeri positivi.

Si applica a

Vedi anche