Natural logs

  • Thread starter Thread starter LBDobbs
  • Start date Start date
L

LBDobbs

What is the best way to get natural logs(LN) (not LOG or
EXP Function) calculated in Access 2002? The
function "LN" is not available in Access as far as I can
tell, but is available in Excel.
Thanks for advice.
 
The Log function in Access (VBA) is the natural log. For example:

Log(Exp(1))

returns 1.
 
Back
Top