AmorLinC(Cost: Double; PurchaseDate: DateTime; FirstPeriodEnd: DateTime; Salvage: Double; Period: Integer; Rate: Double; [Basis: Integer = 0]): Double;
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:
0. Day calculation method - American/360 days (NSAD method). Default value.
1. Day calculation method - Actual/actual.
2. Day calculation method - Actual/360 days.
3. Day calculation method - Actual/365 days.
4. Day calculation method - European 30/360 days.
Optional parameter.
The AmorLinC method returns the size of depreciation for each period.
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.
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), 200, 1, 0.15, 3);
Debug.WriteLine(r);
End Sub UserProc;
After executing the example the console window displays the depreciation value equal to 300.
See also: