LOGNORM.DIST

LOGNORM.DIST(x, mean, standard_dev, cumulative)

Returns the probability distribution function OR the cumulative probability function for a lognormal distribution.

xThe value at which to evaluate the function.
meanThe arithmetic mean of the distribution.
standard_devThe standard deviation of the distribution.
cumulativeA logical value indicating the type of function to use:
False (or 0) = individual probability (equal to)
True (<> 0) = cumulative probability (equal to or less than)

REMARKS
* For an illustrated example refer to the page under Distributions
* The lognormal distribution is a continuous distribution
* If "cumulative" = False, then the height of the curve at "x" is returned.
* If "cumulative" = True, then the area under the curve to the left of "x" is returned.
* This function was added in Excel 2010 to replace the LOGNORMDIST function and include an option for probability distribution.
* For the Microsoft documentation refer to support.microsoft.com

 A
1=LOGNORM.DIST(0.029084, 3.5, 1.2, TRUE ) = 0
2=LOGNORM.DIST(5, 2, 1, TRUE) = 0.348


© 2025 Better Solutions Limited. All Rights Reserved. © 2025 Better Solutions Limited Top