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 | Basic Custom Assemblies exercise | Use a custom assembly function to change colours
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 2012 and later |
Topic ==> | Basic Custom Assemblies (2 exercises) |
Level ==> | Average difficulty |
Subject ==> | SSRS training |
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 exercise (which you can do using either VB or C#) is to change the fill colour of the rows of a table whenever the certificate changes:

Whenever the certificate changes, we swap colour.
To do this, create a report called Blue in parts, and within this create a basic table above. Eventually you'll set the back colour of each row to be an expression similar to:
However, we have to write the BackColour function first! To make a start on this, in your VB class create the following private variables and constants:
'the current certificate, whose name we are monitoring
Private Shared CurrentCertificate As String = ""
'whether to use the first colour or the second
Private Shared IfFirstColour As Boolean = True
'the two colours to use
Private Const FirstColour As String = "#FFEEFF"
Private Const SecondColour As String = "#EEFFEE"
Alternatively, if you're using C#:
// the current certificate, whose name we are monitoring
private static string CurrentCertificate = "";
// whether to use the first colour or the second
private static bool IfFirstColour = true;
// the two colours to use
private const string FirstColour = "#FFEEFF";
private const string SecondColour = "#EEFFEE";
Write a function called BackColour which spits out either the value of FirstColour or SecondColour, given a certificate name.
For each certificate you should compare its name to the one held in the variable CurrentCertificate. If they're not the same, you should reset the value of the IfFirstColour flag, then reset CurrentCertificate to be the latest certificate name ready for the next call to the function.
When (if?) you've got all of this written and built, see if you can get your report working as shown at the start of this exercise!