Exp() Returns the base e exponential of a number. : Exp « Math Functions « VBA / Excel / Access / Word






Exp() Returns the base e exponential of a number.

 
Sub mathF2()
    Debug.Print Exp(1)
End Sub

 

Related examples in the same category

1.Exp(number) returns e, the base of natural logarithms, raised to the power of number.