Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Adobe Summit 2023 [19th to 23rd March, Las Vegas and Virtual] | Complete AEM Session & Lab list

Error: arithmetic over/underflow

Avatar

Not applicable

I'm a novice with LiveCycle designer and working on a form with calculations.  Here is what is looks like

(Height * 2) + Gusset * Width = Total Size

The total size field is calculating fine.

Now i want to use the Total Size like this:

Total Number = 5000000 / Total size, but i get the error.  What am i doing wrong?

1 Reply

Avatar

Level 10

The arithmetic over/underflow appears when you try to multiply or divide a value with 0 or null.

Tho avoid this you should wrap your script in an if-expression.

var totalValue = 0

if (not totalSize.isNull) then

    totalValue = 500000 / totalSize

endif

$ = totalValue