Expand my Community achievements bar.

Adobe Summit 2025: AEM Session Recordings Are Live! Missed a session or want to revisit your favorites? Watch the latest recordings now.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

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