When engaging in equipment usage and investment, assessing expenses and calculating asset depreciation upon deployment is crucial. This article provides a comprehensive guide on the DB function - Calculating asset depreciation with specific terms using the declining balance method.
Description: Calculating asset depreciation with specific terms using the declining balance method.
Syntax: DB(cost, salvage, life, period, [month]).
Wherein:
- cost: Initial cost of the asset, a mandatory parameter.
- salvage: Salvage value of the asset or its depreciation value, a mandatory parameter.
- Life: Number of depreciation periods of the asset, also known as the useful life of the asset, a mandatory parameter.
For Period: It signifies the depreciation term to be calculated, a mandatory parameter, and must be in the same lifespan unit.
Concerning Month: The count of months calculated within the initial year, an optional parameter wherein default value is 12 if omitted.
Attention:
In the DB function, the initial and final periods utilize a distinct formula compared to the intermediary ones.
The formula for the initial period is: DB = cost * rate * month / 12.
For the final period, the formula is: DB = (cost - total depreciation of previous periods) * rate * (12 - month) / 12.
Example:
Considering the following dataset:

Calculate:
- Depreciation calculation for the first year of the asset.
- Depreciation calculation for the second year of the asset.
- Depreciation calculation for the asset in the fifth year, spanning 6 months.
- Calculate depreciation for the asset in the first year.
In the cell where you want to compute, input the formula: =DB(D5,D6,D7,1).

Result:

- Compute depreciation for the asset in the second year.
In the cell where you want to compute, input the formula: =DB(D5,D6,D7,2).

Result:

- Calculate depreciation for the asset in the fifth year, spanning 6 months.
In the cell where you want to compute, input the formula: =DB(D5,D6,D7,5,6).

Result:

Observing 3 values over the years reveals a gradual decrease in asset depreciation. Hopefully, this aids in clarifying and implementing rational asset utilization strategies.
Wishing you all success!