Grouping nodes with same value from XML

cyberghoser1

New Member
Hi I am new in Xslt/Xml.I have XML like that:\[code\]<entry> <attribute1>A</attribute1> <attribute2>B</attribute2></entry><entry> <attribute1>A</attribute1> <attribute2>B</attribute2></entry><entry> <attribute1>C</attribute1> <attribute2>D</attribute2></entry><entry> <attribute1>E</attribute1> <attribute2>F</attribute2></entry>...\[/code\]I need table output:A\[code\]Attribute1 Attribute2 Qty A B 2 C D 1 E F 1\[/code\]I need your help, I have no idea how to count unique entries and display it as one in table.I am using XSLT version 1.0
 
Back
Top