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

XPATH Conditional Values and Sums

Subject: XPATH Conditional Values and Sums
From: "Puneet Railan" <PRailan@xxxxxxx>
Date: Mon, 9 Aug 2004 17:34:18 -0400
xpath conditional select
I've got some code that is supposed to be able to grab specific nodes
and sum them based upon what attribute they have.  Needless to say, it
is not cooperating.  I've attached some of the code below:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="*">
  <xsl:for-each select=".">
   <xsl:call-template name="GetSum">
    <xsl:with-param name="filter1" select="."/>
   </xsl:call-template>
  </xsl:for-each>
 </xsl:template>
 <xsl:template name="GetSum">
  <xsl:param name="filter1" select="."/>
  <xsl:variable name="SSL" select="//SSL"/>
  <xsl:for-each select="$SSL">
   <xsl:if
test="generate-id($SSL[/PBS/Data/@name])=generate-id($SSL[current()/PBS/
Data/@name])">
    <xsl:value-of
select="sum($SSL[/PBS/Data/@name=current()/PBS/Data/@name]/PBS/Data"/>
   </xsl:if>
  </xsl:for-each>
 </xsl:template>
</xsl:stylesheet>

Any ideas on what I can do?  The key part there is the for-each loop
with the $SSL variable and it's not summing based on the current node by
attribute.  Thanks.

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.