Funnel Chart in SSRS

A Funnel Chart in SSRS is useful to visualize the Data in stage-wise. For example, we can use the SSRS Funnel Charts to visualize the number of resources we used in each stage of our product development or Wastage percentage or production cost.

In this article, we will show you how to create an SSRS Funnel Chart, change the Funnel Chart Title, Legend Position, Legend Title, Funnel Chart Font, Funnel Chart Model, Pallet, and Display Data Labels on Funnel Chart in SSRS or SQL Server Reporting Services with an example. 

For this SSRS Funnel Chart, we use the Custom SQL query:

-- Query that we use in Funnel Chart
SELECT Geo.EnglishCountryRegionName AS Country, 
       Geo.StateProvinceName AS State, 
       Geo.City, 
       Prod.EnglishProductName AS ProductName, 
       Prod.Color, 
       Fact.OrderQuantity, 
       Fact.TotalProductCost, 
       Fact.SalesAmount, 
       Fact.TaxAmt, 
       Fact.[Freight]
FROM DimProduct AS Prod 
   INNER JOIN FactInternetSales AS Fact 
      ON Prod.ProductKey = Fact.ProductKey 
   INNER JOIN DimSalesTerritory AS Terry 
      ON Terry.[SalesTerritoryKey] = Fact.[SalesTerritoryKey] 
   INNER JOIN DimGeography AS Geo 
      ON Geo.[SalesTerritoryKey] = Terry.[SalesTerritoryKey]

Create a Funnel Chart in SSRS

In this example, we are going to create a SSRS Funnel Chart to display the Sales amount according to countries. Below screenshot will show you the Data Source and Dataset we used for this Funnel Chart Report.

Data Source and DataSet

In the SSRS report design, we can add a Funnel chart by dragging the Chart property from the Toolbox to Design space. Or we can right-click on the report designer to open the context menu. From the context menu, please select the Insert -> Chart option.

Insert Funnel Chart into the Report 2

Once you select the Chart option, a new window called Select Chart Type will be opened to select the required chart from the available once. For this example, we are selecting Funnel Chart.

Select the Funnel Chart Type 3

Once you click on the Ok button, the Funnel chart will show in the design region with dummy data.

Funnel Chart with dummy data 4

Click on the empty space around the SSRS Funnel Chart will open the Chart Data window

  • Values: Any Numeric (Metric) value such as Total Sales, sales amount, Tax, Customer count etc. All these values will be aggregated using an aggregate function (Sum, Count etc). This is because we are grouping them with the category group items.
  • Category Group: Please specify the Column name on which you want to partition you Funnel Chart.
Add columns to Funnel Chart data 5

As we said before, In this example we create a Funnel chart for Sales by country. So, Drag and drop the Sales Amount column from dataset to chart data values and Country Name in the category group.

Added columns to Values and Category Group Sections 6

Click on the Preview button to see the report preview.

Funnel Chart Preview 7

If you observe the above screenshot, It is providing a perfect result. Still, we are unable to identify the difference between Sales in Germany and Sales in France. To resolve these situations, We have to use the Data Labels.

Add Data Labels to Funnel Chart in SSRS

Right-click on the Funnel chart, and select the Show Data Labels option from the context menu to show the values

Show Data Labels of the Funnel Chart 8

Click on the Preview button to see the Funnel Chart in SSRS report preview.

View Funnel Chart Data Labels 9

Now you can see the Sale difference between two regions.

Change SSRS Funnel Chart Title

To change the Chart title, Please select the Chart title region as we showed in the below screenshot, and change the title as per your requirement. Here we are changing as Sales By Country because the report is displaying the same

Change Funnel Chart Title 10

Format SSRS Funnel Chart Title Font

Please select the Chart title region, and right-click on it will open the context menu. From the menu, please select the Title Properties option.

Next, Within the Font ta,b we can change the Font Size, Font Family, Font Style, and Color. As you can see from the below screenshot, Here we are changing the Font to Century Gothic, and Font size to 14 pt

Format Funnel Chart Title Fonts 14

Show Legend Title of a Funnel Chart in SSRS

To display the Legend title, Please select the Legend region, and right-click on it will open the context menu. From the context menu, please select the Show Legend Title option, as we have shown in the below screenshot.

Please rename the Legend title as per your requirement. Here we will name it as Countries

Funnel Chart Legend Properties 11

Format Legend Position, and Font of a Funnel Chart in SSRS

To format the Legend region, Please Select the Legend region, and right-click on it will open the context menu. From the menu, please select the Legend Properties option.

It will open a new window called the Legend Properties Window. Within General Tab, we have an option called Legend Position, as shown in the below screenshot. You can change the Legend Position by selecting the dot positions.

For now, we are changing the position from default right corner to left corner.

Change Funnel Chart Legend Position 12

Next, Within the Font tab, we can change the Font Size, Font Family, Font Style and Color of a Funnel Chart Legend as shown in below screenshot

Format Funnel Chart Legend Fonts 13

As you can see, we changed the Font to Century Gothic, and Font size to 10 pt

Click the Ok button to close the Properties window, and hit the preview tab to see the report preview

Formatted Funnel Chart Preview 15

Change the Palette of a Funnel Chart in SSRS

We can also change the default Funnel Chart Colors or chart Palette. First, select the Chart and go to properties. Change the palette color by choosing the Palette property as shown in below image

Here we selected the palette color to Excel

Change Funnel Chart Pallete

Click the SSRS Funnel chart preview tab to see the preview

Funnel Chart Preview 17

Change the Funnel Chart in SSRS

SSRS allows us to change the chart type even after creating the chart. To do so First, select the Funnel chart and right-click on it and select the Change Chart Type… option from the context menu

Change Funnel Chart Type 18

Once you select the Change Chart Type… option, it will open a new window called Select Chart Type to select the change. Here we are selecting the 3D Funnel chart

Select 3D Funnel Chart Type 19

Click on the preview tab to see the 3D SSRS Funnel Chart preview

3D Funnel Chart in SSRS 20

From the above screenshot, you can observe that We successfully changed the Chart Type from a two-dimensional funnel to 3D