LOGNORM.INV Function

Excel Functions › Statistical

Excel 2010+ Statistical

The Excel LOGNORM.INV function returns the inverse of the lognormal cumulative distribution — given a probability, it returns the x-value at that percentile. It reverses LOGNORM.DIST.


Quick answer:
=LOGNORM.INV(0.039,3.5,1.2) x-value at the 3.9% percentile ≈ 4

Syntax

=LOGNORM.INV(probability, mean, standard_dev)
ArgumentDescription
probabilityRequiredA probability between 0 and 1 (exclusive of the exact endpoints).
meanRequiredThe mean of ln(x) — the average of the natural logarithm of the variable.
standard_devRequiredThe standard deviation of ln(x). Must be greater than 0.

How to use it

LOGNORM.INV answers the percentile question: “below which value does this fraction of the lognormal distribution fall?” It is the exact inverse of LOGNORM.DIST(...,TRUE).

=LOGNORM.INV(0.039,3.5,1.2) // ≈ 4
=LOGNORM.INV(0.5,3.5,1.2) // median = EXP(3.5) ≈ 33.12

The mean and standard_dev describe the distribution of ln(x), so the median always equals EXP(mean). Feed the cumulative output of LOGNORM.DIST back into LOGNORM.INV and you recover the original x.

Probability bounds: the first argument must be strictly between 0 and 1. A value ≤ 0 or ≥ 1 returns #NUM!.

Try it: interactive demo

Live demo

Pick a LOGNORM.INV example to see the formula and its result.

Result:

Practice workbook

📊
Download the free LOGNORM.INV practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

What does LOGNORM.INV return?
The x-value at a given cumulative probability of the lognormal distribution — the percentile. It is the inverse of LOGNORM.DIST with cumulative set to TRUE.
Are mean and standard_dev for x or ln(x)?
For ln(x) — the parameters describe the normal distribution of the natural logarithm of the variable, so the median of x is EXP(mean).
Why does LOGNORM.INV return #NUM!?
The probability argument must be strictly between 0 and 1. A value of 0, 1, or outside that range — or a standard_dev that is zero or negative — returns #NUM!.
How do LOGNORM.INV and LOGNORM.DIST relate?
They are inverses: LOGNORM.DIST(x,mean,sd,TRUE) gives a probability, and feeding that probability into LOGNORM.INV(prob,mean,sd) returns the original x.

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: LOGNORM.DIST · NORM.INV · NORM.DIST · PERCENTILE.INC · EXPON.DIST