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 function


| I need to sum all <amount> fields where //cashflow/when='now'.

select="sum(//cashflow/amount[when='now'])"

I try to avoid using a leading // if I can, so it might
be better to get your current node context correct
using <xsl:for-each> or by including the sum above
in an appropriately-scoped match="xxx" template so
you can do:

select="sum(cashflow/amount[when='now'])"

without the //

______________________________________________________________
Steve Muench, Lead XML Evangelist & Consulting Product Manager
BC4J & XSQL Servlet Development Teams, Oracle Rep to XSL WG
Author "Building Oracle XML Applications", O'Reilly
http://www.oreilly.com/catalog/orxmlapp/





 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]