TDIST Function

Excel Functions › Compatibility

All versions (legacy) Compatibility

The Excel TDIST function returns the probability for the Student's t–distribution (right or two–tailed). It is a legacy name — Microsoft now recommends T.DIST.2T and T.DIST.RT.


Quick answer:
=TDIST(2,10,2) two-tailed probability at t=2, 10 df ≈ 0.0734

Syntax

=TDIST(x, deg_freedom, tails)
ArgumentDescription
xRequiredThe t–value at which to evaluate the distribution. Must be ≥ 0.
deg_freedomRequiredThe degrees of freedom (a positive integer).
tailsRequired1 = one-tailed (right) probability; 2 = two-tailed probability.

How to use it

TDIST gives the area in the tail(s) of the t–distribution beyond x. The tails argument picks one tail (right) or both.

=TDIST(2,10,2) // two-tailed ≈ 0.0734
=TDIST(2,10,1) // one-tailed (right) ≈ 0.0367

The two-tailed result is exactly twice the one-tailed result. Note that x must be non-negative — TDIST does not accept negative t–values (the modern functions do).

Use the modern names: T.DIST.2T(x, df) replaces the two-tailed form and T.DIST.RT(x, df) replaces the one-tailed (right) form. There is also T.DIST for the left-tail / density.

Try it: interactive demo

Live demo

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

Result:

Practice workbook

📊
Download the free TDIST 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 modern function replaces TDIST?
Two functions: T.DIST.2T(x, df) for the two-tailed probability and T.DIST.RT(x, df) for the one-tailed (right) probability. TDIST's tails argument chose between them.
Why does TDIST reject negative x?
TDIST requires x ≥ 0 by design. For negative t–values use the symmetric relationship, or switch to the modern T.DIST family, which accepts negatives.
How are one-tailed and two-tailed related?
For the same x and degrees of freedom, the two-tailed probability is exactly twice the one-tailed (right) probability.
Should I switch to the T.DIST functions?
For new work, yes — they are the supported names, accept negative x, and separate the tail choices clearly. Existing TDIST formulas keep working.

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: T.DIST.2T · T.DIST.RT · T.DIST · TINV · T.INV.2T