在水晶报告中执行此操作的最佳方法是什么?

时间:2016-01-21 03:10:43

标签: vb.net crystal-reports

在水晶报告中执行此操作的最佳方法是什么?我有3个表的主表,主表的子表和另一个是子的子的项目表..这样的东西..

MainTable - stored the main accounts.

idKey       Accnt           Amount
------------------------------------
01          Construction     1000.00
02          Maintenance       500.00


SubTable - this table where sub account for the main table stored.
         - the idkey from this table and main table is equal.

idKey    idSub   SubAccnt               Amount
-----------------------------------------
01          01   WatchTower             800.00
01          02   Level 9 Wall           200.00
02          03   Monthly Maintenance    500.00

itemTable - this table where the items of the sub table stored.
          - the idsub of this table and the SubTable is equal.

idSub       Items        Cost
-----------------------------------
01          Cement       100.00
01          Steel        100.00
01          Labor        400.00
02          Rocks        100.00
02          Labor        100.00
03          Labor        500.00

现在我希望报告看起来像这样..

enter image description here

怎么做?我需要一份子报告吗?如何 ?并使用水晶报告和VB.NET..glad任何帮助..提前提交:)

1 个答案:

答案 0 :(得分:2)

此查询可能会帮助您解决问题

  Select MT.Accnt,ST.SubAccnt, ST.amount,sum(IT.cost) from MainTable MT
    inner join SubTable ST on ST.idKey=MT.idKey       
    inner join itemTable IT on IT.idSub=ST.idSub
    Group By MT.Accnt,ST.SubAccnt, ST.amount

不需要子报告,对于余额,您可以在查询中执行,或者您可以在报告中执行此操作

为MT.Accnt添加组并添加相同的总数。