Can I use expressions in Sql Server Reporting services to combine all of the values of a column within a group? I'm trying to accomplish what MySQL's group_concat function does, but in the report (not in the query).
Example. I want to make this data:
Group 1 Value
Test
A
B
Test 2
C
D
Look this this in the report:
Group 1 Value
test A, B
test 2 C, D