0
I need to perform a field check expression
in my report created in Jasperreports studio
, my situation is as follows, I need to realize the following account:
$F{quantidade}/($F{quinze}/15.0)
But sometimes the count ($F{quinze}/15.0)
results in zero, and it is not possible to carry out a division by zero, for this reason ends up being displayed in my report the symbol of infinity, my need is to verify if the account ($F{quinze}/15.0)
result in 0
I want to change the return so it’s just $F{quantidade}
and not the result of the account