Sin() Returns the sine of a number (radians). : Sin « Math Functions « VBA / Excel / Access / Word






Sin() Returns the sine of a number (radians).

 
Sub mathF8()
    Debug.Print Sin(3.14159265 / 2)
End Sub

 

Related examples in the same category

1.Sin(number) returns The sine of the angle specified by number (measured in radians).