TRY NEW VERSION

NOMINAL

NOMINAL(arg1, arg2) → { number | string | boolean }

Returns the annual nominal interest rate.

Parameters:

Name Type Description
arg1 any

Is the effective interest rate.

arg2 any

Is the number of compounding periods per year.

Returns:

Type
number | string | boolean

Example

Copy code
builder.CreateFile("xlsx");
var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.NOMINAL(0.7, 4));
builder.SaveFile("xlsx", "NOMINAL.xlsx");
builder.CloseFile();

Resulting document