June 22, 2011 at 8:15 am
We have a report that is grouped by call center..The report looks something like this
CallCenter Day Delivered
1 ALL 50
Mon 12
Tue 13
2 ALL 45
Mon 14
Tue 12
etc
We would like to bold the complete row that has "All" value. Any help would be greatly appreciated!
June 22, 2011 at 8:39 am
you can add an expression to the Font property of the Cells that you want bolded.
=iif(Fields!FieldName.Value="All","Bold","Default")
June 22, 2011 at 10:34 am
If i assume you are using SSRS2008 ,Click on the row then goto properties using F4 and Font weight and click on expression use the below expression
=Iif(Feilds!Day!Value="ALL","Bold","Default").
Thanks & Regards,
Veeren.
Ignore this if you feel i am Wrong. 😉
June 22, 2011 at 4:34 pm
Adding this expression "=iif(Fields!FieldName.Value="All","Bold","Default")" helped resolving the issue. Thanks.:-)
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply