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 ()
- 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 | Matrices exercise | Create a Matrix of Birthdays
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 ==> | Matrices (5 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 Date Tricks, add a data source which connects to the Movies database and a dataset which selects the following fields from the Actor table:

Add a filter to return only actors whose DoB is not null.
Add three calculated fields to the dataset:
- DayOfBirth = Day(Fields!DoB.Value)
- MonthOfBirth = Format(Fields!DoB.Value, "MMM")
- MonthNumber = Month(Fields!DoB.Value)
Add a matrix to the report and assign fields to it as shown below:

You'll need to change the aggregate function assigned to the FullName field in the Data cell.
Change the sorting applied to the column group so that months are sorted chronologically rather than alphabetically:

You can find sorting options for a group in the Group Properties dialog box.
Add an expression to the BackgroundColor property of the Data cell so that it highlights your birthday:

This would highlight the birthday of someone born on February 3rd.
Apply some other formatting to the matrix and preview the report:

The first few rows and columns of the matrix.
Add a total row and column to the matrix:

You'll need to add the grand total in the bottom-right corner manually.
Preview the report to check that the totals work:

The bottom of the matrix should look similar to this.
Save and close the report.