This is basic requirement from client we need add the alternative row background color in table. In SSRS we are not able find any direct properties to add the alternative color in table.
The below are my Tablix without alternative row colors
Follow the below steps:
Step: 1 Select the details row group from Tablix.
Step: 2 And then go the Properties Window.
Step: 3 Add the below expression in BackgroundColor expression.
Expression:
=IIF( ROWNUMBER (NOTHING) MOD 2, “WhiteSmoke”, “LightCyan” )
Report Output:
Leave a Reply