Log Function

Syntax

Log(Num)

Group

Math

Description

Return the natural logarithm.

Parameters

Parameters Description
Num Return the natural logarithm of this numeric value. The value e is approximately 2.718282.

Example


Sub Main
    Debug.Print Log(1) ' 0
End Sub

See also

Exp