RADIANS Function

Excel Functions › Math & Trig

All versions Math & Trig

The Excel RADIANS function converts an angle measured in degrees into radians — the conversion you almost always need before feeding an angle to SIN, COS, or TAN, which all expect radians.


Quick answer:
=RADIANS(180) 180 degrees = pi radians (~3.14159)

Syntax

=RADIANS(angle)
ArgumentDescription
angleRequiredThe angle in degrees you want to convert to radians.

How to use it

RADIANS applies radians = degrees × π/180. Because Excel's trig functions all work in radians, RADIANS is the standard wrapper around any degree value:

=RADIANS(180) // = pi, ~3.14159
=RADIANS(90) // = pi/2, ~1.5708
=SIN(RADIANS(30)) // sine of 30 deg = 0.5

Without it, =SIN(30) would be read as 30 radians and give the wrong answer. To convert back, use DEGREES; the two are exact inverses.

Same as ×PI()/180: =RADIANS(45) and =45*PI()/180 give identical results. RADIANS is just the clearer, self-documenting way to write it.

Try it: interactive demo

Live demo

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

Result:

Practice workbook

📊
Download the free RADIANS 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 do I need RADIANS before SIN or COS?
Excel's trig functions expect the angle in radians, not degrees. =SIN(RADIANS(30)) gives 0.5, while =SIN(30) wrongly treats 30 as radians.
How does RADIANS convert the value?
It multiplies the degree value by π/180. So =RADIANS(180) = π (about 3.14159) and =RADIANS(90) = π/2.
Is RADIANS the same as multiplying by PI()/180?
Yes — =RADIANS(45) and =45*PI()/180 return the same number. RADIANS is just clearer to read.
How do I convert radians back to degrees?
Use the DEGREES function, the exact inverse: =DEGREES(RADIANS(45)) returns 45.

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: DEGREES · PI · SIN · COS · TAN · ATAN