Expand my Community achievements bar.

SOLVED

Calculations with exponential values

Avatar

Level 2

Good afternoon, someone on the forum knows if in livecycle designer to perform calculations with exponential values?

For example:

calculo.jpg

Thanks.

1 Accepted Solution

Avatar

Correct answer by
Level 10

Hi,

In JavaScript you can use Math.pow(x,y), so;

Math.pow(9,2) + Math.pow(5,3)

Gives you 206

View solution in original post

1 Reply

Avatar

Correct answer by
Level 10

Hi,

In JavaScript you can use Math.pow(x,y), so;

Math.pow(9,2) + Math.pow(5,3)

Gives you 206