I've been trying to do this until I can't figure it out how,
I just wanted to concatenate multiple rows into one row and make it the value of the final column query. To illustrate;
Initial Query:
ColumnOne
---------
Row1 | 1 - One
Row2 | 2 - Two
Row3 | 3 - Three
I want to do something like,
1 - One, 2 - Two, 3 - Three
The Final Result should like these:
Name | Age | Text
-----------------
Paul | 12 | 1 - One, 2 - Two, 3 - Three
John | 34 | 1 - One, 2 - Two, 3 - Three
Alex | 15 | 1 - One, 2 - Two, 3 - Three
I'll be using the Text Column as a description for an RDL field
Anyone pls.?