Highlight a line in the report?

I have an SSRS report that displays hundreds of rows. I was wondering if there is anyway I can highlight the rows so that I can easily find out which row I am in to access the report.

Any thoughts?

+2


a source to share


2 answers


This cannot be done in SSRS 2005. You cannot take any dynamic action after the report has been generated.



+1


a source


As per this question on how to highlight lines (background) with a different color for the mouse over a property , it looks like this is not one that is supported by the software. This means that you will need to create or find a custom report item according to your needs.

However, another approach would be to use additional background colors in Reporting Services :



  • Go to the line Fill property and select Expression Text box properties
  • Add something like =IIF(RowNumber(Nothing) Mod 2, "Silver", "White")

    Fill Expression
+1


a source







All Articles