Reputation: 11
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
Reputation:
Try setting the BackgroundColor property of the table row to:
=IIF(Floor((RowNumber(Nothing)-1)/2) Mod 2 = 0, "White", "Yellow")
Upvotes: 4