水晶报告摘要

发布于 2024-11-01 09:48:48 字数 251 浏览 0 评论 0原文

数据表

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

北方。的韩爷 2024-11-08 09:48:48

在 pack_id 上插入组,将字段摘要 (sum(qty)) 插入组页脚,隐藏详细信息部分。

Insert group on pack_id, insert field summary (sum(qty)) into group footer, hide details section.

夜唯美灬不弃 2024-11-08 09:48:48

在sql中做的很简单:

SELECT pack_ID,SUM(qty) FROM Table GROUP BY pack_ID

simple to do in the sql:

SELECT pack_ID,SUM(qty) FROM Table GROUP BY pack_ID
旧时浪漫 2024-11-08 09:48:48

实现此解决方案的另一种方法是,如果您的 pack_id 较少并且需要将此详细信息显示到特定部分,而不是动态显示每条记录的总和。步骤如下:

  1. 创建公式Qty_Count_Pack_1,该公式将存储 pack_id 为 1 的数量。您需要根据 pack_id 的数量创建公式的数量。

     if ({command.Pack_Id}) = 1) THEN
        {命令.数量}
      别的
        0
    
  2. 使用汇总公式字段对数量求和,这将给出 pack_Id 1 的数量汇总。

    Sum({@Qty_Count_Pack_1},{command.pack_ID})
    

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:

  1. 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.

      if ({command.Pack_Id}) = 1) THEN
        {command.Qty}
      else
        0
    
  2. Use Summary formula field to sum the Qty which will give the summary of qty for pack_Id 1.

    Sum({@Qty_Count_Pack_1},{command.pack_ID})
    
奈何桥上唱咆哮 2024-11-08 09:48:48

有 2 个步骤:

  1. 插入 pack_ID 组
  2. 将数量从详细信息块复制到同一行的 pack_ID 组
    所以你可以看到你期望的结果。
    输入图片此处描述

There are 2 steps as:

  1. Insert Group of pack_ID
  2. Copy qty from detail block to Group of pack_ID the same line
    so u can see result as u expect.
    enter image description here
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文