How do I specify the HTML template to get data returned from a query that is HTML text to display formatted instead of the raw HTML text?
For example lets say I run the following query:
select top 1 DesktopHtml from htmltext
order by CreatedDate desc
And my template looks like this:
<html><body>[DesktopHtml]</body></html>
My report looks something like this.
<html><body><p>This is my html text</p></body></html>