P
PierreL
I am really confused!
COS(45/(2*PI()) returns .63
should be .707
What do I type wrong?
Thanks.
Pierre
COS(45/(2*PI()) returns .63
should be .707
What do I type wrong?
Thanks.
Pierre
Dana DeLouis said:I believe you forgot to include 360. Here's two ideas:
=COS(45*PI()/180)
or
=COS(RADIANS(45))
Both return .707...which is the same as =1/SQRT(2)
HTH