How to show XML in a report column?

I want to display XML content in a report column, however when I set the report column value to, for example, <xml>sample<xml> only the value “sample” is displayed in the report.

Here is the line of RenderScript code I’m using:

return “<xml>sample</xml>”;

In my report I need to be able to display the XML tag’s as well as the enclosed content.

Is there a way to do this?

I’m not sure if this would work but…have you tried encoding the XML output?

<xml>sample</xml>

Hi Paulo,

I also tried “<xml>sample</xml>” but I get the same result. Is that what you meant by encoding?