This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: sum() of nodeset


> I have xml file like this:
> ----------xml-------------
> <xml>
> <row m=1 y=1999 v=3 />
> <row m=1 y=2000 v=43 />
> <row m=2 y=1999 v=6 />
> <row m=2 y=2000 v=56 />
> ...
> </xml>
> Now, I am trying to get sum of values for a particular m 

with <xml> as the context node,
<xsl:value-of select="sum(row[@m='1']/@v)"/>

Mike Kay
> 


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]