Nitin Dhawan CRM Discussion

A CRM Monster

Adding alternating row color to SSRS report

Posted by nitindhawan on June 27, 2009

Steps:

  1. Goto Report Designer in SSRS Solution
  2. Go to the table row’s BackgroundColor property and choose “Expression”
  3. Add expression

             =IIf(RowNumber(Nothing) Mod 2 = 0, "Green", "Transparent")

With this approach we can target any area in report.

Leave a Reply

You must be logged in to post a comment.