The report contains a column called 'Site Name' which contains alpha-number values such as '111 street', '4th Cross', 'Road cross', 'North end street' etc. The sorting expected here is in the form:
111 street 412 Cross North end street Road cross
I am currently using the following syntax for sorting the same -
<?sort:(xdoxslt:convert_case(SiteName,'UPPER'));'ascending';data-type='text'?>
However, the output which I am getting is not as per expected.
North end street Road cross 111 street 412 Cross
Can anyone help me on this.
Thanks, Arun