交叉表行和列的总计?

发布于 2024-10-10 16:58:01 字数 844 浏览 0 评论 0原文

我想要对交叉表报告进行总计,例如

GroupName  Items    Item% 1stStock 2ndStock  ------ nStock
---------  -----   ------ -------- --------         ------- 
 Fruits    Apples     5       100    100             500
           Tomatoes   10      200     50             200
           Mangoes    10      300     50             100
------------------------------------------------------------ 
 Total                25%     600    200              800 
------------------------------------------------------------
 Vegetables Carrots   40      10      20    ---------  20
 ------------------------------------------------------------ 
 Total                40%     10      20    ---------  20  
------------------------------------------------------------
 GrandTotal           65%     610    20               820 

如何对行进行小计和总计?

I want to total a cross tab report like

GroupName  Items    Item% 1stStock 2ndStock  ------ nStock
---------  -----   ------ -------- --------         ------- 
 Fruits    Apples     5       100    100             500
           Tomatoes   10      200     50             200
           Mangoes    10      300     50             100
------------------------------------------------------------ 
 Total                25%     600    200              800 
------------------------------------------------------------
 Vegetables Carrots   40      10      20    ---------  20
 ------------------------------------------------------------ 
 Total                40%     10      20    ---------  20  
------------------------------------------------------------
 GrandTotal           65%     610    20               820 

How do I make sub totals and grand totals for the rows ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

聚集的泪 2024-10-17 16:58:01

其中之一应该适合您:

手动方法:

  1. 按 GroupName 对报告进行分组
  2. Drag &将您的字段放到详细信息部分。
  3. 在每个数字字段上,右键单击 -> 插入 -> 摘要(启用“添加到所有组级别”以创建小计和总计)

Crystal 的交叉表方法:

  1. 制作空白报表标题中的交叉表。
  2. 在交叉表专家中,将行定义为 {GroupName} 和 {Items}。
  3. 对于汇总字段,对您的 {nStock} 字段进行求和。
  4. 保留交叉表专家并右键单击 -> 行总计 -> 顶部总计 将小计放在各个值的下方。

One of these should work for you:

Manual Method:

  1. Group your report by GroupName
  2. Drag & drop your fields onto the details section.
  3. On each of your numeric fields, right click->insert->summary (turn on "add to all group levels" to create both a subtotal and a grandtotal)

Crystal's Crosstab Method:

  1. Make a blank crosstab in your report header.
  2. In the Crosstab Expert, define your Rows as {GroupName} and {Items}.
  3. For Summarized Fields, sum your {nStock} fields.
  4. Leave the Crosstab Expert and right click->Row Grand Totals->Totals on Top to put the subtotals below the individual values.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文