Changing Radians to Degrees

L

Leonard

Hi,
I am using Excell 2007, and I prefer to use degrees rather than radians.
When I calculate Sin (angle), excel identifies the angle as in Radians. How
can I make "degrees" to be my default unit of angles?
Leo
 
R

Ron Rosenfeld

Hi,
I am using Excell 2007, and I prefer to use degrees rather than radians.
When I calculate Sin (angle), excel identifies the angle as in Radians. How
can I make "degrees" to be my default unit of angles?
Leo

As far as I know, that is not an available option in Excel.
--ron
 
N

Niek Otten

But of course you could make your own Sin function:

Function Sinus(a As Double) As Double
Sinus = Sin(WorksheetFunction.Radians(a))
End Function

ALT+F11 gets you to the VB Editor
Insert>Module
Paste the code above
ALT+F11 brings you back in Excel
You can now use the Sinus() function with degrees as an argument
 
L

Leonard akwilapo

Thanks Niek.
Leon.



Niek Otten said:
But of course you could make your own Sin function:

Function Sinus(a As Double) As Double
Sinus = Sin(WorksheetFunction.Radians(a))
End Function

ALT+F11 gets you to the VB Editor
Insert>Module
Paste the code above
ALT+F11 brings you back in Excel
You can now use the Sinus() function with degrees as an argument

--
Kind regards,

Niek Otten
Microsoft MVP - Excel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top