Exp Function

Syntax

Exp(Num)

Group

Math

Description

Return the exponential.

Parameters

Parameters Description
Num Returns e raised to the power of this numeric value. The value of e is approximately 2.718282.

See also

Log


Sub Main
    Debug.Print Exp(1) ' 2.718281828459
End Sub