Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SSRS report with each category a separate table/grid

I am using BIDS and SQL Server Reporting Services (SSRS) 2008 R2 to build a report. And I want the each category to show as a separate table/grid.

Important: the columns (CELERY, EGG etc) are dynamic and come from values in a table, so the person building the report cannot hard-code them into the report. So we are using a matrix control at the moment.

What the report looks like now: before

How I would like the report to look: after

Any ideas?

Thanks, Craig

like image 748
Craig Avatar asked Jun 20 '12 10:06

Craig


People also ask

How do I keep groups together in SSRS?

At the bottom of the report builder, you will see two boxes, Row Groups and Column Groups. Select the Column Groups drop down, click "Advanced Mode" and then in Row groups highlight "Details". In Properties under the "Other" section, select "True" for Keep Together. and save.

How do you split cells in SSRS?

Right-click the Detail group handle (it is the grey box on the left with three horizontal lines when the table is selected), choose Insert Row -> then Inside Group - Below or just Below (depending on whether you are on the top row of the group). Now put the columns where you want them.

Can we use data grids for our report in SSRS?

Using data-grid as my data-source for my report using SQL Server Reporting Services. Is this possible? The simple answer is no.

How do I group columns in SSRS report?

In a tablix data region, click in the table, matrix, or list to display the Grouping pane. Drag dataset fields to the Row Group and Column Group pane to create parent or child groups.


1 Answers

Use a list ontrol and put the matrix inside the list. Use the category as your grouping for the list. Add a textbox just above the matrix to display the category.

like image 156
Stacia Avatar answered Oct 20 '22 11:10

Stacia