orlandoc3327638
29-07-2019
Good afternoon, someone on the forum knows if in livecycle designer to perform calculations with exponential values?
For example:
Thanks.
_Bruce_Robertson
MVP
Hi,
In JavaScript you can use Math.pow(x,y), so;
Math.pow(9,2) + Math.pow(5,3)
Gives you 206