Plotting a Bell Curve in SQL Server Reporting Services

By:   |   Comments (1)   |   Related: > Reporting Services Development


Problem

I need to plot a distribution of data, but would prefer to use a line instead of a histogram. Also, I need the basic statistics of the data set to appear on the page. How can I do this?

Solution

SQL Server Reporting Services (SSRS) will allow you to plot a distribution of data with a line instead of a histogram along with basic statistics such as min, max, mean, standard deviation, median and mode. This will need to be done with multiple queries and it is important to set up and test your queries to return the values you would like to display.

Let's start with a blank report instead of using the SSRS Report Wizard. In the Solution Explorer, left click on Reports, select Add, select New Item.

Create a blank report.

The blank report is shown below.

Blank report created.

In the Report Data window, right-click on Data Sources and then choose Add Data Source.

Add data source

In the Data Source Properties window, define an embedded connection, define a new shared data source, or select an existing shared data source reference. Click on OK when finished.

Define your data source

Next, we want to add 3 datasets. The first for the data that will plot the curve, a second dataset for the basic statistics, and a third dataset for the mode alone. Because there can be more than one mode in a set of data, we will handle mode differently later in this tip. Right-click on Datasets in the Report Data window and choose Add Dataset...

Define your data set

In the Dataset Properties window

  • name the dataset something descriptive
  • select the data source created above
  • enter your count query that will be used to plot the curve
  • click OK.
  • Define the data set for the curve

    The Report Data window should appear as shown below. We see the dataset along with its fields (columns).

    Report Data window after adding the first dataset

    Next, we will add our second dataset that contains basic statistics about the data in the plot. The T-SQL used in the query is shown here with the properties window below the query.

    select 
    count(*) as [Count],
    min(x)   as [Min],
    max(x)   as [Max],
    round(avg(x),2)   as [Mean],
    round(stdev(x),2) as [Standard Deviation],
    (
     (select max(x) from
       (select top 50 percent x from dbo.tblNormalDistribution order by x) AS BottomHalf)
     +
     (select min(x) from
       (select top 50 percent x from dbo.tblNormalDistribution order by x desc) AS TopHalf)
    ) / 2 AS Median
    from dbo.tblNormalDistribution
    


    Define your data set for count, mean, median, standard deviation, min and max

    The Report Data window should now show both datasets.

    Report Data window after adding the second dataset

    The third dataset for mode will be added as demonstrated here. This needs to be a separate dataset because there can be more than one mode. The results of this query will need to be placed in its own table so all of the returned rows can be displayed.

    Define the dataset for mode

    The Report Data window should display all three datasets with their fields. Now we are ready to add the graphical components to our reports.

    Report Data window after adding the third dataset

    In our report palette, right-click on the palette and choose Insert, then Chart.

    Insert a chart

    In the Select Chart Type window, click on Smooth Line and then OK. If you have a sufficient number of data points, you might get similar results with the Line chart type.

    Click on Smooth Line Chart Type

    In the image below, we see the default chart settings for the Smooth Line chart type. These will need to be changed and we will walk through these steps next.

    Default Smooth Line Chart settings

    Click on the chart. In the Chart Data window, click on the green plus sign to the right of Values to "Add field". Choose your data source, the name of the data set that contains the curve plot data, and the y value to be plotted on the chart.

    Set the y-axis values

    By default, a sum field is also added as shown below.

    Sum field added by default

    Next, we will add our x-axis values by clicking on the green plus sign to the right of Category Groups to "Add field" and then selecting our x-axis field.

    Sum field added by default

    Our chart data configuration is now complete.

    Completed Chart Data configuration

    Next, we will modify the horizontal axis. I have expanded the chart so it fills in the entire width of the report. Right-click on the horizontal axis and then click on "Horizontal Axis Properties...".

    Select Horizontal Axis Properties

    In the Horizontal Axis Properties window, we want to choose "Axis Options" and set "Axis Type" to "Scalar" so we can set the numeric properties of the axis.

    Set Axis Type to Scalar

    Now we will create expressions for the Minimum, Maximum and Interval. For each expression, click on the "Fx" button to the right of the drop-down list box. We will use the following expression to pull the Min field from our Statistics dataset we created above and then set the value for the Minimum horizontal axis value: =First(Fields!Min.Value, "Statistics"). If you wish to set the value to a constant number, you can do that also.

    Please ignore the warning message.

    Set the minimum axis value.

    We will use the following expression to set the value for Maximum: =First(Fields!Max.Value, "Statistics")

    Set the maximum axis value.

    Next, we will set the interval to 5.

    Set the interval to 5.

    The Horizontal Axis Properties window should now appear as shown here.

    Horizontal Axis Properties window

    Click on Major Tick Marks and set the Interval to 5 as we did above on the Axis Options page. Click OK.

    Horizontal Axis Properties window

    Please note the report will NOT look correct in the Design view.

    Report in Design view

    Click on Preview to see the rendered report.

    Report in Preview window

    Next, we want to create tables for the fields in our Statistics and Mode datasets. At the bottom of the report, right-click and choose Insert, and then choose Table.

    Insert a table

    A blank table is inserted.

    Blank table inserted

    Drag and drop each field from the Statistics dataset into the table's columns.

    Table populated with Statistics fields

    Insert a second table and then drag and drop each field from the Mode dataset into the table's columns.

    Table populated with Mode fields

    After some minor formatting, we see the report in the Preview window..

    Report in the Preview Window
    Next Steps

    You can make changes to the Chart Title, Axis Titles, add a report header and footer, and do some more formatting of the tables. Also, make sure the report renders correctly on the report server. Finally, please check out these other tips and tutorials on SSRS on MSSQLTips.com.



    sql server categories

    sql server webinars

    subscribe to mssqltips

    sql server tutorials

    sql server white papers

    next tip



    About the author
    MSSQLTips author Dallas Snider Dr. Dallas Snider is an Assistant Professor in the Computer Science Department at the University of West Florida and has 18+ years of SQL experience.

    This author pledges the content of this article is based on professional experience and not AI generated.

    View all my tips



    Comments For This Article




    Wednesday, January 24, 2024 - 6:56:49 PM - Kalaivani Back To Top (91884)
    I tried plotting Bell Curve in my SSRS report. But I am getting 2 peaks instead of one even though my mean value is just a single value. What could be the reason for that? And where we are giving the mean value in the chart axis options to show that peak or is it calculating that automatically? Thanks!














    get free sql tips
    agree to terms