Hey!
Not super high priority, but I discovered that when a block of text is dynamically added to a title (ex: =FIRST(Fields!Title) & "Chart") and it happens to contain an ampersand (& the title field loses all it's HTML formatting. All the raw tags are visible.
Any way to escape the ampersand or scrub for it?
Turns out that the solution was to use the "REPLACE()" function:
=REPLACE(Fields!Title, "&", "&") + "<br />Cost Projection<br/><u>Click to return to full company listing</u>"
This replaces the ampersand character with an escaped ampersand character code thereby eliminating the issue.
Thanks Nevron support!