As I discussed last week in part 1 of this article, color can be used to highlight common elements across groups. As promised, here's the necessary code to achieve this effect in Reporting Services 2005 (or you can download the finished report here):
1. Create a new report, and add a query. I've used AdventureWorks and a simple query that returns employees and years of service:
--get employees by Department, with years of service from AdventureWorks
SELECT TOP 50 D.[Name] AS [DepartmentName],
EMP.[EmployeeId], C.[FirstName] + ' ' + C.[LastName] AS [EmployeeName],
...