VBA/Excel/Access/Word/Math Functions/Cos
Cos(number) returns The cosine of angle number.
Sub mathDemo3()
Debug.Print Cos(1)
End Sub
Cos() Returns the cosine of a number (radians).
Sub mathF1()
Debug.Print Cos(0)
End Sub
Sub mathDemo3()
Debug.Print Cos(1)
End Sub
Sub mathF1()
Debug.Print Cos(0)
End Sub