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.…

Quick Time Pro – Issue when attempting to unregister Quicktime Pro 7 and re-register to a different computer

This issue drove me crazy for days. You would think the obvious solution would be to go through the Edit Menu, to Preferences, then Registration and simply remove the name and key. It appears that it is gone until you …