获取交叉表总计?
I have a cross tab inside a subreport. I need to fetch the grandtotal of cross tab and display it in a textobject under the cross tab. Any clue how this can be achieved ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
交叉表中是否有任何标准或特殊公式?如果没有,那么您可能只需创建一个新公式
sum({table.field})
并将其放在您喜欢的任何位置。(如果此子报表已分组,您可能需要使用
sum({table.field},{table.group})
)Do you have any criteria or special formula in the crosstab? If not, then you could probably just make a new formula
sum({table.field})
and put it wherever you like.(If this subreport is grouped, you may want to use
sum({table.field},{table.group})
)