我无法在Google上获得正确的结果,因为我无法为查询添加正确的关键字。同样适用于Stackoverflow。所以我提出了我的问题。
在水晶报告的报告页脚中,我正在使用交叉表。我期待输出如下所示,
| Count of units | Rent
-------------|-------------------|----------------------------------------------
Unit Type A | 10 | sum of rent of all units under unit type A
--------------------------------------------------------------------------------
Unit Type B | 20 | sum of rent of all units under unit type B
--------------------------------------------------------------------------------
到目前为止,我能够实现如下所示,但这没有帮助,
|Count of units | Rent
----------------------------------------------------------
Unit Type A | 10 | sum of rent of UT A
| sum of rent of UT A | 10
----------------------------------------------------------
Unit Type B | 20 | sum of rent of UT B
| sum of rent of UT B | 20
----------------------------------------------------------
是否有可能通过交叉表实现我的期望?如果没有,任何其他解决方案? 在此先感谢您的所有帮助!
答案 0 :(得分:0)
回答你的问题:是的,有可能实现你想要做的事情。最简单的方法是有一行(单位类型)和两个汇总字段(单位数,租金总和。无列。您需要自定义标签。
希望有所帮助,
克里斯