Tagged Questions
The muenchian-grouping tag has no wiki summary.
4
votes
2answers
203 views
XSLT group by half hour
Given this XML:
<root>
<row>
<time>08:00</time>
<sales>800</sales>
</row>
<row>
<time>08:15</time>
...
3
votes
1answer
562 views
XSLT split output files - muenchian grouping
I have an XSLT file so as to transform large amount of data. I would like to add a "split" functionality, either as a chained XSLT or within the current XSLT that can create multiple output files so ...
3
votes
3answers
299 views
XSLT 1.0: grouping and removing duplicate
I have a xml grouping challenge for which I need to group AND remove duplicate as below:
<Person>
<name>John</name>
<date>June12</date>
<workTime ...
2
votes
2answers
204 views
XSLT - group response as per month and year combination
I want into write xslt to get response for the input xml. thanks in advance. I want to group output such that month year combination is not repeated for each of the employee details.
Input XML:
...
2
votes
2answers
297 views
Use XSLT to enumerate Nodes with the same name
I have many many XML files that often contain nodes mutiple times (each time with different data).
Example:
<?xml version="1.0" encoding="UTF-8"?>
<SomeName>
<Node>
...
2
votes
2answers
673 views
Muenchian Grouping - group within a node, not within the entire document
I'm trying to use Muenchian grouping in my XSLT to group matching nodes, but I only want to group within a parent node, not across the entire source XML document.
Given XSLT and XML as follows ...
1
vote
2answers
55 views
What is wrong with this merge and dedupe approach?
Given this source document:
<?xml version="1.0" encoding="utf-8"?>
<config>
<group name="global">
<globals>
<item grp="db" prop="userid" value="foo"/>
...
1
vote
1answer
31 views
xslt 1.0, select group of nodes with key
I want to select nodes based on some variables.
The XML code:
<data>
<prot seq="AAA">
<node num="1">1345</node>
<node num="1">11245</node>
...
1
vote
3answers
58 views
muenchian grouping
I was wondering how this predicate([1]), is hardcoded as 1 always in the muenchian grouping. The concept was not clear for me, after a lot of search. It is explained as the current node, is compared ...
1
vote
1answer
61 views
XSLT - How to use group by in this situation?
(A follow up of this thread)
I now actually need to know the amount of visiters grouped by Day and then by period. I tried to apply the group-by suggested by Kirill Polishchuk, but I can only get it ...
1
vote
1answer
95 views
XSLT Problem Using Muenchian Method of Grouping
I'm having a very odd problem with grouping a set of nodes in a document and getting a unique list based on a set of contained values.
Given the following XML:
<Person>
...
1
vote
2answers
286 views
XSLT: How to convert XML into text file with Muenchian Grouping
I hope to get help here one more time. Here is my sample input XML:
<Report>
<RecordValues>
<Record>
<FieldValue fieldName="firm_name" fieldValue="Firm_1"/>
...
1
vote
1answer
532 views
XSLT Grouping and subgrouping
I have the following code:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" />
<xsl:key name="categories" ...
0
votes
1answer
21 views
xslt1.0 (firefox): counting nodes with different value, muenchian-grouping?
Each new problem that I think I will be able to solve, it turns out that I can't.
So, with the following XML I would like to know how many different nodes are there that have a different @num ...
0
votes
2answers
62 views
XSLT Grouping with addition/combination of sub elements
I have the following XML
<InvestmentAccount Id="Element01_Source3_Sequqence002" Type="Standard" InvestmentStrategyId="Employer" ParameterOverrideIds="AllocationRateOverride">
...
0
votes
2answers
273 views
Transpose XML using Muenchian method - multiple groupings
I need to transpose an XML file such as this:
<?xml version="1.0" encoding="UTF-8"?>
<products>
<product id="10" name="Widget 1" price="15.99" category_code="T" category="Toys" ...
0
votes
1answer
356 views
XSLT: output into multiple xml files based on grouping
Let's assume, you have the xml below. The goal is to group by FirstName and export the Person into different xml files. Each output xml files should only contain up to X different FirstName.
Below is ...
0
votes
1answer
100 views
XSLT 1.0 grouping to reformat element defined by date into element defined by task
I have a tricky XSLT transformation and I'd like your advise
My xml is formatted as below:
<Person>
<name>John</name>
<date>June12</date>
<workTime ...
0
votes
1answer
501 views
XSLT: Display unique rows of filtered XML recordset
I've got a recordset that I'm filtering on a particular field (i.e. Manager ="Frannklin"). Now I'd like to group the results of that filtered recordset based on another field (Client). I can't seem to ...
0
votes
1answer
214 views
Sums and Category Grouping with XSLT
With XSLT, how can I change the following:
<root>
<element id="1" State="Texas" County="Dallas" Population="2412827" />
<element id="2" State="Texas" County="Harris" ...
0
votes
2answers
270 views
XSLT - Accessing Key's by index - For example, in Muenchian Grouping
<listings>
<property rln="r317080" firm="f102" agent="a2140">
<street>2638 Maple Avenue</street>
<city>Padua</city>
...