Pi = 3.1415???

  • Thread starter Thread starter David
  • Start date Start date
D

David

Does Access have the mathematical constant pi=3.141592...?

If it does, how do you use it in when writing code?
 
why dont you just use Public Const vbPI As Double = 3.141592.....
It works just as well

AGP
 
David said:
Does Access have the mathematical constant pi=3.141592...?

If it does, how do you use it in when writing code?

pi = 4 * Atn(1)

(3.1415926535897932587340685131)

(david)
 
Back
Top