I am using Microsoft SQL Server 2017 with Reporting Services and Report Builder 2016.
I got a DataSet which looks like:
I've already created a tablix which groups by Name and shows each Name one time and the count of the Name in the table. Something like this:
4 x Foo
2 x Bar
Now, I want to get a text containing all comma separated Names (each Name only one time) and a text containing all comma separated Name counts. It should look like this:
Foo,Bar
4,2
How is this possibile using SSRS Report Builder?
I already tried:
- Use Join() inside tablix (not working)
- Use a List instead of a tablix (generally working but it repeats the items vertically and not horizontally)