0
New Here
,
/t5/acrobat-sdk-discussions/acrobat-field-custom-calculation-script/td-p/8535187
Sep 28, 2016
Sep 28, 2016
Copy link to clipboard
Copied
Hi, I have a with field calculation script. I wanna calculate EXP(X), I wanna link a X to "A" value. May I know what is formula for this calculation?
At another way, I found at online, operation is <2.71 ** X>, mean 2.71 power of X. But duno why <**> can't work on this purpose (power of) at custom calculation script.
May I know what else script can be create for EXP(X).
Please advise. Thank you.
From
Ethar
TOPICS
Acrobat SDK and JavaScript
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
1 Correct answer
New Here
,
Sep 28, 2016
Sep 28, 2016
Thanks all!! I finally get the answer by myself already.
Use this formula:
event.value = Math.exp(this.getField("A").value)
Yeah!!
New Here
,
LATEST
/t5/acrobat-sdk-discussions/acrobat-field-custom-calculation-script/m-p/8535188#M42745
Sep 28, 2016
Sep 28, 2016
Copy link to clipboard
Copied
Thanks all!! I finally get the answer by myself already.
Use this formula:
event.value = Math.exp(this.getField("A").value)
Yeah!!
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

