水晶报表中Sum公式的求和
我用一个公式(如公式 1)进行了求和。现在我创建了 Formula2,它将 Formula1 求和为 Sum({@Formula1})。
但水晶报告给出错误“无法总结字段”。我知道无法对总和求和,但我需要这样做,因为 Formula1 对列求和,即显示总计,而 Formula2 则显示总计。
请帮忙!
谢谢
I did a summation in one formula say Formula1. Now i created Formula2 which would do summation of Formula1 as Sum({@Formula1}).
But the crystal report gives the error as "The Field could not be summarized". I understand that summation of sum cannot be done, but i need to do this as Formula1 does summation of columns i.e. brings up Total and Formula2 brings up grand Total.
Please Help!
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的 Formula1 的计算结果是否始终为数值?例如,如果您将 Formula1 设计为显示“-”而不是“0”,那么就会导致 Formula2 出现问题。
如果这是一个简单的求和,您甚至不需要 Formula2。 Crystal 有一个内置的替代方案。在 Formula1 上,转到右键单击 -> 插入 -> 摘要,然后选择所需的位置(组页脚或报表页脚)
Does your Formula1 always evaluate to a numeric value? For example, if you designed Formula1 to display "-" instead of "0", that would cause the problem for Formula2.
If this is a simple summation, you don't even need a Formula2. Crystal has a built-in alternative. On Formula1, go to right-click->Insert->Summary and choose where you want it (Group Footer or Report Footer)
如果您复制求和字段并将其粘贴到报表页脚中,它将计算总计 - 无需进行求和(sum(field))。
If you copy your summation field and paste it in the Report Footer, it will calculate a grand total--no need to do a sum(sum(field)).