How Do You Make Excel Calculate in Degrees
Excel defaults to radians for trigonometric functions, but many calculations in physics, engineering, and everyday life use degrees. This guide explains how to configure Excel to work with degrees and provides a calculator to verify your settings.
Why Calculate in Degrees?
Degrees are commonly used in:
- Geometry and construction measurements
- Navigation and compass bearings
- Temperature scales (though not mathematically)
- Everyday angle measurements like 90° for right angles
While radians are mathematically elegant for calculus, degrees provide more intuitive results for practical applications.
Excel's Default Setting
By default, Excel's trigonometric functions (SIN, COS, TAN, ASIN, ACOS, ATAN) use radians. This means:
To get the same result in degrees, you would need to use:
This conversion factor makes calculations cumbersome for degree-based work.
How to Change to Degrees
Method 1: Convert Input Values
For one-time calculations, multiply your degree value by PI()/180:
Where A1 contains your angle in degrees.
Method 2: Change Excel's Angle Mode
To make all trigonometric functions use degrees:
- Go to File → Options → Formulas
- Under "Workbook calculation", select "Automatic" or "Automatic except for data tables"
- Check "Set angle measure to degrees"
- Click OK to save changes
This setting applies to the entire workbook. If you share the file, recipients will need to change this setting themselves.
Method 3: Create Custom Functions
For more control, create your own degree-based functions:
Where SINDEG is a custom function defined as:
Using Degrees in Trigonometry
Common degree-based calculations include:
| Function | Degree Formula | Radian Equivalent |
|---|---|---|
| Sine | =SIN(A1*PI()/180) | =SIN(A1) |
| Cosine | =COS(A1*PI()/180) | =COS(A1) |
| Tangent | =TAN(A1*PI()/180) | =TAN(A1) |
| Arcsine | =ASIN(A1)*180/PI() | =ASIN(A1) |
Remember that inverse trigonometric functions (ASIN, ACOS, ATAN) return values in radians when Excel is in radian mode.
Common Errors to Avoid
- Mixing degree and radian inputs without conversion
- Forgetting to convert back to degrees for inverse functions
- Assuming Excel's default angle mode matches your needs
- Not verifying your results with a calculator
Always double-check your calculations, especially when working with angles that aren't multiples of 30° or 45°.