F.DIST.RT Function

Excel Functions › Statistical

Excel 2010+ Statistical

The Excel F.DIST.RT function returns the right-tailed F probability distribution — the p-value side of an F-test, giving the area to the right of an F statistic.


Quick answer:
=F.DIST.RT(15,6,4) right-tail probability ≈ 0.0103

Syntax

=F.DIST.RT(x, deg_freedom1, deg_freedom2)
ArgumentDescription
xRequiredThe value at which to evaluate the function (the F statistic). Must be ≥ 0.
deg_freedom1RequiredThe numerator degrees of freedom (a positive integer).
deg_freedom2RequiredThe denominator degrees of freedom (a positive integer).

How to use it

F.DIST.RT returns the probability that an F statistic exceeds x — the area in the right tail. This is exactly the p-value reported by a one-tailed F-test for equal variances.

=F.DIST.RT(15,6,4) // right tail ≈ 0.0103
=F.DIST(15,6,4,TRUE) // left tail ≈ 0.9897

Because the two tails partition the whole distribution, F.DIST.RT(x,d1,d2) always equals 1 − F.DIST(x,d1,d2,TRUE). A small right-tail value (here about 1%) means the observed F statistic is large enough to reject the hypothesis of equal variances.

This is the modern replacement for the legacy FDIST function, which had the same right-tailed behavior but a name without the dot.

Tip: To find the critical F value for a chosen significance level (say 5%), pair this with F.INV.RT(0.05, d1, d2) — if your F statistic exceeds that cutoff, the right-tail p-value is below 0.05.

Try it: interactive demo

Live demo

Enter an F value and the two degrees of freedom to build the right-tailed formula.

Right-tail probability computed live in Excel; this demo echoes the formula.

Practice workbook

📊
Download the free F.DIST.RT 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 F.DIST.RT return?
The right-tailed probability of the F distribution — the area to the right of x, i.e. the probability that an F statistic is greater than x. This is the p-value of a one-tailed F-test.
How does F.DIST.RT relate to F.DIST?
They are complements: F.DIST.RT(x,d1,d2) equals 1 − F.DIST(x,d1,d2,TRUE). F.DIST gives the left tail, F.DIST.RT gives the right tail.
Is F.DIST.RT the same as the legacy FDIST?
Yes — both return the right-tailed probability. F.DIST.RT (Excel 2010+) is the modern name; FDIST is kept in the Compatibility category for old workbooks.
How do I interpret a small F.DIST.RT result?
A small right-tail probability (such as 0.01) means the F statistic is unusually large under the null hypothesis of equal variances, so you would reject that hypothesis at the 5% or 1% level.

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