Search code examples
c#.netreportrdlc

Show data Horizontally in rdlc report


i'm using visual studio 2012 with c# and want to use rdlc for some reports. I'm a little bit familiar with reports and i can show my data on tablix or other controls. But now i need to show data horizontally. if i use tablix or list data shows vertically :

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

But i wan't them to show like this :

data1 | data2 | data3

and if the first line is empty go to the second exactly like what a tablix or list do.

Thanks in advance;


Solution

  • You need to set up the column group approrpriately.

    With the same data as above:

    enter image description here

    Start with a matrix:

    enter image description here

    Remove the row group column and remove any grouping from the column group.

    It should look something like this:

    enter image description here

    enter image description here

    The end result looks like your requirement:

    enter image description here