WISE OWL EXERCISES
SSRS EXERCISES
SSRS REPORTING SERVICES EXERCISES
- Designing a Simple Report (3)
- Data sources and datasets (1)
- Tables (5)
- Grouping tables (6)
- Expressions (8)
- Pages and printing (2)
- Parameters (9)
- Indicators (3)
- Gauges (4)
- Matrices (5)
- Charts (6)
- Data bars and sparklines (2)
- Lists (4)
- Subreports (2)
- Revision of expressions (3)
- Variables (3)
- Embedding code (3)
- Basic Custom Assemblies (2)
- Examples of custom assemblies (1)
- Customising reports (2)
- Stored procedures in SSRS (2)
- Parameters using Stored Procedures (2)
- Dropdown parameters (9)
- Multivalue dropdowns (1)
- Improving report navigation (2)
- Linking reports (drilldown) (4)
- Dynamic reports (2)
SSRS Reporting Services | Grouping tables exercise | Group Films with Dragon in the Title by Genre
This exercise is provided to allow potential course delegates to choose the correct Wise Owl Microsoft training course, and may not be reproduced in whole or in part in any format without the prior written consent of Wise Owl.
The answer to the exercise will be included and explained if you attend the course listed below!
Software ==> | SSRS Reporting Services (96 exercises) |
Version ==> | SSRS 2016 and later |
Topic ==> | Grouping tables (6 exercises) |
Level ==> | Relatively easy |
Course ==> | Reporting Services |
- Go into SQL Server Management Studio;
- Open the SQL file you've just unzipped (you can press CTRL + O to do this); then
- Execute this script.
This will generate the database that you'll need to use in order to do this exercise (note that the database and script are only to be used for exercises published on this website, and may not be reused or distributed in any form without the prior written permission of Wise Owl).
You need a minimum screen resolution of about 700 pixels width to see our exercises. This is because they contain diagrams and tables which would not be viewable easily on a mobile phone or small laptop. Please use a larger tablet, notebook or desktop computer, or change your screen resolution settings.
Create a new report called Enter The Dragon and add a data source which connects to the Movies database.
Create a dataset which selects the following fields:

You'll need the Film and Genre tables to select these fields.
Filter the dataset so that it returns only films whose title contains the word dragon. You could do this by applying a filter to the dataset as shown below:

If you're comfortable writing SQL you could add a WHERE clause to your query instead to achieve the same result.
Add a table to the report and assign fields to it as shown below:

Don't add the Genre field at this stage.
Add a parent group to the (Details) item in the Row Group panel at the bottom of the screen.

Choose to group by the Genre field and don't forget to add a header and footer!
At this point your table should look like this:

The symbols on the left of the table indicate that you have applied grouping to it.
Begin tidying up the table by deleting the top row and the leftmost column.

Your table should now look like this.
Insert a new row at the top of the table, making sure that you do this inside the Genre group.

If you've done this correctly, the table should look like this.
From here you could:
- Merge the cells in the top row and assign the Genre field to it.
- Type in some column headings in the second row.
- Add an aggregate function to the RunTimeMinutes column.
Your table should now look like this:

You can apply the Sum function to the RunTimeMinutes column by picking that field in the bottom-right cell of the table.
Apply some basic formatting so that your report resembles this one:

You could choose to put a page break between each group, although that won't leave many films on each page!
Save and close the report.