I am trying to sort descr fields in BIP rtf template, and this is how I was able to sort it using the command <?sort:DESCR;'ascending';data-type='text'?>
:
DESCR:
I want my sorting to push AVP finance to the end in the following order:
Is there a way to do it BI Publisher? as I can't edit the query or the xml to do that.
Thanks
BI Publisher sorts uppercase prior to lowercase. So "Z" would before "a".
You can convert it to uppercase first, that will remove the problem.
This will sort by DESCR
after converting everything to uppercase:
<?sort:(xdoxslt:convert_case(DESCR,'UPPER'));'ascending';data-type='text'?>
You may have to go into the Advanced properties to do something more advanced like this.