views:

25

answers:

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?

A: 

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
+1  A: 
  1. Right-click on your text
  2. Goto Placeholder properties
  3. Set the markup type to HTML

From Here and Here

jimconstable
Thanks. I had a hard time to realy click on the text and not on the data container. What a UI...
Malcolm Frexner

related questions