FISHERINV Function

Excel Functions › Statistical

All versions Statistical

The Excel FISHERINV function returns the inverse of the Fisher transformation — converting a transformed z value back into a correlation coefficient between −1 and 1.


Quick answer:
=FISHERINV(0.9730) back to correlation ≈ 0.75

Syntax

=FISHERINV(y)
ArgumentDescription
yRequiredThe value (a Fisher-transformed z score) for which you want the inverse transformation.

How to use it

FISHERINV reverses FISHER, applying x = (e^(2y) − 1) / (e^(2y) + 1) — the same as TANH(y). It maps any real number back into the −1 to 1 correlation range.

=FISHERINV(0.9730) // ≈ 0.75
=FISHERINV(FISHER(0.6)) // exact round trip = 0.6

This is the closing step when working with correlation confidence intervals: after building an interval on the Fisher-transformed (normal) scale, FISHERINV converts the lower and upper endpoints back into correlation coefficients you can report.

Tip: Because the inverse maps all real inputs into (−1, 1), FISHERINV never errors on range — even very large y values just approach ±1.

Try it: interactive demo

Live demo

Enter a Fisher-transformed value to convert it back to a correlation.

Result:

Practice workbook

📊
Download the free FISHERINV 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 FISHERINV do?
It applies the inverse Fisher transformation, converting a transformed z value back into a correlation coefficient in the range −1 to 1. It undoes what FISHER does.
Is FISHERINV(FISHER(x)) exactly x?
Yes, up to floating-point precision. The two functions are exact inverses, so transforming a value and then inverting it returns the original number.
Can FISHERINV return an error?
Not on the range of valid numbers: it maps every real input into (−1, 1), so large positive or negative y values just approach +1 or −1. A non-numeric argument returns #VALUE!.
Is FISHERINV the same as TANH?
Yes — the inverse Fisher transform is mathematically the hyperbolic tangent, so =FISHERINV(0.9730) equals =TANH(0.9730).

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: FISHER · CORREL · PEARSON · TANH · RSQ