Converts radians to degrees. Multiply radians by 180/π (approximately 57.29577951). Essential for trigonometric calculations, geometry, physics, engineering, and when working with angles in different measurement systems.
Master the fundamentals of Excel DEGREES function
The DEGREES function converts angles from radians to degrees. The conversion factor is 180/π (approximately 57.29577951). This is essential when working with trigonometric functions (SIN, COS, TAN) which typically use radians, or when converting between measurement systems. Key conversions: π radians = 180°, π/2 = 90°, π/3 = 60°, π/4 = 45°, π/6 = 30°. DEGREES preserves the sign of the angle (negative radians → negative degrees).
Multiplies by 180/π
Negative radians → negative degrees
π = 180°, π/2 = 90°
Inverse of RADIANS function
Function-specific parameters
Function-specific return type
Convert angles for SIN, COS, TAN
Angle measurements and calculations
Angle conversions in calculations
Converting between measurement systems
Exact matching required
Returns numeric position
Handles missing text gracefully
=DEGREES(angle)The angle in radians that you want to convert to degrees.
The angle in degrees
Description: Converts radians to degrees
Convert π radians to degrees
Converts π radians to 180 degrees. DEGREES(π) = π × (180/π) = 180. This is the fundamental conversion: π radians = 180°.
Use DEGREES function in VBA
' Basic DEGREES in VBA
Range("C1").Value = Application.WorksheetFunction.Degrees(3.14159)
' Returns: 180
' Convert radians to degrees
Sub ConvertRadiansToDegrees()
Dim radians As Double
radians = Range("A1").Value
Dim degrees As Double
degrees = Application.WorksheetFunction.Degrees(radians)
Range("B1").Value = degrees
End Sub
' Convert multiple angles
Sub ConvertMultipleAngles()
Dim i As Integer
For i = 1 To 10
Dim radians As Double
radians = Range("A" & i).Value
Dim degrees As Double
degrees = Application.WorksheetFunction.Degrees(radians)
Range("B" & i).Value = degrees
Next i
End Sub
' Convert using PI
Sub ConvertPI()
Dim pi As Double
pi = Application.WorksheetFunction.Pi()
Dim degrees As Double
degrees = Application.WorksheetFunction.Degrees(pi)
Range("B1").Value = degrees
' Returns: 180
End SubConvert angles for SIN, COS, TAN functions
Angle measurements and geometric calculations
Angle conversions in physics calculations
Converting between measurement systems
Non-numeric input in DEGREES
=DEGREES(VALUE(A1))Solution: Ensure input is numeric. DEGREES requires a number. Check for text, errors, or empty cells. Use VALUE() if needed.
Confusion between degrees and radians
Use RADIANS() to convert degrees→radiansSolution: DEGREES converts FROM radians TO degrees. If you have degrees and need radians, use RADIANS() instead. Remember: π rad = 180°.
Small rounding differences
=ROUND(DEGREES(A1), 2)Solution: Use PI() for exact values: DEGREES(PI()) = 180 exactly. For display, use ROUND: ROUND(DEGREES(angle), decimals).
Confusion about DEGREES vs RADIANS
DEGREES converts radians→degreesSolution: DEGREES and RADIANS are inverse: DEGREES(RADIANS(x)) = x and RADIANS(DEGREES(x)) = x. Use DEGREES when you have radians.