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

Re: Problem with Sum function

Subject: Re: Problem with Sum function
From: Jon Gorman <jonathan.gorman@xxxxxxxxx>
Date: Mon, 22 Aug 2005 11:09:24 -0500
value of sum function
On 8/22/05, Meena Nanjundeswar <meenasargur@xxxxxxxxx> wrote:
> Hi:
>
> My xml file looks like this:
>
> <node1>
>       <childnode1a>
>              <childnode11a>
>                      <value></value>
>                </childnode11a>
>        </childnode1a>
> </node1>
>
> There can be any number of <childnode11a> elements containing <value>.
> Now, I am trying to compute the sum(value). Instead of giving me a
> total sum of all the rows, it display the values individually.

Without seeing your stylesheet I can't but help guessing here, do you
actually have a working sum statement?  One possibility is that your
templates are set up wrong so that just the built in rules are being
used.  Of course, there is the other where you have the template set
up at the wrong level

For example, say I had the xml doc as follows:

 <node1>
       <childnode1a>
              <childnode11a>
                      <value>12</value>
                <childnode11a>
                      <value>22</value>
                </childnode11a>
        </childnode1a>
 </node1>

And if I have a stylesheet like so...

<xsl:template match="childnode11a">
 <xsl:value-of select="sub(value)" />
</xsl:template>

it will always give back the individual values because the scope is
wrong for the results you want.  You're essentially asking it for the
sum of all the value elements, which there will be only one of.

Try something more like the following
<xsl:template match="childnode1a">
<xsl:value-of select="sum(childnode11a/value)" />
</xsl:template>

Without actually seeing your stylesheet I can only guess so much, but
sum should be pretty straightforward.

Jon Gorman

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.