Returns e raised to the power of a given number.
Name | Type | Description |
arg1 | number | Is the exponent applied to the base e. The constant e equals 2.71828182845904, the base of the natural logarithm. |
builder.CreateFile("xlsx"); var oWorksheet = Api.GetActiveSheet(); var oFunction = Api.GetWorksheetFunction(); oWorksheet.GetRange("A1").SetValue(oFunction.EXP(5)); builder.SaveFile("xlsx", "EXP.xlsx"); builder.CloseFile();