0
是否有這樣一個公式:Crystal報表合併重複的列相同的數據
mainId productId groupId product price qty 456 123 555 book 10 2 456 789 555 book 10 2 222 125 888 pencil 20 5 222 125 859 pencil 20 1
它顯示了(從子報告主報告):
product: book Computation: 10x2 20 product: book Computation: 10x2 20 Total 40
我想要的結果是這樣的如果產生的數據與上面的數據相同:
product: book Computation: 10x4 40 Total 40
如果不是像mainId 222一樣的數據結果T應當是這樣的:
product: pencil Computation: 20x5 100 product: pencil Computation: 20x1 20 Total 120
在子報告I組它,按ProductID
Group Header: [Group#1 Name]
Details:
Group Footer: [product]
Computation: [computation (10x2)] [total (20)]
在主報告中,我組它,按ProductID了。我將組報告中的子報表分組。在頁面頁腳是總共有20個。