How do I raise a value to e in a query?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I need to raise the values in a variable to the number e. I was thinking I
could do this in a query, creating a new variable that operates on the
existing one. However, Access does not seem to have "e" as a value, nor will
it let me raise to any power that involves a decimal (i.e. I can raise to the
2nd power, but I get an error when I try to raise to the 2.8 power).

Thanks in advance for your help,
-JJ
 
There is a Exp() function you can use.

Raise to decimal power works fine for me (A2K2).

From the Debug windows:

?Exp(2.8)
16.444646771097

?2.7183 ^ 2.8
16.4449545809156
 
Back
Top