我試圖創建一個SSRS報告,其中父組有2套不同的細節,我似乎無法弄清楚如何顯示父行下面的獨特的細節SSRS顯示2個不同的細節
例如:
table1
master
master1
master2
table2
master, hand
master1, hand1
master1, hand2
master2, hand1
master2, hand2
table3
master, foot
master1, foot1
master1, foot2
master2, foot1
master2, foot2
我的SQL查詢如下
select t1.master, t2.hand, t3.foot
from table1 t1
left outer join table2 t2 on t1.master = t2.master
left outer join table2 t3 on t1.master = t3.master
我想要的SSRS報表輸出是
master1
hand1
hand2
foot1
foot2
master2
hand1
hand2
foot1
foot2
到目前爲止,我已經能夠得到
master1
hand1
hand2
master2
hand1
hand2
但只要我嘗試添加另一行顯示的腳將其鏈接到手上沒有掌握所以會出現這樣的
master1
hand1
foot1
hand1
foot2
hand2
foot1
hand2
foot2
master2
hand1
foot1
hand1
foot2
hand2
foot1
hand2
foot2
如果我添加分組之外的另一行只顯示從表3
master1
hand1
hand2
foot1
master2
hand1
hand2
foot1
非常感謝你這樣做 – user3014803