xsl-list
[Top] [All Lists]

Re: [xsl] Re: summing attributes problem

2006-10-28 01:49:55
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() &gt; 1]" />
       <total><xsl:value-of select="sum(current-group()[position()
&gt; 1]/@cases)" /></total>
     </load>
   </xsl:for-each-group>
 </alldata>
</xsl:template>

</xsl:stylesheet>


On 10/28/06, Kent Seegmiller <hookjaw20(_at_)comcast(_dot_)net> 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

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>