Re: [xsl] Setting values for variable

Subject: Re: [xsl] Setting values for variable
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 10 Sep 2004 16:53:46 +0100
if I understand your description you want the sum of all Payment
elements plus 2% of the sum of all Balance elemnts that don't have a
sibling Payment so that's just

<xsl:value-of 
  elect="sum(Record/Payment) + 0.02 * sum(Record[not(Payment)]/Balance)"/>

as you see, no variables are required at all.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread