DEGREES

DEGREES(angle)

Returns the number of degrees given a number of radians.

angleThe angle in radians that you want converted.

REMARKS
* If "angle" is not numeric, then #VALUE! is returned.
* To convert a number from radians to degrees, multiply it by 180/PI.
* 1 radian is equivalent to approximately 57.30 degrees.
* You can use the RADIANS function to convert from degrees to radians.
* You can use the COS function to return the cosine ratio for an angle.
* You can use the SIN function to return the sine ratio for an angle.
* You can use the TAN function to return the tangent ratio for an angle.
* For the Microsoft documentation refer to support.microsoft.com

 A
1=DEGREES(1) = 57.296
2=DEGREES(-1) = -57.296
3=DEGREES(PI()/4) = 45
4=DEGREES(PI()/2) = 90
5=DEGREES(PI()) = 180
6=DEGREES(PI()*3/2) = 270
7=DEGREES(PI()*2) = 360
8=DEGREES(PI()*4) = 720
9=DEGREES(0) = 0
10=DEGREES("text") = #VALUE!

1 - How many degrees is 1 radian.
2 - How many degrees is -1 radian.
3 - How many degrees is (PI/4) radians.
4 - How many degrees is (PI/2) radians.
5 - How many degrees is (PI) radians.
6 - How many degrees is (PI*3/2) radians.
7 - How many degrees is (PI*2) radians.
8 - How many degrees is (PI*4) radians.
9 - How many degrees is 0 radians.
10 - When angle is not numeric.

© 2025 Better Solutions Limited. All Rights Reserved. © 2025 Better Solutions Limited Top