Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Show data Horizontally in rdlc report

Tags:

c#

.net

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;

like image 443
113408 Avatar asked Mar 21 '23 19:03

113408


1 Answers

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

like image 145
Ian Preston Avatar answered Apr 03 '23 17:04

Ian Preston