Skip to content
Google Sheets

ATANH function in Google Sheets

Returns the inverse hyperbolic tangent of a number.

=ATANH(value)

ATANH syntax and parameters

One argument, one required.

  • valuenumberRequired

    The value for which to calculate the inverse hyperbolic tangent. Must be between -1 and 1, exclusive.

ATANH examples

Formulas you'll actually reuse.

  1. Inverse hyperbolic tangent — the input must be strictly between −1 and 1:

    =ATANH(B2)

    Result0.5493

  2. Twice ATANH gives LN((1+x)/(1−x)) — handy in correlation statistics:

    =ATANH(B2) * 2

    Result1.0986

ATANH in Excel

Same name — your formula ports as-is.

Try ATANH in the playground

Edit the example — nothing to install.

Preloaded with the ATANH formula from Example 1 — change anything and watch it respond.

Loading the editor…

ATANH errors

What they mean — and the fixes.

  • #NUM!

    The number is −1, 1, or outside that range — ATANH needs |x| < 1.