FISHER Function

Excel Functions › Statistical

All versions Statistical

The Excel FISHER function returns the Fisher transformation of a correlation coefficient — turning a skewed correlation into an approximately normal value so you can build confidence intervals and test correlations.


Quick answer:
=FISHER(0.75) Fisher z ≈ 0.9730

Syntax

=FISHER(x)
ArgumentDescription
xRequiredA value to transform, strictly between −1 and 1 (typically a correlation coefficient).

How to use it

FISHER applies the transformation z = ½ · ln((1+x)/(1−x)), also written as ATANH(x). Sample correlation coefficients have a skewed, bounded distribution; the Fisher transform stretches them into a roughly normal scale where standard z-based methods apply.

=FISHER(0.75) // ≈ 0.9730
=FISHERINV(0.9730) // back to ≈ 0.75

The usual workflow is: transform your correlation with FISHER, build a confidence interval on the transformed (normal) scale using its standard error, then convert the interval endpoints back to correlations with FISHERINV.

Note: x must be strictly inside −1 to 1. At exactly ±1 the transform is infinite and FISHER returns the #NUM! error.

Try it: interactive demo

Live demo

Enter a correlation between -1 and 1 to see its Fisher transformation.

Result:

Practice workbook

📊
Download the free FISHER 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 Fisher transformation used for?
It converts a correlation coefficient, which has a skewed bounded distribution, into an approximately normal value. That lets you apply standard normal methods — confidence intervals and z-tests — to correlations.
How do I reverse a FISHER result?
Use FISHERINV, which applies the inverse transform. FISHERINV(FISHER(x)) returns the original x, so the round trip is exact.
What inputs are valid for FISHER?
x must be strictly between −1 and 1. Values of exactly −1 or 1 (or outside that range) produce the #NUM! error because the transform is infinite there.
Is FISHER the same as ATANH?
Yes — the Fisher transformation is mathematically identical to the inverse hyperbolic tangent, so =FISHER(0.75) and =ATANH(0.75) return the same value.

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: FISHERINV · CORREL · PEARSON · ATANH · RSQ