EXERCISE TOPIC▼
- Access exercises (91)
- C# exercises (79)
- Excel exercises (278)
- Power Apps exercises (13)
- Power Automate exercises (18)
- Power BI exercises (139)
- Power Platform exercises (157)
- Python exercises (28)
- Report Builder exercises (141)
- SQL exercises (198)
- SSAS exercises (51)
- SSIS exercises (46)
- SSRS exercises (99)
- VBA exercises (85)
- Visual Basic exercises (46)
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 (15)
- 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)
- Using SQL views (3)
- Stored procedures in SSRS (2)
- Stored procedure parameters (2)
- Dropdowns with procedures (3)
- Multivalue parameter procedures (1)
- Improving report navigation (2)
- Linking reports (drilldown) (4)
- Dynamic reports (2)
SSRS Reporting Services | Parameters exercise | Filter Actors with Drop List Parameters
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.
Software ==> | SSRS Reporting Services (99 exercises) |
Version ==> | SSRS 2016 and later |
Topic ==> | Parameters (15 exercises) |
Level ==> | Average difficulty |
Subject ==> | SSRS training |
- 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 I See Dead People and add a data source which connects to the Movies database. Create a dataset which includes the following fields:

Select these fields from the Actor table.
Add a calculated field called Status to the dataset which uses this expression:

Use this basic expression.
Add a table to the report which includes all of the dataset fields.

It doesn't need to look pretty.
Add a parameter called ActorStatus to the report and add an appropriate prompt. Set its data type to Text and provide it with available values as shown below:

Make sure the text in the Value column matches the result of the expression you added earlier.
Add a filter which uses the parameter's value to either the dataset or table and test that it works.

Use the expression builder to make it easy to select the parameter's value.
Add a parameter called ActorGender to the report and add an appropriate prompt. Enable the Allow multiple values option and provide it with available values as shown below:

Make sure the Value column matches the text that is stored in the Gender field.
Add a filter which uses this new parameter to either the dataset or table:

If you use the expression builder, don't forget to delete the (0) characters that appear when you select the parameter.
Use the Parameters panel to arrange the parameters vertically:

Click and drag to move parameters in this panel.
Set the Grouping pane to Advanced Mode and select the (Static) item which corresponds to the DoD column in the table. Assign an expression to its Hidden property so that the column disappears when you're viewing actors who are alive.

You can click on a (Static) item to see its corresponding column selected in the table.
Test that your report works:

The date of death should be hidden for people who haven't actually died yet.
Save and close the report.