For example, imagine we have a single grouping over the Country field, and we want to alternate the background color property between red and blue. In the BackgroundColor property of the textbox (or complete group line) we would use this expression:
=IIF(RunningValue( Fields!Country.Value , CountDistinct, Nothing) Mod 2 = 1, “Red”, “Blue”)
By using bigger number than 2 for the second operand of the Modulo operator and Select Case expression we could, of course, alternate between more than two colors.