hi!
i have an xml like this:
<Ownership_Shareholders_S>
<Ownership_Shareholders>
<CUSTOMER_31>A</CUSTOMER_31>
<PERCENT_NAME_OF_OWNERS_32>40%</PERCENT_NAME_OF_OWNERS_32>
</Ownership_Shareholders>
<Ownership_Shareholders COLL_ID="1">
<CUSTOMER_31>A</CUSTOMER_31>
<PERCENT_NAME_OF_OWNERS_32>30%</PERCENT_NAME_OF_OWNERS_32>
</Ownership_Shareholders>
<Ownership_Shareholders COLL_ID="2">
<CUSTOMER_31>B</CUSTOMER_31>
<PERCENT_NAME_OF_OWNERS_32>20%</PERCENT_NAME_OF_OWNERS_32>
</Ownership_Shareholders>
<Ownership_Shareholders COLL_ID="3">
<CUSTOMER_31>B</CUSTOMER_31>
<PERCENT_NAME_OF_OWNERS_32>29%</PERCENT_NAME_OF_OWNERS_32>
</Ownership_Shareholders>
</Ownership_Shareholders_S>
i need help for writing a xslt that transforms these data in the following
A 40%
...30%
B 20%
...29%
(without the "...")
So, i need the data to be grouped by the customer field. how can it be done? thanks!