SQL Server Reporting Services (SSRS) – Dealing with alternating colors on rows with column sorting in a list report in SSRS Reports

Let’s say you have an address database table and you define a column for row number such as this:

SELECT ROW_NUMBER() OVER(ORDER BY LName) AS 'RowNumber',*
FROM   NameAndAddressTable
ORDER BY LName, FName

If you want to alternate between LightGrey and …

SQL Server Reporting Services (SSRS) – How to display all the values of a Parameter in a SSRS Report

In your expression method of the textbox, instead of:

=Parameters!someParameter.Value

Do this instead:

=Join(Parameters! someParameter .Value, ", ")

This will join all the values, separated by a comma.…