Have a scenario as follows and I am using this as sub report.
id item a item b item c item d
-- ------ ------ ------ ------
1 good xyz nnn VVV
1 good xyz nnn PPP
1 good xyz nnn QQQ
1 bad abc kkk VVV
1 bad abc kkk PPP
1 bad abc kkk QQQ
given the above records from a stored proc, I have to group by item a, which gives me 2 distict groups. the prob is item d is the same for both group types. I want item d to appear just once and not twice.
The result I want is:
good
xyz nnn
bad
abc kkk
PPP
QQQ
VVV
item d should appear as above at the end of the sub report.
Help.
id item a item b item c item d
-- ------ ------ ------ ------
1 good xyz nnn VVV
1 good xyz nnn PPP
1 good xyz nnn QQQ
1 bad abc kkk VVV
1 bad abc kkk PPP
1 bad abc kkk QQQ
given the above records from a stored proc, I have to group by item a, which gives me 2 distict groups. the prob is item d is the same for both group types. I want item d to appear just once and not twice.
The result I want is:
good
xyz nnn
bad
abc kkk
PPP
QQQ
VVV
item d should appear as above at the end of the sub report.
Help.