CHISQ.DIST Function

Excel Functions › Statistical

Excel 2010+ Statistical

The Excel CHISQ.DIST function returns the left-tailed chi-squared distribution — the cumulative probability or density for a chi-squared value with a given number of degrees of freedom.


Quick answer:
=CHISQ.DIST(3,2,TRUE) left-tail cumulative ≈ 0.7769

Syntax

=CHISQ.DIST(x, deg_freedom, cumulative)
ArgumentDescription
xRequiredThe value at which to evaluate the distribution (x ≥ 0).
deg_freedomRequiredThe number of degrees of freedom (a positive integer).
cumulativeRequiredTRUE for the cumulative distribution (left tail); FALSE for the probability density.

How to use it

CHISQ.DIST evaluates the chi-squared distribution at x for the stated deg_freedom. With cumulative = TRUE you get the area to the left of x; with FALSE you get the density curve's height.

=CHISQ.DIST(3,2,TRUE) // left-tail area ≈ 0.7769
=CHISQ.DIST(3,2,FALSE) // density ≈ 0.1116

The chi-squared distribution underpins goodness-of-fit and independence tests. CHISQ.DIST gives the left tail; for the right-tail probability (the usual p-value), use CHISQ.DIST.RT.

Left vs right tail: CHISQ.DIST(x,df,TRUE) and CHISQ.DIST.RT(x,df) always add to 1, since one is the area below x and the other the area above it.

Try it: interactive demo

Live demo

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

Result:

Practice workbook

📊
Download the free CHISQ.DIST 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

Does CHISQ.DIST give the left or right tail?
The left tail — with cumulative TRUE it returns the probability that the variable is at or below x. For the right-tail p-value use CHISQ.DIST.RT.
What does cumulative FALSE return?
The probability density (the height of the chi-squared curve) at x, rather than an accumulated probability.
What are degrees of freedom?
A positive integer that sets the shape of the distribution — in a goodness-of-fit test it is usually the number of categories minus one. Higher df shifts the curve right.
How is CHISQ.DIST different from the old CHIDIST?
The legacy CHIDIST returned the right tail. The modern CHISQ.DIST returns the left tail (and adds a density option); its right-tail twin is CHISQ.DIST.RT.

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