我在 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
----------------------------------------------------------
是否有可能通过交叉表实现我的期望?如果没有,还有其他解决方案吗?提前感谢您的所有帮助!