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

Re: Sorting based on a calculated set of values

Subject: Re: Sorting based on a calculated set of values
From: Jeni Tennison <jeni@xxxxxxxxxxxxxxxx>
Date: Mon, 13 Jan 2003 18:05:36 +0000
calcul awk
Hi Andrew,

> And my out put is an HTML table table with four columns:
> Col 1: the item id
> Col 2: the a value
> Col 3: the b value
> Col 4: the product of a and b
>
> Can I sort my output by the fourth column? I know how to sort by the
> item id, a, or b, but don't know what I need to do to properly
> address the calculated value "column".

You can sort by any expression you like by putting it in the select
attribute of xsl:sort. In this case you need:

  <xsl:for-each select="item">
    <xsl:sort select="a * b" data-type="number" />
    <tr>
      <td><xsl:value-of select="@id" /></td>
      <td><xsl:value-of select="a" /></td>
      <td><xsl:value-of select="b" /></td>
      <td><xsl:value-of select="a * b" /></td>
    </tr>
  </xsl:for-each>

Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/


 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.