CHISQ.INV Function

Excel Functions › Statistical

Excel 2010+ Statistical

The Excel CHISQ.INV function returns the inverse of the left-tailed chi-square distribution — the value below which a given cumulative probability falls, for a stated number of degrees of freedom.


Quick answer:
=CHISQ.INV(0.93,1) ~3.283 (left-tail probability 0.93, 1 df)

Syntax

=CHISQ.INV(probability, deg_freedom)
ArgumentDescription
probabilityRequiredA probability between 0 and 1 (the cumulative, left-tail area).
deg_freedomRequiredThe number of degrees of freedom (a positive integer; decimals are truncated).

How to use it

CHISQ.INV answers the question “what chi-square value has this much area to its left?” It is the inverse of CHISQ.DIST(x, df, TRUE).

=CHISQ.INV(0.93, 1) // ~3.283
=CHISQ.INV(0.95, 5) // ~11.07

For critical values in a standard hypothesis test you usually want the right tail instead — that is what CHISQ.INV.RT gives. The two are mirror images: CHISQ.INV(0.95, df) equals CHISQ.INV.RT(0.05, df).

Left vs. right: CHISQ.INV takes the cumulative (left-tail) probability, while CHISQ.INV.RT takes the upper-tail probability (the significance level). Pick the one that matches how your textbook states the problem.

Try it: interactive demo

Live demo

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

Result:

Practice workbook

📊
Download the free CHISQ.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 is the difference between CHISQ.INV and CHISQ.INV.RT?
CHISQ.INV uses the cumulative (left-tail) probability, while CHISQ.INV.RT uses the right-tail (upper) probability. They are complements: CHISQ.INV(0.95, df) = CHISQ.INV.RT(0.05, df).
How is CHISQ.INV related to CHISQ.DIST?
It is the exact inverse of the cumulative form: if CHISQ.DIST(x, df, TRUE) = p, then CHISQ.INV(p, df) = x.
Does CHISQ.INV replace the old CHIINV function?
CHIINV is the legacy function and corresponds to the right tail, so its modern equivalent is CHISQ.INV.RT, not CHISQ.INV. CHISQ.INV (left tail) has no pre-2010 twin.
What probability values are valid?
The probability must be from 0 up to (but not including) 1, and degrees of freedom must be at least 1. Out-of-range inputs return an error.

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: CHISQ.INV.RT · CHISQ.TEST · CHISQ.DIST · F.INV · T.INV · NORM.INV