Add alternating row color to SQL Server Reporting Services report

Add alternating row color to SQL Server Reporting Services report

Question: How do you make every other row in a SQL Reporting Services report shaded? 

Answer: In the Table Row’s background color property, enter the following expression:

=IIF(RowNumber(Nothing) Mod 2 = 0, “LightGrey”, “NoColor”)