本文介绍了总计交叉表行和列?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想总计一个交叉表报告,例如
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 ?
推荐答案
其中一个应为您工作:
手动方法:
- 按组名分组报告
- 拖动和删除;
- 在每个数字字段上,右键单击->插入->摘要(打开添加到所有组级别来创建小计和大计)
- Group your report by GroupName
- Drag & drop your fields onto the details section.
- 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的交叉表方法:
Crystal's Crosstab Method:
- 在报表标题中添加空白的交叉表。
- 在交叉表专家中,将行定义为{GroupName}和{Items}。
- 对于汇总字段,请对您的{nStock}字段求和。
- 保留交叉表专家,然后右键单击->行总计->总和将小计置于各个值以下。
- Make a blank crosstab in your report header.
- In the Crosstab Expert, define your Rows as {GroupName} and {Items}.
- For Summarized Fields, sum your {nStock} fields.
- Leave the Crosstab Expert and right click->Row Grand Totals->Totals on Top to put the subtotals below the individual values.
这篇关于总计交叉表行和列?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!