Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我得到每组的最大数量,我想得到所有最大值的总和,但水晶报告不会总结它。Crystal Report 指出该字段无法汇总?
怎么做到呢?
这是可能的,但它有点棘手,或者至少我对问题的解决方案是。您必须创建 2 个公式字段,第一个是 MaxValue,其公式应如下所示:
Shared NumberVar SharedMax; SharedMax := SharedMax + maximum(AmountField, GroupingField);
将此字段放在组页脚并抑制它
然后创建第二个名为 TotalMax 的公式字段,代码为
Shared numberVar SharedMax; SharedMax;
将其放在报告页脚中,您将获得每组的所有最大值的总和