Web Designer
Tutorial 5.1: Create a Simple Pivot Report
Get Started > Tutorial 5: Create Pivot Report > Tutorial 5.1: Create a Simple Pivot Report

A simple Pivot report contains a Tablix data region. This report uses the default row and column groups to display data.

What You Will Learn

This tutorial guides you through the steps to create a simple Pivot report using Tablix data region.

Note: This tutorial uses shared data set - CustomerOrders. The shared data sets and shared data sources can be viewed or modified in the Administrator Dashboard. For information on adding shared data sets, see Tutorial 7.1: Add Shared Data Set.

After you complete this tutorial, you will have a report that looks similar to the following.

Access the ActiveReports Web Designer and Add Data Set

  1. On the ActiveReports Server Report Portal, click Create report. 
    The ActiveReports Web Designer opens in the new browser tab.    
  2. Select Blank RDL Report template and then click Choose Data.
  3. Select CustomerOrders data set from the available shared data sets. 
  4. Click Create Report. The CustomerOrders data set is added to the report.

Create Report Layout

Drag and drop Tablix data region  onto the design area of the report.

You see a row group area and a column group area as shown.

To add a static row to display labels (static text) for the column group,

  1. Right-click the column group area to view the options in the context menu.
  2. Go to Row and select Outside Group - Above.

    Now the tablix in the design area looks as shown.

Bind Data to Tablix Data Region

Let us now populate the Tablix data region with data. We want the titles to be displayed along the rows, different media types along the columns, and the total price corresponding to these.

  1. Click the drop down next to the CustomerOrders data set to view fields in the added data set.
  2. Drag and drop the Title field onto the row group area as shown.
     
  3. Drag and drop the MediaType field on the column group.
  4. Similarly, drag and drop the Price field onto the body of the tablix.

    To display the aggregate price for the media types,

  5. Select the body area containing Price field.
  6. Go to Properties pane and select the radio button next to Value property.
  7. Select Expressions... from the drop down and enter the following expression in the Expression Editor:
     =Sum(Fields!Price.Value).

Add Labels to Tablix Data Region

To merge the cells in the tablix corner area (top left),

  1. Select the cells in the tablix corner area using mouse drag or simply using Ctrl+Click combination.
  2. Right-click the selected cells to view the options in the context menu, go to Cells, and select Merge Cells.

    To provide labels to the columns,

  3. Enter text 'Prices by Media Type'.
  4. Select the text box above the column group MediaType and enter the text 'Media Type'.
    Now the tablix has column labels as shown.

Manage Data

In Tablix data region, you need to manage how a grouped data is rendered across the rows and columns. This is done by using Group Expressions as explained below.

  1. From the Explorer , select the Tablix data region.
  2. Click the Group Editor icon  to display row groups and column groups.

    To display the titles once for every row group:

  3. Select Title (Tablix1_RowGroup1) row group and go to the Properties pane.
  4. In the Group Expressions property, click Show Items and then select Add Item.
  5. Click the radio button to display the fields and select the Title field.

    To display the media types once for every column group:

  6. Select MediaType (Tablix1_ColumnGroup1) column group and go to the Properties pane.
  7. In the Group Expressions property, click Show Items and then select Add Item.
  8. Click the radio button to display the fields and select the MediaType field.

Add Report Title

  1. Drag and drop a TextBox control  above the tablix. If required, relocate the tablix to create space for the text box.
  2. Click inside the text box and enter the text 'Customer Orders Price List'.

Customize the Appearance of the Pivot Report

Note: You may need to resize and reposition the controls on the report to accommodate data, and for a cleaner look.

  1. To apply borders to tablix, select the Tablix data region and set the BORDER - Style property to Solid.
  2. To customize the static row of the tablix and the title of the report, set the following properties for text boxes with text 'Prices by Media Type', 'Media Type', and 'Customer Orders Price List'.
    Property Value
    BACKGROUND - Color Plum
    TEXT - Font Weight Bold
    TEXT - Text Align Center
    BORDER - Style Solid
  3. To customize the body area and group area of the tablix, set the following properties.
    Property Value
    Body area (=Sum([Price]))
    BORDER - Style Solid
    TEXT - Text Align Center
    Row group area (=[Title])
    BORDER - Style Solid
    Column group area (=[MediaType])
    TEXT - Text Align Center
    BACKGROUND - Color MediumOrchid

Preview and Save Report

  1. Click Preview  to view your report in the final output.
  2. Exit the preview mode by clicking Back on the top left side of the designer.
  3. Switch to the File tab and click Save to open the Save dialog box. Enter the report name and click Save Report. You can also provide a description and a revision comment for the report.