Bold the particular text in SSRS
I have one column in my stored proc which contains following data: abcs,defs,CA(5,6);wsdf,kdh,CA(7,8) Now I want only data in brackets to be bold and else everything regular, like so: abcs,defs,CA( 5,6 );wsdf,kdh,CA( 7,8 ) Create a custom code function to bold the text: right-click on a non-design part of the report surface, choose Report Properties... and click the Code tab. Enter the following code: Function BoldText(Text As String) As String return Text.Replace("(", "(<b>").Replace(")", "</b>)") End Function Go to your field cell and change the expression for the value from just the field