Exp Function

Syntax              Exp(Num)

Group                Math

Description       Return the exponential.

Parameter         Description

Num                    Return e raised to the power of this numeric value. The value e is approximately 2.718282. 

See Also            Log.

Example            '#Language "WWB-COM"
Sub Main
    Debug.Print Exp(1) ' 2.718281828459
EndSub