PROB
probability that values fall within limits · from excel · excel: not yet compared · sheets: not yet compared
signature
PROB(x_range, prob_range, lower_limit, [upper_limit])
returns: number
| argument | required |
|---|---|
| x_range | required |
| prob_range | required |
| lower_limit | required |
| upper_limit | optional |
examples
formula and result, taken from the engine's own test suite — every result below is asserted in CI, not written by hand.
| P | Q | |
|---|---|---|
| 1 | 1 | 0.1 |
| 2 | 2 | 0.2 |
| 3 | 3 | 0.3 |
| 4 | 4 | 0.4 |
fx
=PROB(P1:P4, Q1:Q4, 2, 3) 0.5 errors
error values observed from the engine — each with a call that produces it.
| error | produced by |
|---|---|
| #NUM! | =PROB(A1:A3, A1:A3, 2) |
related
- AVEDEV average of absolute deviations from the mean
- AVERAGE.WEIGHTED average of values weighted by a second range
- AVERAGEA averages values including text and logicals
- AVERAGEIF averages cells that match a condition
- AVERAGEIFS averages cells matching multiple conditions
- BETA.DIST beta distribution