How to display the name in front of value

  • Hi ,

    I want to display name infront of the value in SSRS.......for example

    coverage type of B=22

    and 22 from from this expression Sum(IIF(Fields!Coverage_Type.Value = "B",1,0))

    How to display "coverage type of B" in front of the value......

    Thanks

    raghu

  • In the field you should be able to simply concatenate the data. So something like...

    = "coverage type of B" & Sum(IIF(Fields!Coverage_Type.Value = "B",1,0))

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply