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 return the number of radians given the number of degrees.
* You can use the COS function to return the cosine of an angle.
* You can use the SIN function to return the sine of an angle.
* You can use the TAN function to return the tangent of 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 degress is 1 radian.
2 - How many degress is -1 radian.
3 - How many degress is (PI/4) radians.
4 - How many degress is (PI/2) radians.
5 - How many degress is (PI) radians.
6 - How many degress is (PI*3/2) radians.
7 - How many degress is (PI*2) radians.
8 - How many degress is (PI*4) radians.
9 - How many degress is 0 radians.
10 - When angle is not numeric.

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