MindFusion.Wpf Pack Programmer's Guide
DB

Returns the depreciation allowance of an asset for the specified period using the fixed-declining balance method.

Syntax  Copy Code

DB( Number cost, Number salvage, Integer lifeTime, Number period, [Number month = 12] ) Currency

Parameters

cost
Required. The initial cost of the asset. Must be greater than zero.
salvage
Required. The value at the end of the depreciation. Must be greater than or equal to zero.
lifeTime
Required. The number of periods over which the asset is being depreciated. Must be a positive integer value.
period
Required. The period for which to calculate the depreciation. Must be greater than zero and in the same units as lifeTime.
month
Optional. The number of months in the first year. If omitted, it is assumed to be 12.

Remarks

The fixed-declining balance method computes depreciation at a fixed rate. DB uses the following formulas to calculate depreciation for a period:

For the first period, DB uses this formula:

For the last period, DB uses this formula:

Example

Formula  Copy Code

=DB(1000000,100000,6,1)

See Also

Function Reference
DDB Function
SLN Function