COUPDAYBS
function COUPDAYBS(
arg1: any = null,
arg2: any = null,
arg3: any = null,
arg4: any = null,
): number | string | boolean
Description
Returns the number of days from the beginning of the coupon period to the settlement date.
Parameters
- arg1
any
null Is the security's settlement date, expressed as a serial date number.
- arg2
any
null Is the security's maturity date, expressed as a serial date number.
- arg3
any
null Is the number of coupon payments per year.
- arg4
any
null Is the type of day count basis to use.
Returns
number | string | boolean
Try It
var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.COUPDAYBS("1/10/2018", "6/15/2019", 4, 1));