Aug 21, 2002 #1 jyvu Technical User Dec 21, 2001 12 US Could you show me how to create a query that will calculate the natural logarithm of one column in Access? Thanks, JV
Could you show me how to create a query that will calculate the natural logarithm of one column in Access? Thanks, JV
Aug 21, 2002 #2 djsiders Programmer Mar 6, 2002 76 US The following is a simplified query that returns the natural log of the value in the field named Field1 SELECT Table1.field1, Log([field1]) AS Expr1 FROM Table1; Upvote 0 Downvote
The following is a simplified query that returns the natural log of the value in the field named Field1 SELECT Table1.field1, Log([field1]) AS Expr1 FROM Table1;
Aug 22, 2002 Thread starter #3 jyvu Technical User Dec 21, 2001 12 US It works. Thanks you very much. JV Upvote 0 Downvote