DEV Community

Cover image for How Can You Convert an Angle Between Degrees and Radians in Excel?
Vigneshwaran Vijayakumar for Excel24x7

Posted on • Originally published at excel24x7.com

How Can You Convert an Angle Between Degrees and Radians in Excel?

Before starting the tutorial, it’s important to understand degrees and radians. In Excel, they are used in trigonometric functions such as SIN, COS, and TAN, which need the angle to be in radians for accurate calculations.

What is meant by Degrees?

A degree is a unit for measuring angles, where a full circle is divided into 360 equal parts. For example, A right angle is 90 degrees, which is one-quarter of a full circle (360 degrees).

What is meant by Radians?

A radian is the angle formed when the arc length equals the radius of a circle, with a full circle being 2π radians. If a circle has a radius of 5 cm and the arc length is also 5 cm, then the angle formed at the center is 1 radian.This is because an angle of 1 radian is defined when the arc length equals the radius.

Primary Differences Between Degrees & Radians:

Aspect Degrees Radians
Definition Full circle = 360° Full circle = 2π 2\pi radians
Conversion Formula Multiply by π180 \frac{\pi}{180} Multiply by 180π \frac{180}{\pi}
Use in Math Common in geometry and daily use Preferred in calculus and advanced math
Symbol Uses “°” No symbol (or sometimes “rad”)

Formula To Convert Degrees to Radians:

In Excel, the RADIANS function directly converts a given degree value into its equivalent radian values.

=RADIANS(B4) //outputs radian values.
Enter fullscreen mode Exit fullscreen mode
Degrees Radians
30 0.523598776
45 0.785398163
75 1.308996939
109 1.902408885
155 2.705260341
222 3.874630939
345 6.021385919
360 6.283185307

Converting Degree Values into Radians using RADIAN Function

Converting Degree Values into Radians using RADIAN Function

By default, the RADIANS function in Excel returns the result with more than 10 decimal places. You can format the cell to limit the result to 2 decimal places, as shown in the example below.

  • To do this, You need to select the cells contains the output Radian values.
  • Right click on the cells and choose Format Cells.
  • Now, under the Category section, select Custom, and then choose the format “0.00” to display decimal values up to 2 decimal places.

Format cells to display decimal values up to 2 decimal places

Format cells to display decimal values up to 2 decimal places

The final formatted output is,

Formatted Output

Formatted Output

Formula To Convert Radians to Degrees:

Similarly in Excel, the DEGREE function directly converts a given radian value into its equivalent degree values.

=DEGREES(B4) & "°" // ° is added to print the output with Degree symbol.
Enter fullscreen mode Exit fullscreen mode
Radians Degrees
0.35 20.0535228295788°
1.25 71.6197243913529°
2.1 120.321136977473°
3 171.887338539247°
4.15 237.777484979292°
5.4 309.397209370645°
6 343.774677078494°
7 401.070456591576°

Converting Radian Values into Degrees using DEGREE Function

Converting Radian Values into Degrees using DEGREE Function

As shown in the image above, the DEGREES function converts radian values into degrees. However, the result may display many decimal places, sometimes up to 10 digits. By using the ROUND Function or ROUNDDOWN Function, you can simplify the output to display the Degree values alone.

=ROUNDDOWN(DEGREES(A1), 0) & "°"  

or

=ROUND(DEGREES(A1), 0) & "°"
Enter fullscreen mode Exit fullscreen mode

Rounded Degree Values using ROUND and ROUNDDOWN Function

Rounded Degree Values using ROUND and ROUNDDOWN Function

Functions Used Description
RADIAN Convert angle from degrees to radians
DEGREE Convert angle from radians to degrees
ROUND Round a number to a specified number of digits
ROUNDDOWN Round a number down towards zero

That’s it.

Narendhiran Vijayakumar.

Feel free to comment us below, if you have any queries about the above topic and find more interesting excel tutorials on our homepage: Excel24x7.com.

Heroku

Save time with this productivity hack.

See how Heroku MCP Server connects tools like Cursor to Heroku, so you can build, deploy, and manage apps—right from your editor.

Learn More

Top comments (0)

Redis image

Short-term memory for faster
AI agents

AI agents struggle with latency and context switching. Redis fixes it with a fast, in-memory layer for short-term context—plus native support for vectors and semi-structured data to keep real-time workflows on track.

Start building

👋 Kindness is contagious

Discover this thought-provoking article in the thriving DEV Community. Developers of every background are encouraged to jump in, share expertise, and uplift our collective knowledge.

A simple "thank you" can make someone's day—drop your kudos in the comments!

On DEV, spreading insights lights the path forward and bonds us. If you appreciated this write-up, a brief note of appreciation to the author speaks volumes.

Get Started