Can anyone help?
I am having quite problem with converting Radian to Degrees using VBA. I do not know how to achive this.
The code goes like this:

Private Sub Sinus()
Dim Number As Double
Number = Sin(90)
MsgBox Number
End Sub
What I need is to convert radian to degrees using VBA sin function and get correct reuslt in MsgBox. As far as I know it should return "1", but it does not. Probably because VBA Sin function uses Radian.

Thanks for replay in advance