2

In my report I display a record from a table of my database. One of my columns has data formated as html. I want to display this as rendered html.

So

<b>nice header</b>

should render nice header

Can I do this in a report?

Mathias F
  • 15,906
  • 22
  • 89
  • 159

2 Answers2

2
  1. Right-click on your text
  2. Goto Placeholder properties
  3. Set the markup type to HTML

From Here and Here

jimconstable
  • 2,338
  • 18
  • 28
0

one way would be in your case would be to do formatting based on expressions or using .NET code in your report, and saying if you see some html tag to do formatting like "x"

ScaleOvenStove
  • 760
  • 1
  • 7
  • 11