Create your first SSRS report using wizard

In previous postings we have created a data warehouse, created a SSAS cube, now we are going to write a report using SQL Server Reporting Services to create a report against the cube data that we created.

In our example we are going to use the wizard.  The wizard will probably be your biggest helper for 80-90% of the reports that you create, so it is very advantageous to use it.

First open up SQL Server Data Tools or Visual Studio and create a new project like below.

ssrs1

 

Under templates, choose Reporting Services and in the middle section, choose Report Server Project Wizard.  At the bottom give your project a name, I named mine:  CubeReport, then click OK.

ssrs2

 

This brings up the wizard start screen, click next to start the wizard.

ssrs3

 

The first thing we need to do is create a data source.  I am going to name mine Cube and in the drop down for type I am going to choose Microsoft SQL Server Analysis Services.  There are many different types you can select see screenshot below.  Press Edit.

ssrs4

 

Below are the types of connections that can be made, almost all of the Microsoft data products, Oracle, Teradata, and if all else fails; ODBC.

ssrs0

 

Now you need to provide the server name that the Analysis Server is housed on.  Ours is called Wincomputer and then select the name of the database you want to connect to, I am picking FirstCube.  Press Ok when done.

ssrs5

 

That completes the data source setup, press Next to continue.

ssrs6

 

Now we need to create our query to pull the data.  Press the Query Builder button and that will pop up a screen similar to the Browser that we used when we created our Cube.

ssrs7

 

Just like when we created our cube and went to the Browser tab.

ssrs8

 

Like before, we just need to drag and drop the items that we want to include.  First we drag the Customer Amount over.

ssrs9

 

Then we drop over the rest of the fields that we need.  When done press the OK button.

ssrs10

 

That completes our query writing, click Next when ready.  If you look carefully at the query string, it looks similar to a standard SQL statement, but it is a special language called Multidimensional Expressions (MDX).  There is plenty of information if you want to learn about this language by following this link.

https://docs.microsoft.com/en-us/sql/analysis-services/multidimensional-models/mdx/mdx-query-fundamentals-analysis-services

ssrs11

 

This continues the wizard and we need to select what type of report we want to create.  We are going to create a Tabular report, so select it and press Next.

ssrs12

Since we are pulling from a Cube, we just want to add the fields to the Details section of the report.  You do that by selecting the field from the Available Fields column and then clicking the Details button.  Do that for each field.

ssrs13

When that is complete, press Next.

ssrs14

 

That takes us to the final step in the wizard, press Finish.

ssrs15

 

That takes us to the Design tab of our report.  To preview our report, click the Preview tab next to the Design tab in the middle.

ssrs16

After clicking the Preview tab you will see your first report!  It looks ok, but lets make some formatting changes to make it look better.

ssrs17

 

Click the Design tab again and then single click where it said Report1.  Change it to read Sales Data like below.

ssrs18

 

Now lets add some color to our column headings.  Right click the Product Name column heading and pick Text Box Properties (highlighted below).

ssrs19

That brings up the text box properties screen.  If you have ever used Excel, this is like formatting a cell.  I selected the Fill option on the left and will change the fill color of the cell by selecting the drop down that currently is set to No Color.

ssrs20

 

I like Steel Blue, so select that and press OK.

ssrs21

 

That made our column heading blue, but now we cannot read the text.  Right click the column heading again and go to Text Box Properties again.

ssrs23

This time pick the Font choice on the left side and then pick White for the color as seen below.  You can make many different changes to the font on this screen.  When done, press Ok.

ssrs24

 

Now we can read the column name.  Make the same color and font changes to the other two columns.

ssrs25

 

Clicking the Preview tab shows the changes that we made and makes the report easier to read.

ssrs26

 

Now that the report is done, we need to deploy it to the SQL Server Reporting Services server, so users can use the report.  We need to go to Build on the top menu and select Deploy CubeReport or whatever name you called your report.

ssrs27

 

If we look at the output, there were no errors and the report was successfully deployed.  This example assumes you have already installed SSRS and IIS on your server.  If you do not have that done, then the examples below will not work for you.

ssrs28

 

Opening up your web browser, we can browse to http://localhost/ReportServer to run the report.  Select CubeReport.

ssrs29Then click Report1 to run the actual report.  It is named Report1 because we did not change the default name in Visual Studio.

Yayyy….it worked.  Now you can provide the link to users or publish the link to SharePoint, etc.

ssrs31

There are still some items that we can add to make the report more useful.  Next posting we will be adding a drop down so we can parameterize the report.

Happy Reporting!

 

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s