[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Max value from a table

Subject: Re: Max value from a table
From: Jörg Heinicke <joerg.heinicke@xxxxxx>
Date: Tue, 23 Oct 2001 23:46:35 +0200
max value in a table
<?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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.