Subject: Re: Usage of sum with RTF
From: "Ranjan K. Baisak" <ranjanbaisak@xxxxxxxxx>
Date: Tue, 18 Jan 2005 21:25:10 -0800 (PST)
|
I could able to solve it
<xsl:variable name="purchaseTotalLength">
<xsl:for-each
select="exslt:node-set($purchaseTotalcount)/*">
<sub>
<xsl:value-of select="@val"/>
</sub>
</xsl:for-each>
</xsl:variable>
<xsl:value-of
select="sum(exslt:node-set($purchaseTotalLength)/sub)"/>
Still I am not sure why xsl-copy is not working?
thanks
-Ranjan
--- "Ranjan K. Baisak" <ranjanbaisak@xxxxxxxxx> wrote:
> I could able to solve it
> <xsl:variable name="purchaseTotalLength">
> <xsl:for-each
> select="exslt:node-set($purchaseTotalcount)/*">
> <sub>
> <xsl:copy-of select="@val"/>
> </sub>
> </xsl:for-each>
> </xsl:variable>
> <xsl:value-of
>
select="sum(exslt:node-set($purchaseTotalLength)/sub)"/>
>
> Still I am not sure why xsl-copy is not working?
>
> thanks
> -Ranjan
>
>
>
>
> __________________________________
> Do you Yahoo!?
> Yahoo! Mail - Helps protect you from nasty viruses.
> http://promotions.yahoo.com/new_mail
>
>
__________________________________
Do you Yahoo!?
Yahoo! Mail - Helps protect you from nasty viruses.
http://promotions.yahoo.com/new_mail
|