Log() Returns the natural logarithm of a number. : Log « Math Functions « VBA / Excel / Access / Word






Log() Returns the natural logarithm of a number.

 
Sub mathF5()
    Debug.Print Log(2.718281828)
End Sub

 

Related examples in the same category

1.Log(number) returns The natural logarithm of number.