Saturday, August 03, 2013

SSRS Interview Questions: Change Cell color in SSRS

To change the color of a cell based on any value you can set expression for background color of that cell.
so let say when age is income is greater than 10000 then the cell color will be green while if its less than 10000 then its red. Expression for this will be
=IIF(Fields!Column.Value > 10000, "green", "red")
Check the below screen shot for changing property.i


No comments:

Post a Comment