Skip to main content
Participant
April 28, 2024
Question

Converting exponential calculations from excel to PDF

  • April 28, 2024
  • 1 reply
  • 369 views

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)

This topic has been closed for replies.

1 reply

try67
Community Expert
Community Expert
April 28, 2024

You can calculate an exponent in JS using Math.exp(x), which will return e^x.

Participant
April 29, 2024

Hi, 

 

Thanks for the reply. 

Let me go figure it out.