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

Muenchian grouping difficulties

I am building a Sharepoint search results page to find the answers to questions asked in a 3rd party tool. I have a bdc connection to their sql db. I am crawling just one one table in the db. I need to group question and answer results together…
0
votes
2 answers

Muenchian Grouping XSLT

This is my XML: Fl 17
Francesco Irrera
  • 445
  • 4
  • 21
0
votes
1 answer

Select Distinct Element into a node XSLT

This is my XML code: 22 92 22 92
Francesco Irrera
  • 445
  • 4
  • 21
0
votes
1 answer

XSLT no grouping on 2nd level

I need to transform some data using xslt. Basically, I need to group the info per customer. Afterwards, all date & time values should be displayed per customer level. I must mention that I don't have to display only distinct values. …
chopstix21
  • 21
  • 4
0
votes
1 answer

Muenchian Grouping - display second level base on row count

With help of Tim from my previous post, i was able to get the Muenchian grouping working for my test xml/xsl. But while working with my actual xml i encountered a different scenario as below. The input xml looks like, reduced it for simplicity. As…
Kiran
  • 95
  • 1
  • 1
  • 7
0
votes
1 answer

XSLT split sorted data into different tables

I'm trying to format my xml data into two HTML tables. I successfully can sort some dummy data xls:sort, but I can't split up the sorted data into different tables. My xml: text1 text2
0
votes
0 answers

selecting nodes based on the attribute value

I have been struggling for days to determine how to take an XML file of game results (teams and final scores) and generate a team standings list shows each team along with how many times they won, lost or tied based on game status(played). I was…
0
votes
1 answer

XSLT can't figure out how to group properly

I have the following XML file, which is exported from an Oracle-DB: http://pastebin.com/0yPcc7HT I need to transform it to the following structure: 59957
gasparuff
  • 2,295
  • 29
  • 48
0
votes
1 answer

How to extend a Muenchian XML grouping?

I have this XML: Thanks to hr_117's help, I managed to do…
Tintin81
  • 9,821
  • 20
  • 85
  • 178
0
votes
1 answer

Get distinct values from xml

My sample xml looks below: I need to get the distinct states from xml. I am using xslt 1.0 in vs 2010 editor. 2 DE
Blossom
  • 127
  • 2
  • 14
0
votes
2 answers

XSLT 1.0: rename elements with same content

It seemed like an easy task but I am totally stuck now. I have the following XML: ITEM_CODE ITEM_NAME
Peter
  • 1,786
  • 4
  • 21
  • 40
0
votes
1 answer
0
votes
2 answers

XSLT 1.0: Muenchian grouping does not work

I have the following simplified XML structure: LIN 1
Peter
  • 1,786
  • 4
  • 21
  • 40
0
votes
1 answer

How to improve performance on grouping/sorting in XSLT1.0

I have an XML that looks like - Request Audio Visual Services
0
votes
3 answers

XSLT Loop - Four nodes at a time

Firstly I am aware of this question: XSLT: Loop selecting two elements at a time However I have not found it to work due to the element structure or I just fail with using mod, one of the two. 1 3
Mike
  • 618
  • 2
  • 8
  • 27
1 2 3
12
13