Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
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