A Allen Browne Mar 18, 2009 #2 Josephine Ng said: anyone know if there is a PI function in access? Click to expand... Paste the function below into a standard module in your database. You can then use Pi() anywhere you need 3.14159265358979. Public Function Pi() As Double Pi = Atn(1) * 4# End Function
Josephine Ng said: anyone know if there is a PI function in access? Click to expand... Paste the function below into a standard module in your database. You can then use Pi() anywhere you need 3.14159265358979. Public Function Pi() As Double Pi = Atn(1) * 4# End Function
A aaron.kempf Mar 19, 2009 #3 I use SQL Server UDFs all the time to do things like this. www.novicksoftware.com I'd reccomend downloading his UDF library -Aaron
I use SQL Server UDFs all the time to do things like this. www.novicksoftware.com I'd reccomend downloading his UDF library -Aaron