I have a stored procedure which has the following data:
Issue Part Number Order Number
1 A 123
1 B 123
2 A 123
2 A 345
I need to show a total of each part number, which I was able to do by grouping the Part Numbers. When the user clicks on part number A and drills down to the detail section, I get the following result set:
Issue Part Number Order Number
1 A 123
2 A 123
2 A 345
In the details section, I do not want to see the order number. If I remove the order number from details sections, I see the following:
Issue Part Number
1 A
2 A
2 A
Is there any way to force the details section to remove duplicate entries and only show 1 entry for Issue 2? I cannot remove the order number from the SP entirely since it is being used in another part of the report. Please let me know if I can achieve this without resorting to grouping by Issue. (I also have some other fields which are distinct for each issue, such as Issue Summary. If I group by issue, I would be unable to show Issue Summary...)
- Kevat