Skip to main content
etharsoh
Participant
September 28, 2016
Answered

Acrobat field custom calculation script

  • September 28, 2016
  • 1 reply
  • 743 views

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

This topic has been closed for replies.
Correct answer etharsoh

Thanks all!! I finally get the answer by myself already.

Use this formula:

event.value = Math.exp(this.getField("A").value)

Yeah!!

1 reply

etharsoh
etharsohAuthorCorrect answer
Participant
September 28, 2016

Thanks all!! I finally get the answer by myself already.

Use this formula:

event.value = Math.exp(this.getField("A").value)

Yeah!!