Java – Print When Expression in iReport

ireportjasper-reportsjava

I am trying to do a simple expression in iReport, but whatever I try seems has given me an error. It seems like such a simple thing to do, but whenever I try to do anything in Java it takes me about 20 tries to get it right.

All I'm trying to do is show a subreport when the value of an integer field is not zero. I am using the Print When Expression for the subreport control.

Here's a few (of the many) things that I've tried:

$F{count}!=0

$F{count}!=Integer(0)

!$F{count}.compareTo(0)

Obviously my Java sucks. Any help would be appreciated. Thanks.

Best Answer

new Boolean($F{count}.intValue()!=0)

Glad that I could help.

Related Topic