ASIN Function

Excel Functions › Math & Trig

All versions Math & Trig

The Excel ASIN function returns the arcsine (inverse sine) of a number — the angle whose sine is that value. The result is in radians, so wrap it in DEGREES to read it as degrees.


Quick answer:
=DEGREES(ASIN(1)) angle whose sine is 1 = 90 degrees

Syntax

=ASIN(number)
ArgumentDescription
numberRequiredThe sine value, which must be between -1 and 1. ASIN returns the angle in radians, from -π/2 to π/2.

How to use it

ASIN is the inverse of SIN: give it a sine value and it hands back the angle. That angle comes out in radians, so wrap it in DEGREES() when you want degrees:

=ASIN(1) // pi/2 radians = 1.5708
=DEGREES(ASIN(1)) // = 90 degrees
=DEGREES(ASIN(0.5)) // = 30 degrees

The input must lie between -1 and 1 — the full range of the sine function. Feed ASIN a value outside that range and it returns #NUM!. The returned angle always falls between -π/2 and π/2 (−90 to 90 degrees).

Reading the answer in degrees: ASIN always answers in radians. Wrap the whole call in DEGREES() — for example =DEGREES(ASIN(0.5)) returns a clean 30.

Try it: interactive demo

Live demo

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

Result:

Practice workbook

📊
Download the free ASIN 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

Why does ASIN return 1.5708 instead of 90?
ASIN returns the angle in radians, and 1.5708 is π/2 radians. Wrap it in DEGREES — =DEGREES(ASIN(1)) — to get 90.
What input range does ASIN accept?
The argument must be between -1 and 1 inclusive, because that is the full range of sine. A value outside that range returns #NUM!.
What is the difference between ASIN and ASINH?
ASIN is the inverse of the circular sine (angles); ASINH is the inverse of the hyperbolic sine, which accepts any real number.
How do I get an angle in degrees from a sine value?
Wrap ASIN in DEGREES: =DEGREES(ASIN(value)). For instance =DEGREES(ASIN(0.5)) returns 30.

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: SIN · ACOS · ATAN · DEGREES · RADIANS · ASINH