Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Is this possible to change the font style of a column in SSRS? For excample if Fields!result.Value is less than 10 then change font to font1 and do bold and use underline and etc...
I can change the color of font but not style of font
Posted
Updated 31-Mar-11 9:27am
v2

Set the expression in the Font property -> Expression


=iif(Fields!result.Value < 10, "Bold","Default")
 
Share this answer
 
Yes it is possible.

For all such values, we have an '<Expression...>' option in the property. One can take use of it and set the desired expression in it. Based on certain value, show X or else Y. Put Iif condition on a Fields!result.Value in the expression and set the font style, weight, etc.

Try!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900