Returns the error function.
Name | Type | Description |
arg1 | any | Is the lower bound for integrating ERF. |
arg2 | any | Is the upper bound for integrating ERF. |
builder.CreateFile("xlsx"); var oWorksheet = Api.GetActiveSheet(); var oFunction = Api.GetWorksheetFunction(); oWorksheet.GetRange("A1").SetValue(oFunction.ERF(-2)); builder.SaveFile("xlsx", "ERF.xlsx"); builder.CloseFile();