无涯教程-JavaScript - DB函数

描述

DB函数使用固定余额递减法返回指定期间内资产的折旧。

语法

DB (cost, salvage, life, period, [month])

争论

Argument 描述 Required/Optional
Cost The initial cost of the asset. Required
Salvage The value at the end of the depreciation (sometimes called the salvage value of the asset). Required
Life The number of periods over which the asset is being depreciated (sometimes called the useful life of the asset). Required
Period

您要计算折旧的期间。

期间必须使用与生命相同的单位。

Required
Month

第一年的月数。

如果省略month,则假定为12。

Optional

Notes

  • 固定递减余额法以固定比率计算折旧。 DB使用以下公式计算期间的折旧-

    (成本-上一期间的总折旧)*费率

    哪里,

    费率= 1-((残废率/成本)^(1 /寿命)),四舍五入到小数点后三位

  • 第一个和最后一个期间的折旧是一种特殊情况。

  • 在第一阶段,DB使用此公式-

    费用*费率*月/12

  • 在最后一个期间,DB使用此公式-

    ((成本-上一期间的总折旧)*费率 * (12 - month))/12

  • If the specified cost or the specified salvage argument is < 0, DB returns #NUM! error value.

  • 如果指定寿命或指定周期参数≤0,则DB返回#NUM!。错误值。

  • If the specified month argument is ≤ 0 or is > 12, DB returns #NUM! error value.

  • If the specified period > life and the month argument is omitted, DB returns #NUM! error value.

  • If the specified period > life+1, DB returns #NUM! error value.

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

适用性

Excel 2007,Excel 2010,Excel 2013,Excel 2016

Example

无涯教程-JavaScript - DB函数_第1张图片

JavaScript 中的 DB函数 - 无涯教程网无涯教程网提供描述DB函数使用固定余额递减法返回指定期间内资产的折旧。 语法 DB (cost, salvage, l...https://www.learnfk.com/javascript/advanced-excel-financial-db-function.html

你可能感兴趣的:(无涯教程,javascript)