如何计算地址字段为空(或任何其他值)的行数,然后在“摘要”区域中打印总数?

我试过使用变量,但似乎无法正常工作。


JasperServer 5.0.1
iReport 5.5.0

最佳答案

声明具有属性的变量$V{countNull}

Variable class = java.lang.Integer
Calculation = Sum
ResetType = Report
Increment type = None
Variable expression = $F{address} != null ? 0 : 1


$V{countNull}放入“摘要”区域。

$V{countNull}放入“ Detail”区域,以查看其计算(用于调试)。

09-27 00:50