SSRS Table Report

In this article, we will show you how to create an SSRS Table Report (without using Report Wizard in SQL Server Reporting Services) with a practical example.

Creating SSRS Table Report

After creating the New SSRS Project, We have three folders in the solution explorer, such as Shared Data SourcesShared Datasets, and Reports. The reports folder is enough to design a basic SSRS report.

Reports folder in Solution Explorer 1

In the solution explorer, Right-click on Reports folder ->Add -> New Item.

Add New Item Option 2

It will open the Add New Item window with all the available options. Please select the Report option and rename it as per your requirements. In this Table Report example, We are renaming it as NEW SSRS REPORT.rdl.

Select New Report from Window 3

Click on the Add button to create a Blank report, as shown in the below screenshot.

Bank Report 4

If you don’t find the Toolbox, then press Ctrl+Alt+X or go to the View tab and select the Toolbox.

Table Report 5

Drag and drop a table from the SSRS Toolbox to the Data region.

Add Table to Report 6

In this example, we use the already created Data Source and Dataset. Please refer to Embedded Data Source and Embedded Dataset article to check the data.

  1. Create Block Grouped Table Report with Totals
  2. Create Group On Page Table Report
  3. Create Drill Down Table Report with Totals
  4. Create Stepped Grouped Table Report
  5. Highlight Min and Max Rows
  6. Add Multiple fields to a single column
  7. Change the Background color of Minimum and Maximum Table Columns

We can add the Column names to the SSRS Table report in two ways:

  • We can Drag the Column name from the Report data to the Table Column.
  • When we click on a particular cell, the context menu will open, displaying available column names in that Dataset. We can select the required column from the list as shown in the screenshot below.
Add Columns to Table Report 7

We successfully created our first table report. The columns we selected for our First report are English Product Name, Color, Sales Amount, and Tax Amount (Renamed the TaxAmt).

Table Report 8

Click on the Preview button to see the SSRS Table report preview.

SSRS Table Report 9