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?
Hi Bob,The problem is because the & operator doesn’t support chaining.You should use something like:=JOIN(Fields!Title, "<br/>") + "<br />Cost Projection<br/><u>Click to return to full company listing</u>"or=JOIN(Fields!Title + "<br />Cost Projection<br/><u>Click to return to full company listing</u>", "<br/>")
Hopefully this helps.
Best Regards,Nevron Support Team