如何查找 Ireport 或 jasper 报告中的列总和?
我在详细范围内有一个具有值的列
$F{thScore}+$F{prScore}
我想在运行时找到此列的总和。在使用 Ireport 的 jasper 报告中这怎么可能? 我用变量做到了,但没有运气。
I have column in detail band with value
$F{thScore}+$F{prScore}
I would like to find the sum of this column in run time . How is this possible in jasper report using Ireport.
I did it with variable but with no luck.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
定义了一个变量并且
为
和
为
。它对我有用,其中 $F{thScore},$F{prScore} 是详细信息带中的字段。
A variable is defined and
to
and
to
.It worked for me where $F{thScore},$F{prScore} are fields in detail band.
我有一个整数类型的字段,并试图添加列。预览报告时我没有收到任何错误,但我的 java 应用程序无法编译报告并给出错误:
然后我使用以下代码添加整数类型的列...
其中
nSchm1Col1
和Schm2col1
是我要添加的两个字段。这对我有用I had a fields of Integer type and was trying to add the columns . I was not getting any error when the report is previewed but my java application was failing to compile the report and giving the error as
then I used the following code to add the columns of Integer type...
where
nSchm1Col1
andSchm2col1
are two fields which I want to add. This one worked for me