The DEGREES function in Google Sheets is a useful tool for converting angles from radians to degrees. Angle measurement is crucial in various fields such as mathematics, physics, and engineering, where both radians and degrees are commonly used. This function simplifies the conversion process, ensuring accurate calculations in your spreadsheets.
Syntax
DEGREES(angle)
- angle: This is the angle value in radians that you want to convert to degrees.
Example #1
DEGREES(1.5708)
This example converts 1.5708 radians (approximately equivalent to 90 degrees) into degrees. The result would be 90, demonstrating the function’s capability. Example result: 90.
Example #2
DEGREES(3.14159)
In this case, the function converts 3.14159 radians (approximately equivalent to 180 degrees) to degrees. The output will be 180, confirming the accuracy of the conversion. Example result: 180.
Example #3
DEGREES(0)
Here, the function translates 0 radians into degrees. Since an angle of 0 radians represents 0 degrees, the result will be 0. Example result: 0.
Error handling
- VALUE!: This error occurs when the input to the function is not a valid number or if it cannot be interpreted as a numeric value.
- N/A: This error may appear if the function is incorrectly referenced and cannot find a suitable angle to convert.