Avatar

Level 10

Hi,

the arithmetic over/underflow happens if any of the values used in a script is 0.

You can wrap you script in a if expression to avoid this problem.

if (annualSalary gt 0 and percent gt 0) then

     $ = annualSalary / percent / 24

}