RADIANS Function – Degrees to Radians – Excel, VBA, G Sheets

Written by

Editorial Team

Reviewed by

Steve Rynearson

Last updated on February 9, 2023
Download Example Workbook

Download the example workbook

This Tutorial demonstrates how to use the Excel RADIANS Function in Excel to convert an angle to radians.

RADIANS Main Function

RADIANS Function Overview

The RADIANS Function Converts an angle into radians.

To use the RADIANS  Excel Worksheet Function, select a cell and type:

radians formula syntax

(Notice how the formula inputs appear)

RADIANS Function Syntax and Inputs:

=RADIANS(angle)

angle – An angle in degrees.

RADIANS Function

The DEGREES Function converts radians into degrees.

=RADIANS(45)

RADIANS 01

RADIANS & PI Function

The RADIANS Function takes the argument 180 &  returns the same result as PI()

=RADIANS(180)

RADIANS 02

RADIANS Function – Negative Angle

The RADIANS Function can also convert negative angles into radians.

=RADIANS(-270)

RADIANS 03

RADIANS in Google Sheets

The RADIANS Function works exactly the same in Google Sheets as in Excel:

RADIANS Google Function

Additional Notes

Use the RADIANS Function to convert an angle into radians.

RADIANS Examples in VBA

You can also use the RADIANS function in VBA. Type:

application.worksheetfunction.radians(angle)

Executing the following VBA statements

Range("B2") = Application.WorksheetFunction.Radians(Range("A2"))
Range("B3") = Application.WorksheetFunction.Radians(Range("A3"))
Range("B4") = Application.WorksheetFunction.Radians(Range("A4"))
Range("B5") = Application.WorksheetFunction.Radians(Range("A5"))
Range("B6") = Application.WorksheetFunction.Radians(Range("A6"))
Range("B7") = Application.WorksheetFunction.Radians(Range("A7"))
Range("B8") = Application.WorksheetFunction.Radians(Range("A8"))
Range("B9") = Application.WorksheetFunction.Radians(Range("A9"))

will produce the following results

Vba radians function

For the function arguments (angle, etc.), you can either enter them directly into the function, or define variables to use instead.

Return to the List of all Functions in Excel

AI Formula Generator

Try for Free

Excel Practice Worksheet

practice excel worksheet

Practice Excel functions and formulas with our 100% free practice worksheets!

  • Automatically Graded Exercises
  • Learn Excel, Inside Excel!

Free Download

Return to List of Excel Functions