How do you shade alternating rows in a SQL Server Reporting Services report?
Edit: There are a bunch of good answers listed below--from quick and simple to complex and comprehensive. Alas, I can choose only one...
|
7
|
How do you shade alternating rows in a SQL Server Reporting Services report? Edit: There are a bunch of good answers listed below--from quick and simple to complex and comprehensive. Alas, I can choose only one...
|
|||
|
|
|
|
Go to the table row's BackgroundColor property and choose "Expression..." Use this expression:
This trick can be applied to many areas of the report. And in .NET 3.5+ You could use:
Not looking for rep--I just researched this question myself and thought I'd share. |
||||
|
|
|
@mharen, Good post. I've had to do this myself, and have to look it up every time b/c I forget the syntax!! |
||
|
|
|
|
Using IIF(RowNumber...) can lead to some issues when rows are being grouped and another alternative is to use a simple VBScript function to determine the color. It's a little more effort but when the basic solution does not suffice, it's a nice alternative. Basically, you add code to the Report as follows...
Then on each cell, set the BackgroundColor as follows:
Full details are on this Wrox article |
||||||
|
|
|
for group headers/footers: =iif(RunningValue(group on field,CountDistinct,"parent group name") Mod 2,"White","AliceBlue") |
||
|
|
|
|
You will get a 'chess' efect when You'll use it on matrix |
||
|
|
|
|
chess effect requires an odd number of columns |
||
|
|
|
|
One thing I noticed is that neither of the top two methods have any notion of what color the first row should be in a group; the group will just start with the opposite color from the last line of the previous group. I wanted my groups to always start with the same color...the first row of each group should always be white, and the next row colored. The basic concept was to reset the toggle when each group starts, so I added a bit of code:
So I have three different kinds of cell backgrounds now:
This works for me. If you want the grouping row to be non-colored, or a different color, it should be fairly obvious from this how to change it around. Please feel free to add comments about what could be done to improve this code: I'm brand new to both SSRS and VB, so I strongly suspect that there's plenty of room for improvement, but the basic idea seems sound (and it was useful for me) so I wanted to throw it out here. |
||
|
|
|
|
My problem was that I wanted all the columns in a row to have the same background. I grouped both by row and by column, and with the top two solutions here I got all the rows in column 1 with a colored background, all the rows in column 2 with a white background, all the rows in column 3 with a colored background, and so on. It's as if What I wanted is for all the columns in row 1 to have a white background, then all the columns in row 2 to have a colored background, then all the columns in row 3 to have a white background, and so on. I got this effect by using the selected answer but instead of passing
Thought this might be useful to someone else. |
||
|
|