[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
Re: [xsl] Re: summing attributes problem
Subject: Re: [xsl] Re: summing attributes problem
From: "Mukul Gandhi" <gandhi.mukul@xxxxxxxxx>
Date: Sat, 28 Oct 2006 14:19:41 +0530
|
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>
>with:
><total>
> <xsl:value-of
> select="sum(current-group()[self::po]/@cases)"/>
></total>
>
OK. so I replaced that line but I still get the same error message
(FORG0001: Can not convert string "" to a double...)
--
Regards,
Mukul Gandhi
|