JavaScript 中的 AMORDEGRC函数

首页 / JavaScript入门教程 / JavaScript 中的 AMORDEGRC函数

描述

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 &leq; 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!错误值。

    链接:https://www.learnfk.comhttps://www.learnfk.com/javascript/advanced-excel-financial-amordegrc-function.html

    来源:LearnFk无涯教程网

适用性

Excel 2007,Excel 2010,Excel 2013,Excel 2016

Example

AMORDEGRC Function

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

10x程序员工作法 -〔郑晔〕

Spring Boot与Kubernetes云原生微服务实践 -〔杨波〕

系统性能调优必知必会 -〔陶辉〕

微信小程序全栈开发实战 -〔李艺〕

如何看懂一幅画 -〔罗桂霞〕

MySQL 必知必会 -〔朱晓峰〕

Go 语言项目开发实战 -〔孔令飞〕

编程高手必学的内存知识 -〔海纳〕

JavaScript进阶实战课 -〔石川〕

好记忆不如烂笔头。留下您的足迹吧 :)