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

RE: Sorting in descending order on the sum of acalcula

Subject: RE: Sorting in descending order on the sum of acalculation
From: Joshua.Kuswadi@xxxxxxxxxxxxxxxxxxxx
Date: Thu, 29 Nov 2001 16:45:55 +1100
acalcula
Hi there,

>   <xsl:for-each select="//referers/referer">
>    <xsl:sort select="@page" order="ascending"/>
<snip/>
>    </xsl:for-each>

The above xsl:sort is sorting on the page attribute in ascending alphabetical, which results in the output you are getting.

Looks like you will need to group by @page to get all the distinct pages and then sort on the calculation of the number of hits. The below is untested and untried.

<!-- Select all referer elements -->
<xsl:variable name="refererPages" select="//referers/referer" />
<!-- Select the distinct referer elements -->
<xsl:variable name="distinctRefererPages" select="$refererPages[@page != preceding::referer/@page]" />

<xsl:for-each select="$distinctRefererPages">
 <!-- Sort by sum of the hits attribute of all referer elements where the page attribute is the same as that in the $distinctRefererPages -->
 <xsl:sort select="sum(//referers/referer[@page = current()/@page]/@hits)" order="descending" />
</xsl:for-each>

HTH,
Joshua

------------------------------------------------------------------------------
This message and any attachment is confidential and may be privileged or otherwise protected from disclosure.  If you have received it by mistake please let us know by reply and then delete it from your system; you should not copy the message or disclose its contents to anyone.





 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.