水晶报告摘要
数据表
pack_ID qty
1 3
1 4
1 9
2 10
3 1
3 3
我想在 Crystal Report 中显示以下内容
pack_ID qty
1 16
2 10
3 4
如何?
Data Table
pack_ID qty
1 3
1 4
1 9
2 10
3 1
3 3
I want to display the following in Crystal Report
pack_ID qty
1 16
2 10
3 4
How ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在 pack_id 上插入组,将字段摘要 (sum(qty)) 插入组页脚,隐藏详细信息部分。
Insert group on pack_id, insert field summary (sum(qty)) into group footer, hide details section.
在sql中做的很简单:
simple to do in the sql:
实现此解决方案的另一种方法是,如果您的 pack_id 较少并且需要将此详细信息显示到特定部分,而不是动态显示每条记录的总和。步骤如下:
创建公式Qty_Count_Pack_1,该公式将存储 pack_id 为 1 的数量。您需要根据 pack_id 的数量创建公式的数量。
使用汇总公式字段对数量求和,这将给出 pack_Id 1 的数量汇总。
There is one another way to implement this solution is that if you have less pack_id and need to show this details into particular section instead of dynamically to show the sum of each and every records. Below are the steps:
Create formula Qty_Count_Pack_1 which will store the number of quantity with pack_id 1. You need to create number of formula as per number of pack_id.
Use Summary formula field to sum the Qty which will give the summary of qty for pack_Id 1.
有 2 个步骤:
所以你可以看到你期望的结果。
There are 2 steps as:
so u can see result as u expect.