Is there a way to convert a column from your data source to an array/concatenated string?
To give a little more detail:
I'm getting back a list of data from my query looking something like this
- blah | x | 1
- words | y | 23
- hello | z | 78
I then need to pass the comma delimited list of column 3 ("1, 23, 78") into a sub-report to be displayed.
Any help would be appreciated.