无涯教程-JavaScript - AMORLINC函数

52 阅读2分钟

描述

AMORLINC函数返回每个会计期间的折旧。此功能是为法国会计系统提供的。如果在会计期间的中间购买资产,则会考虑按比Example折旧。

语法

AMORLINC (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 年基表 below.

Optional

年基表

一年
基础 日期系统
0或省略 360天(NASD方法)
1 实际
3 365天
4 一年360天(欧洲方式)

Notes

  • 应该使用DATE函数或其他公式或函数的输出输入日期。如,在2008年5月23日使用DATE(2008,5,23)。如果将日期作为文本输入,则可能会出现问题。

  • Microsoft Excel将日期存储为连续的序列号,因此可以在计算中使用它们。默认情况下,1900年1月1日为序列号1,而2008年1月1日为序列号39448,因为它是1900年1月1日之后的39,448天。

  • If the date_purchased is > first_period, AMORLINC returns #NUM! error value.

  • If salvage > cost, AMORLINC 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), AMORLINC returns #NUM! error value.

  • 如果date_purchased或first_period不是有效的Excel日期,则AMORLINC返回#VALUE!错误值。

  • 如果任何指定的参数都是非数值的,则AMORLINC返回#VALUE!。错误值。

适用性

Excel 2007,Excel 2010,Excel 2013,Excel 2016

Example

AMORLINC Function

参考链接

www.learnfk.com/javascript/…