VDB
function VDB(
arg1: number = null,
arg2: number = null,
arg3: number = null,
arg4: number = null,
arg5: number = null,
arg6: number = null,
arg7: boolean = null,
): number | string | boolean
Description
Returns the depreciation of an asset for any period you specify, including partial periods, using the double-declining balance method or some other method you specify.
Parameters
- arg1
number
null Is the initial cost of the asset.
- arg2
number
null Is the salvage value at the end of the life of the asset.
- arg3
number
null Is the number of periods over which the asset is being depreciated (sometimes called the useful life of the asset).
- arg4
number
null Is the starting period for which you want to calculate the depreciation, in the same units as Life.
- arg5
number
null Is the ending period for which you want to calculate the depreciation, in the same units as Life.
- arg6
number
null Is the rate at which the balance declines, 2 (double-declining balance) if omitted.
- arg7
boolean
null Switch to straight-line depreciation when depreciation is greater than the declining balance = FALSE or omitted; do not switch = TRUE.
Returns
number | string | boolean
Try It
var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.VDB(3500, 500, 5, 1, 3, 2, false));