Almost everything in SSRS is an expression, so you can use VBA code to conditionally set the value of a property.
To set the background color, set the BackgroundColor property of the table cell to:
=IIF(Fields!Mark.Value < 80, "Yellow", "White")
To set the font to bold, set the Font - FontWeight property of the table cell property:
=IIF(Fields!Mark.Value < 80, "Bold", "Normal")
To make the text red, set the Color property of the table cell:
=IIF(Fields!Mark.Value < 80, "Red", "Black")
Chris lΓ€tta
source share