xsl-list
[Top] [All Lists]

Re: sum() with decimal-separator ","

2003-09-09 02:03:08

How can I use the function sum() with an
decimal-separator like "," ?

The easiest way is to convert to . first, so

<xsl:variable name="x">
 <xsl:for-each select="row/BUCHWERTBW"
  <BUCHWERTBW><xsl:value-of select="translate(.,',','.')"/></BUCHWERTBW>
</xsl:for-each>
</xsl:variable>

then use your processors node set extension to apply sim to that

<xsl:value-of select="sum(xx:node-set($x)/BUCHWERTBW)"/>

If you your processor is one of teh few without a node-set extension
then ask again and someone will process a recursive loop to do the same
thing.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



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