Skip to content


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

DB(cost,salvage,life,period,month) 使用固定余额递减法计算一笔资产在给定期间内的折旧值

Cost    为资产原值。

Salvage    为资产在折旧期末的价值(也称为资产残值)。

Life    为折旧期限(有时也称作资产的使用寿命)。

Period    为需要计算折旧值的期间。Period 必须使用与 life 相同的单位。

Month    为第一年的月份数,如省略,则假设为 12。

说明

  • 固定余额递减法用于计算固定利率下的资产折旧值,函数 DB 使用下列计算公式来计算一个期间的折旧值:

    (cost – 前期折旧总值 ) * rate

    式中:

    rate = 1 – ((salvage / cost) ^ (1 / life)),保留 3 位小数

  • 第一个周期和最后一个周期的折旧属于特例。对于第一个周期,函数 DB 的计算公式为:

    cost * rate * month / 12

  • 对于最后一个周期,函数 DB 的计算公式为:

    ((cost – 前期折旧总值) * rate * (12 – month)) / 12

Posted in EXCEL. Tagged with , .

0 Responses

Stay in touch with the conversation, subscribe to the RSS feed for comments on this post.

Some HTML is OK

(required)

(required, but never shared)

or, reply to this post via trackback.