[Home] [By Thread] [By Date] [Recent Entries]
Here is a working code:
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="xml" indent="yes" /> <xsl:template match="/alldata">
<alldata>
<xsl:for-each-group select="*" group-starting-with="load">
<load>
<xsl:copy-of select="loadnum"/>
<xsl:copy-of select="start"/>
<xsl:copy-of select="stop"/>
<xsl:copy-of select="current-group()[position() > 1]" />
<total><xsl:value-of select="sum(current-group()[position()
> 1]/@cases)" /></total>
</load>
</xsl:for-each-group>
</alldata>
</xsl:template></xsl:stylesheet> On 10/28/06, Kent Seegmiller <hookjaw20@xxxxxxxxxxx> wrote: >> <total><xsl:value-of >> select="sum(current-group()[self::po/@cases])"/></total> -- Regards, Mukul Gandhi
|

Cart



