[xsl] xpath simple sum

Subject: [xsl] xpath simple sum
From: Juan Perez <juan.perez@xxxxxxxxxx>
Date: Thu, 25 Oct 2001 12:20:34 +0200
Hi  to everybody,

given,

<xsl:apply-templates
select="//Population_infos/Population_info[@Year='1900']"/>

I can show, for example, 

<xsl:template match="Population_infos/Population_info">
 <xsl:value-of select="@Year"/>
</xsl:template>

it works normally,

but when I want to sum all years of the selection range, it doesn´t work,
only shows years...

<xsl:template match="Population_infos/Population_info">
			<xsl:value-of select="sum(Population)"/>
</xsl:template>

any suggestion to sum them?...

Thanks

Juan

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


Current Thread