Is it possible to concatenate all values of a field into one "word" so it can be displayed in one textBox of the rdlc report. If not, is there some other way to display entire field in one textbox?
Asked
Active
Viewed 3,536 times
0
-
Does this help? http://stackoverflow.com/questions/5552292/how-to-concatenate-values-in-rdlc-expression – Tim Schmelter Jan 23 '13 at 10:32
-
No, I already saw this post. In that case the user wanted to concatenate members of different fields, I need to concatenate members of the same field (for instance all first names of persons) – NDraskovic Jan 23 '13 at 10:35
1 Answers
0
You can do it by using ReportParameter
with multiple values.
However I never used it and I didn't found any article/blog post/forum that exaplain step by step how to accomplish your task.
Maybe this one but they are speaking about SSRS

Gianni B.
- 2,691
- 18
- 31
-
Thanks, I solved it, but on the application level, by adding another column into the DataTable and into putting the concatenated value in each row of that column. That way, I was able to simply group by the concatenated value (and some other values) and got the correct result. Thanks anyway – NDraskovic Jan 24 '13 at 07:59