|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Re: summing attributes problem
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
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Cast Your Vote
We need your help – Vote for DataDirect XML Products!
Winners and finalists announced at SOA World Conference in November. Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|







