I have to do a report summary table that will be displaying the same data. Tried using the xdoxslt:distinct_values to group the same value but it does not work nor it displays any error.
What I have right now:
001 - 1
002 - 1
001 - 1
What I need to achieve:
001 - 2
002 - 1
To eliminate the distinct values for the 001 I used the code as per below
<?CwaProductCode[not(.=preceding::CwaProductCode)]?>
Tried using the code as per below to count the distinct values but it does not work
<?count(xdoxslt:distinct_values(CwaProductCode))?>
Any suggestions?