Syntax
| Parameter | Description |
|---|---|
| x | Parameter of the LOGNORM.DIST function. |
| mean | Parameter of the LOGNORM.DIST function. |
| standard_dev | Parameter of the LOGNORM.DIST function. |
| cumulative | Parameter of the LOGNORM.DIST function. |
Examples
Probability stock stays below $150
=LOGNORM.DIST(150, LN(100), 0.3, TRUE)
PDF at a specific point
=LOGNORM.DIST(4, 3.5, 1.2, FALSE)
Probability of home price below $400K
=LOGNORM.DIST(400000, LN(300000), 0.4, TRUE)
Common Errors
x must be greater than 0 (lognormal is undefined for zero or negative values), and standard_dev must be positive.
Occurs if any argument is non-numeric.
Tips
The mean and standard_dev arguments refer to the parameters of the underlying normal distribution (i.e., ln(x)), not the raw data. Use LN() of your data's geometric mean.
Set cumulative to TRUE when you want 'probability of being at or below x'. Use FALSE only when you need the density function value.
Lognormal is ideal for data that clusters near zero but has a long right tail, like income distributions, insurance claims, or time-to-failure.
Try LOGNORM.DIST in Viztab
Import your data and use LOGNORM.DIST with 370+ other formulas. No signup required.
Open Viztab