Search code examples
reporting-servicesssrs-tablix

How to make a specific letter of a word bold and underlined in ssrs?


I am trying to make the first letter of a word bold and underlined. But I am having a hard time doing it.

e.g. Sample Result


Solution

  • Set Markup Type to HTML (Placeholder Properties, General), then create an expression.

    Example:

      ="<b><u>" & LEFT(Fields!Header.Value, 1) & "</u></b>" & MID(Fields!Header.Value, 2, LENGTH(Fields!Header.Value)-1)