Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to bold / unbold tablix text with an expression?

I have an expression in a textbox of a tablix control:

="Rectification: " + Fields!MoreInfo.Value

What I would like to do is have the word 'Rectification:' in bold and the rest of the text unbolded. Unfortunately I've no idea how to do this.

I've tried the following (as per a suggestion from Google):

="<b>Rectification:</b> " + Fields!MoreInfo.Value

However this shows the tags in their literal form. It also appears that expressions on the bold context apply to the entire textbox and cannot apply to only some parts of it.

like image 747
Michael A Avatar asked Dec 09 '22 21:12

Michael A


1 Answers

I believe you'll need to use placeholders to accomplish this.

Here's an excellent tutorial.

like image 145
Stafford Williams Avatar answered Jan 06 '23 04:01

Stafford Williams