Subject: Re: Max value from a table
From: Jörg Heinicke <joerg.heinicke@xxxxxx>
Date: Tue, 23 Oct 2001 23:46:35 +0200
|
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="yes"/>
<xsl:variable name="max">
<xsl:for-each select="/table/row/col">
<xsl:sort select="text()" data-type="number" order="descending"/>
<xsl:if test="position() = 1">
<xsl:value-of select="text()"/>
</xsl:if>
</xsl:for-each>
</xsl:variable>
<xsl:template match="*">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
<xsl:template match="col">
<xsl:copy>
<xsl:value-of select="text() div $max"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
Joerg
----- Original Message -----
From: "Mark Harburg" <mharburg@xxxxxxxx>
To: <XSL-List@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Tuesday, October 23, 2001 11:10 PM
Subject: Max value from a table
> I need to find the largest value from a table and use that in calculating
percentage values in my target XML document.
>
> eg.
> ---- FROM ------
> <?xml version="1.0"?>
> <table>
> <row><col>25</col><col>7</col></row>
> <row><col>1</col><col>100</col></row>
> </table>
>
> -- 100 is the largest value in the table - now used to calculate each new
cell as x / 100.
>
> ---- TO ------
> <?xml version="1.0"?>
> <table>
> <row><col>.25</col><col>.07</col></row>
> <row><col>.01</col><col>1</col></row>
> </table>
>
>
> Any ideas?
> Thanks!
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|