Questions tagged [muenchian-grouping]

Muenchian Grouping is an XSLT technique for optimizing the grouping of data in an XSL Transform.

Muenchian Grouping, named after it's founder, Steve Muench, is an XSLT grouping technique which improves the efficiency of traditional XSLT grouping (which typically uses preceding-sibling or following-sibling to determine the uniqueness of the node and hence its eligibility to form a new group).

Instead, Muenchian Grouping uses xsl:key to classify groups, in much the same way as a database index works.

188 questions
0
votes
1 answer

How to group by in XSLT 1.0 code below. Need to group by TaxRateCode

I have requirement to group based on "TaxRateCode" tag and filter based on "LineType/Code='AWT'" and do the summation of the "LineGrossAmount/Value" for each of OutboundPayment tag. XML below
0
votes
1 answer

Find distinct values across each node in xslt1.0

I want to find distinct values across each node. but when i use muenchian method it will select distinct values only at top level. Currently i am getting output as: Bag 20 Tray 30 But i want to group type and quantity for each item