Reputation: 1199
In iReport 3.6.7, I am trying to use a Double
variable. I want it to have an initial value of 0
or 0.00
.
At present, no initial value has been set, so it displays null
in the report. How can I make it have an initial value if no value has been explicitly specified?
Upvotes: 2
Views: 9586
Reputation: 12609
Here's how to do it in iReport:
Initial Value Expression
to new Double(0.0)
Upvotes: 2