VBA/Excel/Access/Word/Math Functions/Log
Log(number) returns The natural logarithm of number.
 
Sub mathDemo9()
   Debug.Print Log(2)
End Sub
   
Log() Returns the natural logarithm of a number.
 
Sub mathF5()
    Debug.Print Log(2.718281828)
End Sub