trigonometry Functions

  • Thread starter Thread starter Rocky
  • Start date Start date
R

Rocky

I have used the following funtion in Excel: =COS(RADIANS(P12))*T12
The COS function is supported in Access, but I am having problems
finding a "Radiens() function to use
Can anyone help?
 
Rocky said:
I have used the following funtion in Excel: =COS(RADIANS(P12))*T12
The COS function is supported in Access, but I am having problems
finding a "Radiens() function to use


The Radians function is just the simple expression
(degrees/180) * 3.14159265
so you expression can be written:
=Cos(P12/180 * 3.14159265) * T12
 
Marshall said:
The Radians function is just the simple expression
(degrees/180) * 3.14159265
so you expression can be written:
=Cos(P12/180 * 3.14159265) * T12

Thanks. Iwent to school to long ago to remember by trig

Rocky Swartz
 
Back
Top