Exponentials
Exponentials
(OP)
Is it possible to enter exponentials in a cell(Excel 97)?
For example, 5271*D*exp-1.9593 (D can be a figure in another cell). I am somewhat rusty in VBA but will be coming up to speed soon. Thank you.
For example, 5271*D*exp-1.9593 (D can be a figure in another cell). I am somewhat rusty in VBA but will be coming up to speed soon. Thank you.





RE: Exponentials
= 5271*D1*EXP(-1.9593)
DimensionalSolutions@Core.com
While I welcome e-mail messages, please post all thread activity in these forums for the benefit of all members.
RE: Exponentials
=5271*(POWER(C2,-1.9593))*C3*((0.0016*C4*C4)-(0.0076*C4)+0.8938)
Thank you, again.
RE: Exponentials
=5271*C2^(-1.9593)* .....
RE: Exponentials
That is not the same thing. The EXP function is e (2.71828) raised to the nth power.
DimensionalSolutions@Core.com
While I welcome e-mail messages, please post all thread activity in these forums for the benefit of all members.