Serdia
Serdia

Reputation: 4428

How to make hardcoded text BOLDED in SSRS page header?

I have page header in my SSRS report. Using Visual Studio 2010. In a text box I have this expression:

="Date From : " & Parameters!DateFrom.Value & Environment.NewLine() & "Date To: " & Parameters!DateTo.Value & Environment.NewLine()

But how can I make hardcoded "Date From : " and "Date To: " looks BOLD? Or different color?

enter image description here

My expression:

enter image description here

Upvotes: 0

Views: 513

Answers (1)

alejandro zuleta
alejandro zuleta

Reputation: 14108

You will have to create two placeholders, one for Date To and other for Date From.

Right click the inside of your textbox and select Create Placeholder:

enter image description here

Use ="Date To" and bold the text using the menu bar icon.

enter image description hereenter image description here

Then add another placeholder for the rest of the expression.

enter image description here

Upvotes: 1

Related Questions