描述
AMORDEGRC函数返回每个会计期间的折旧。此功能是为法国会计系统提供的。如果在会计期间的中间购买资产,则会考虑按比Example折旧。
该功能类似于AMORLINC,不同之处在于,根据资产的寿命在计算中使用了折旧系数。
语法
AMORDEGRC (cost, date_purchased, first_period, salvage, period, rate, [basis])
争论
Argument | 描述 | Required/Optional |
---|---|---|
Cost | The cost of the asset. | Required |
Date_purchased | The date of the purchase of the asset. | Required |
First_period | The date of the end of the first period. | Required |
Salvage | The salvage value at the end of the life of the asset. | Required |
Period | The period. | Required |
Rate | The rate of depreciation. | Required |
Basis | 要使用的年份基准。 Look at the 基础表 given below. | Optional |
基础表
基础 | 日期系统 |
---|---|
0或省略 | 360天(NASD方法) |
1 | 实际 |
3 | 365天 |
4 | 一年360天(欧洲方式) |
Notes
应该使用DATE函数或其他公式或函数的输出输入日期。如,在2008年5月的23 rd 日使用DATE(2008,5,23)。如果将日期作为文本输入,则可能会出现问题。
Microsoft Excel将日期存储为连续的序列号,因此可以在计算中使用它们。默认情况下,1900年1月1日为序列号1,而2008年1月1日为序列号39448,因为它是1900年1月1日之后的39,448天。
此函数将返回折旧,直到资产寿命的最后一个期间,或者直到折旧的累计值大于资产成本减去残值为止。
The depreciation coefficients are given in the 折旧系数表 below.
在最后一个期间之前的期间内,折旧率将增加到50%,在最后一个期间将增加到100%。
如果资产寿命在0(零)和1、1、2、2和3或4和5之间,则AMORDEGRC返回#NUM!错误值。
折旧系数表
资产寿命(1 /比率) | 折旧系数 |
---|---|
3至4年之间 | 1.5 |
5至6年之间 | 2 |
超过6年 | 2.5 |
If the date_purchased is > first_period, AMORDEGRC returns #NUM! error value.
If salvage > cost, AMORDEGRC returns #NUM! error value.
If Invalid numbers are supplied for the salvage, period, rate or [basis] arguments (i.e. if either: salvage < 0, period < 0, rate ≤ 0, or [basis] is any number other than 0, 1, 2, 3 or 4), AMORDEGRC returns #NUM! error value.
如果date_purchased或first_period不是有效的Excel日期,则AMORDEGRC返回#VALUE!错误值。
如果任何指定的参数都是非数值的,则AMORDEGRC返回#VALUE!错误值。
适用性
Excel 2007,Excel 2010,Excel 2013,Excel 2016
Example
JavaScript 中的 AMORDEGRC函数 - 无涯教程网无涯教程网提供描述AMORDEGRC函数返回每个会计期间的折旧。此功能是为法国会计系统提供的。如果在会...https://www.learnfk.com/javascript/advanced-excel-financial-amordegrc-function.html