Change the font to bold for a row in group

  • 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!

  • you can add an expression to the Font property of the Cells that you want bolded.

    =iif(Fields!FieldName.Value="All","Bold","Default")

  • 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. 😉

  • 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