AMORLINC

AMORLINC(cost, date_purchased, first_period, salvage, period, rate [,basis])

Returns the depreciation of an asset in a single period (linear method).

costThe cost of the asset.
date_purchasedThe date the asset was purchased.
first_periodThe date of the end of the first period.
salvageThe salvage value at the end of the life of the asset.
periodThe period to calculate the depreciation.
rateThe rate of depreciation.
basis(Optional) The type of day counting to use.
0 = 30/360 (default, US convention)
1 = Actual/Actual
2 = Actual/360
3 = Actual/365
4 = 30/360 (European convention)

REMARKS
* For an illustrated example refer to the Depreciation page.
* The name of this function comes from the two words amortization (which is depreciation) and linear.
* This function is used with the French accounting system.
* The value of an asset at the end of the depreciation is also known as the salvage value.
* Dates must be entered as text strings within quotation marks or as serial numbers.
* If "cost" < "salvage", then #NUM! is returned.
* If "basis" is left blank, then 0 is used.
* If "basis" is not an integer, it is truncated.
* If "basis" < 0, then #NUM! is returned.
* If "basis" > 4, then #NUM! is returned.
* If an asset is purchased in the middle of an accounting period then the pro-rated depreciation is taken into account.
* You can use the AMORDEGRC function to return the depreciation of an asset in a single period.
* You can use the DB function to return the depreciation of an asset in a single period (declining balance method).
* You can use the DDB function to return the depreciation of an asset in a single period (double-declining balance method).
* You can use the SLN function to return the depreciation of an asset in a single period (straight-line method).
* You can use the SYD function to return the depreciation of an asset in a single period (sum-of-years digits method).
* You can use the VDB function to return the depreciation of an asset in a single period (variable-declining balance method).
* For the Microsoft documentation refer to support.microsoft.com
* For the Google documentation refer to support.google.com

 A
1=AMORLINC(300, "01/01/2003", "31/12/2005", 50, 1, 0.15, 1) = 45
2=AMORLINC(300, "01/01/2003", "31/12/2005", 50, 1, 0.15, 0) = 45
3=AMORLINC(3000, "01/01/2003", "31/12/2005", 50, 1, 0.15, 4) = 450
4=AMORLINC(50000, "01/01/2003", "31/12/2003", 500, 1, 0.15, 1) = 7500
5=AMORLINC(50000, "01/01/2003", "31/12/2003", 500, 2, 0.15, 1) = 7500
6=AMORLINC(50000, "01/01/2003", "31/12/2003", 500, 3, 0.15, 1) = 7500
7=AMORLINC(50000, "01/01/2003", "31/12/2003", 500, 3, 0.15, 0) = 7500
8=AMORLINC(50000, "01/01/2003", "31/12/2003", 500, 3, 0.15) = 7500
9=AMORLINC(100, "01/01/2003", "31/12/2005", 500, 1, 0.15, 1) = #NUM!

1 - What is the depreciation of an asset worth £300.

© 2025 Better Solutions Limited. All Rights Reserved. © 2025 Better Solutions Limited Top