Show data horizontally in rdlc report

I am using visual studio 2012 with C # and want to use rdlc for some reports. I am a little familiar with reports, and I can show my data on tablix or other controls. But now I need to show the data horizontally. if I use tablix or the data list is displayed vertically:

data1
------
data2
------
data3

But I will not show them like this:

data1 | data2 | data3

and if the first row is empty, go to the second just like a table or list.

Thanks in advance;

+3
source share
1 answer

You need to configure the column group appropriately.

With the same data as above:

enter image description here

Start with the matrix:

enter image description here

.

:

enter image description here

enter image description here

:

enter image description here

+5

All Articles