EFFECT
function EFFECT(arg1: any = null, arg2: any = null): number | string | boolean
Description
Returns the effective annual interest rate.
Parameters
- arg1
any
null Is the nominal interest rate.
- arg2
any
null Is the number of compounding periods per year.
Returns
number | string | boolean
Try It
var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.EFFECT(0.57, 4));