Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value.
Name | Type | Description |
arg1 | number | The number of Bernoulli trials. |
arg2 | number | The probability of success on each trial, a number between 0 and 1 inclusive. |
arg3 | number | The criterion value, a number between 0 and 1 inclusive. |
builder.CreateFile("xlsx"); var oWorksheet = Api.GetActiveSheet(); var oFunction = Api.GetWorksheetFunction(); var ans = oFunction.BINOM_INV(678, 0.1, 0.007); oWorksheet.GetRange("B2").SetValue(ans); builder.SaveFile("xlsx", "BINOM_INV.xlsx"); builder.CloseFile();