Stairway to SQL Server Reporting Services

Tablix Tutorial – Level 4 in the Stairway to Reporting Services

,

Tablix Tutorial – Level 4 in the Stairway to Reporting Services

“Ah ha – I found you!” your manager cries in triumph as he leaps out from behind a plastic plant.  Dejected, you turn to face him.

“I’ve already created a basic report and pulled some data.   I’m just about to-“, you explain quickly to him before he cuts you off.

“Just get it done.  Big Boss needs that report ASAP.”  With those words, your manager turns and walks away.

You sit down heavily in your chair and click on SQLServerCentral.com.  It’s time to read the Stairway to Reporting Services again.  This article shows how to group information, adjust for dynamic column and row groups, and generally use the tablix in Reporting Services.

Table + Matrix + List = Tablix

The tablix, the SSRS vehicle used to display rows of data, is a new report item introduced in SQL Server Reporting Services 2008.  Three previous report items: the table, the matrix, and the list, were combined into one: the tablix, due to their similarities.  A view of what the tablix contains is shown in Figure 1.

Tablix View

Figure 1. Tablix View

To start using the tablix, look at the Toolbox in Business Intelligence Development Studio (BIDS); however, you will not see a tablix report item.  Instead, you will see the table, the matrix, and the list are shown separately, as seen in Figure 2.  No matter which item you pull to the designer, Reporting Services will still use a tablix under the covers.

Toolbox for SSRS

Figure 2. Toolbox Showing the Tablix Templates

Note: If you do not see the Toolbox in BIDS, click the View menu > Toolbox selection or type Ctrl + Alt + X.  In the Toolbox, all report items are under the Report Items header.

Let’s start by looking at the first tablix template, the table.

Table

A table is simply an object that displays rows of data that can be grouped and aggregated.  If our data contains a static list of columns, we want to use the Table report item.  Let’s start by pulling over the Table report item from the Toolbox.  Since we’ve already created our data source and dataset, we can start setting up the table.  Let’s begin by selecting data for the table to display.  Each report item can only show data from one dataset, so you will need to specify the desired dataset.  Set the dataset by going to the Properties pane > DataSetName property > and selecting your dataset.  The Properties pane can be seen in Figure 3.

Table properties

Figure 3. Properties Pane with DataSetName Property

Now, we can use the dataset fields to design the display of the table.  There are a few different ways to set up the fields on our table:

  • Pull over the field from the Report Data pane
  • Select the field from the drop down list in the top right corner of each textbox as shown in Figure 4
  • Go into the textbox’s properties and select the field from the dropdown list

select field

Figure 4. Table Field Selection

Whichever method you use, a simple layout will look similar to Figure 5.

Simple table layout

Figure 5. Simple Table Layout

Grouping

A tablix displays a table row for every dataset row through the “Details” group.  The Details group provides a basis to help us understand other grouping concepts.  Every time Reporting Services sees a unique row, it will create a new detail group.  In the same way, additional groupings will create a new group for every unique value that it finds.  Let’s walk through creating a group to illustrate the concept.

Begin by going to the Grouping panes.  In editions prior to SSRS 2008, you can find these panes under the Properties window of the table and matrix.  In later editions, you will see these panes at the bottom of the designer in BIDS, as shown in Figure 6.

row and column grouping windows

Figure 6. Row and Column Grouping Windows

Because we are working on a table template, let’s create a row group.  Select the down arrow to the right of the Details group in the Row Groups pane.  You have multiple options, including Add Group.  Select the Add Group option > Parent Group option, and select the desired column.  Check the checkboxes to include a group header and footer in the Tablix group window.  A completed screen can be seen in Figure 7.

Tablix group window

Figure 7. Completed Tablix Group Window

Once you select OK, you will see the table design, as shown in Figure 8.

table design with group

Figure 8. Table Design with Group

You describe each column by typing a title or aggregation into the header row or footer row.  Let’s create a total for the group by using an expression.  Right-click on the intersection of the last column and last row of your table.  Each intersection contains a textbox, so you are actually clicking on the textbox that marks the spot!  Select Text Box Properties… to open the Text Box Properties screen.  In the Value field, enter =SUM(Fields!TotalDue.Value) as shown in Figure 9.

text box properties

Figure 9. Text Box Properties

Before running the report, let’s look at the matrix template of the tablix.  We discussed grouping before covering the matrix because it is the core of understanding the difference between a table and the matrix, coming up next.

Matrix

While very similar to a table, the matrix adds the ability to group and aggregate on columns as well as rows.  This results in the display of data growing along the x-axis as well as the y-axis.  You create column groups similar to row groups, except instead of making the changes in the Row Groups pane, you use the Column Groups pane.  An example of a report that utilizes the matrix template shows sales for each country for several months.  The design view of this report can be seen in Figure 10.

matrix layout

Figure 10. Matrix Layout

List

The list is often forgotten when discussing the tablix because it just too darn simple!  A list contains one row and one column and repeats for every dataset row.  If you need to create a report that doesn’t follow any of the formats we’ve seen up to this point, you’ll want to use a list.  You can place textboxes within the list to create a freeform design to match any design your end users can dream up.

Formatting

Your end users may also want to format the data in different ways.  Because formatting is applied at the text box level, you can make these changes to the tablix in table, matrix, or list form.  On our existing table-based report, let’s make some formatting changes: Column sorting and Font properties.

Column Sorting

Almost every report you write needs column sorting to show your data in a particular order.  Begin by single left-clicking anywhere in the tablix.  Once the table is highlighted, you will see a little gray square in the top left corner of the tablix.  Right-click on this square, and select Tablix Properties…, as shown in Figure 11.

tablix properties

Figure 11. Select Tablix Properties window

In the Properties window, select the left menu entitled Sorting.  Select the desired column under Column, and A to Z under Order to sort the column in ascending order.  The completed screen can be seen in Figure 12.  Click OK to exit the menu.  Keep in mind that any group can also have a sort, so if the output is not as expected, ensure other sorts are not overriding the one you just created.

completed sorting pane

Figure 12. Completed Sorting Pane

Font Properties

Next, let’s move onto font properties, a fancy term for making the font look pretty.  To use this feature, select all header columns in the tablix.  In the Properties pane, go to the Font property > FontWeight property > Bold selection.   Selecting this property can be seen in Figure 13.

font properties

Figure 13. Properties Pane with Font Property Selection

After all of the preparing, grouping, and formatting, we have a finished report!  Select the Preview button to see what we have completed up to this point, as shown in Figure 14.

Final report view

Figure 14. Final Report View

Up next: Dessert!

At this point, we have walked through the core of creating Reporting Services reports.  We’ve shown data in a table and matrix form, including grouping, sorting, and formatting.  This will provide the requested data to meet most end users’ requests.  Because we always want to give the best product to our users, our next step is to learn how to add some charts and maps to really add the frosting to our reports for Big Boss.  We will create these visualizations in Charting the Unknown, our next article in the Stairway to Reporting Services series.

This article is part of the parent stairway Stairway to SQL Server Reporting Services

Rate

You rated this post out of 5. Change rating

Share

Share

Rate

You rated this post out of 5. Change rating