user1166490
user1166490

Reputation: 11

Alternate row coloring in ssrs 2008

how can I add alternate row coloring where two rows in bunch should display one color and next two rows should display other color.

Upvotes: 1

Views: 1275

Answers (1)

user359040
user359040

Reputation:

Try setting the BackgroundColor property of the table row to:

=IIF(Floor((RowNumber(Nothing)-1)/2) Mod 2 = 0, "White", "Yellow")

Upvotes: 4

Related Questions