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 | Expressions exercise | Lookup Books and Authors
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 ==> | Expressions (8 exercises) |
Level ==> | Harder than average |
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 report called For Kids Who Can't Read Good and add data sources which connect to the Movies and Books databases.
Create a dataset which selects the following fields from the Books database:

Use the Book and Author tables to select these fields.
Add a table to the report and assign fields so that it resembles the one shown below:

Create three empty columns ready to display data from a second dataset.
Create a new dataset which includes these fields from the Movies database:

You can get these three fields from the Film table.
Add a calculated field called ReleaseYear to the dataset which calculates the year in which each film was released.
Add expressions to the relevant columns of the table which use the Lookup function to return the Title and ReleaseYear of the film based on each book.

Here's how to return the title of a film. Life is much easier when your datasets have columns with matching names!
Add an expression to the Delay column of the table which subtracts the YearPublished field from the value of the Year Released column.

You can refer to a text box in the ReportItems collection but check its name first!
Sort the table in descending order of Delay. You'll need to use an expression to do this and you can't refer to a report item!

Is that enough time to finish War and Peace?
Save and close the report.