Exp(number) returns e, the base of natural logarithms, raised to the power of number. : Exp « Math Functions « VBA / Excel / Access / Word






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

 
Sub mathDemo4()
   Debug.Print Exp(5)
End Sub

 

Related examples in the same category

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