I have an XML which gets transformed with an XSLT into an excel sheet on a webpage. The element tags in XML becomes column headers in EXCEL. There are columns which would like to have spaces. We don't like underscores or hyphens coming in excel sheet headers. How to I incorporate space in an XML tag/element? I tried putting or %20 or #&20; etc etc . (all kinds of syntax) but all of them shows error on xml editor itself saying this hexadecimal character is not allowed
My XML is
<ClientArray>
<Client>
<LastName>Aanonsen</LastName>
<FirstName>Fred</FirstName>
<Additional Remarks><Additional Remarks>
</Client>
I want a space between additional and renamrks in the tag Please help. thanks in advance