views:

36

answers:

2

Using Microsoft SQL Server Reporting Services (SSRS), I'm trying to display a report that has hundreds of results. These results are 3 digits numbers and I don't want to have a 10 pages report. I want the display of the information to go Across, and the down after it reached the end of the row (let's just say I want to have 6 results per row.

How can it be achieved?

+1  A: 

Use a matrix/tablix where x is the number of columns you want.

For the row grouping use:

=ceiling(rownumber("Dataset")/x)

For the column grouping use:

=((rownumber("Dataset")-1) mod x)
jimconstable
A: 

I'm trying to display the report in SSRS

Anfigo