EXERCISE TOPIC▼
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 | Revision of expressions exercise | Creating basic expressions
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.
You can learn how to do this exercise if you attend the course listed below!
Software ==> | SSRS Reporting Services (99 exercises) |
Version ==> | SSRS 2012 and later |
Topic ==> | Revision of expressions (3 exercises) |
Level ==> | Relatively easy |
Course ==> | Advanced SSRS |
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.
The aim of this report is to create a matrix, showing how many actors there are for each season and month of birth:

The "season" is fairly loosely defined. This shows that more actors are born in the winter (hardly surprising, since by our definition Winter lasts twice as long as Summer).
To do this, first create a report called Thespian Theasons, to include a dataset based on the tblActor table of actors.
Now add two calculated fields to your dataset as follows:

The two new fields we'll create, as explained below.
The two new fields should use expressions as follows:
Field | Expression |
---|---|
BirthMonth | Use the Month function to find the month corresponding to the actor's date of birth. |
BirthSeason | Use an IIF function to work out the season in which this month occurred: if the month is after 4 and before 9, we'll call it Summer; otherwise, we'll say this is Winter (at the time of writing this exercise, in early July, it's hard to distinguish between the two). |
Use these fields to build a matrix as shown at the start of this exercise:

The matrix you create doesn't have to look as neat as the one shown at the start of this exercise.
Close down your report, saving any changes.