In Microsoft Report Builder, I have a report designed like below:
Name Email Value
[Name], [Email], [Value]
where the data source is like: select name,email,value from mytable
The output of the report is like:
Name Email Value
Chris, [email protected] 1
Chris, [email protected] 2
Chris, [email protected] 3
Alex, [email protected] 1
Alex, [email protected] 2
Alex, [email protected] 4
Alex, [email protected] 7
John, [email protected] 3
What I need to do is to group the table by name and email and list the values under the group as a separate row, like:
Name Email
Row1 Chris [email protected]
Row2 1
Row2 2
Row2 3
Row3 Alex [email protected]
Row4 1
Row4 2
Row4 4
Row4 7
Row5 John [email protected]
Row6 3
Row2
is merge of 3 rows, Row4
is merge of 4 rows.
What is the easiest way to manage this? Any help would be appreciated.
Here's s brief guide to doing this.
Your design should look something like this
The final output looks like this..
If you want the Value directly under the name then ...
The design should look like this
The final output like this