作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一份报告,其中我试图将一个组的摘要汇总到另一个组。前任:
group 1: 75 <- sum of the maximums
group 2: 50 <- max of the group
line 1: 50
line 2: 40
line 3: 10
group 2: 25 <- max of the group
line 1: 10
line 2: 2
line 3: 25
最佳答案
如果您绝对必须在 Group1 header 中拥有该值,那么我认为您唯一的选择将是 SQL 表达式。
Group1 页脚会容易得多。要点是您可以简单地使用变量跟踪最大值的总和。
//Place this formula in the Group1 Header
whileprintingrecords;
numbervar g1sum := 0;
//Place this formula in the Group2 Footer
whileprintingrecords;
numbervar g1sum;
g1sum := g1sum + maximum({table.value},{table.group2_field})
//Place this formula in the Group1 Footer
whileprintingrecords;
numbervar g1sum;
关于crystal-reports - Crystal Report Sum of a Group 汇总,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16151982/
我是一名优秀的程序员,十分优秀!