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;
source
share