SQL Server Reporting Services (SSRS) – Alternate row colors with no group, 1 group, or multiple groups

In order to do alternate row coloring for an SSRS report that has grouping, you need an expression for your BackgroundColor property different than the typical:

=iif(rownumber (nothing) mod 2 = 0, "LightGrey", "White")

You can use the following expression …