IFinance.AmorLinC

Syntax

AmorLinC(Cost: Double; PurchaseDate: DateTime; FirstPeriodEnd: DateTime; Salvage: Double; Period: Integer; Rate: Double; [Basis: Integer = 0]): Double;

Parameters

Cost. Cost for acquiring an asset. Must be positive.

PurchaseDate. Date of acquiring an asset. Must be less than FirstPeriodEnd.

FirstPeriodEnd. End date of the first period. Must be greater than PurchaseDate.

Salvage. The salvage value at the end of the life of the asset. Must belong to the [0;Cost] interval.

Period. Depreciation period. Must be positive.

Rate. Depreciation interest rate. Must be positive.

Basis. The day calculation method used. Select a value from 0 to 4:

Optional parameter.

Description

The AmorLinC method returns the size of depreciation for each period.

Comments

This method is used with the French accounting system.

If an asset is acquired in the middle of an accounting period, proportionally distributed depreciation is used.

To get depreciation value for each period considering depreciation coefficient, use the IFinance.AmorDegrC method.

Example

Add a link to the MathFin system assembly.

Sub UserProc;
Var
    r: Double;
Begin
    r:= Finance.AmorLinC(2000, DateTime.ComposeDay(2008,01,01),
        DateTime.ComposeDay(2008,08,01), 20010.153);

    Debug.WriteLine(r);
End Sub UserProc;

After executing the example the console window displays the depreciation value equal to 300.

See also:

IFinance