Copy link to clipboard
Copied
HI i'm trying to make a form for a calculation sheet from excel to PDF. i have researched alot but i am unable to convert the following formula from excel to adobe
following is in excel calculation format.
=ROUND(EXP(-(186.9696/(J22*J22*1000*1000)+0.4862/(J22*1000))*(I22-$J$21)*(1+0.8*(I22-$J$21)*(186.9696/(J22*J22*1000*1000)+0.4862/(J22*1000)))),4)
Copy link to clipboard
Copied
You can calculate an exponent in JS using Math.exp(x), which will return e^x.
Copy link to clipboard
Copied
Hi,
Thanks for the reply.
Let me go figure it out.