LOGINV Function

Excel Functions › Compatibility

All versions (legacy) Compatibility

The Excel LOGINV function returns the inverse of the lognormal cumulative distribution — given a probability, it finds the x value. It is a legacy function; Microsoft replaced it in Excel 2010 with LOGNORM.INV, which takes the same arguments.


Quick answer:
=LOGINV(0.039,3.5,1.2) x for that probability ≈ 4

Syntax

=LOGINV(probability, mean, standard_dev)
ArgumentDescription
probabilityRequiredA probability associated with the lognormal distribution, between 0 and 1.
meanRequiredThe mean of ln(x) — the mean of the underlying normal distribution.
standard_devRequiredThe standard deviation of ln(x) (must be > 0).

How to use it

The lognormal distribution describes a variable whose logarithm is normally distributed — common for prices, incomes, and other strictly positive, right-skewed data. LOGINV inverts its cumulative form: give it a probability and it returns the x at that percentile.

=LOGINV(0.039,3.5,1.2) // x ≈ 4
=LOGINV(0.5,3.5,1.2) // median = e^3.5 ≈ 33.12

LOGINV is the exact reverse of LOGNORMDIST: =LOGINV(LOGNORMDIST(4,3.5,1.2),3.5,1.2) returns 4. The mean and standard_dev describe ln(x), not x itself.

Use LOGNORM.INV in Excel 2010 and later. LOGINV is kept only for backward compatibility. Microsoft recommends LOGNORM.INV, which has the same three arguments.

Try it: interactive demo

Live demo

Pick a LOGINV example to see the formula and its result.

Result:

Practice workbook

📊
Download the free LOGINV 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

Should I use LOGINV or LOGNORM.INV?
Use LOGNORM.INV in Excel 2010 or later — it takes the same probability, mean, standard_dev arguments and is the supported function. LOGINV is kept only for older workbooks.
What do the mean and standard_dev arguments describe?
They describe the natural log of the variable, not the variable itself. mean is the mean of ln(x) and standard_dev is the standard deviation of ln(x).
How does LOGINV relate to LOGNORMDIST?
They are inverses. LOGNORMDIST turns an x into a cumulative probability; LOGINV turns that probability back into x using the same mean and standard deviation.
What is the median of a lognormal distribution?
The median is e^mean — the value returned by =LOGINV(0.5,mean,standard_dev). For mean = 3.5 that is about 33.12.

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.INV · LOGNORMDIST · NORMINV · NORMSINV · EXP