Programming Reference Manual
 
Syntax
 
Log(Num)
 
Description
Return the natural logarithm.
 
Parameter
Description
Num
Return the natural logarithm of this numeric value. The value e is approximately 2.718282. 
See Also
Example
 
Sub Main
Debug.Print Log(1) ' 0
End Sub