xsl-list
[Top] [All Lists]

Re: sum variables from templates

2003-11-27 07:42:22
  I am having a further problem with adding some different variables in
  templates with include some numbers

The scope of a variable binding is the element in which the xsl:variable
appears. In particuar if they are in different templates they are
clearly not in the same scope. so you can not refer to the other
variables.

If you want your total element to output the total, just place the whole
calculation at that point. Without seeing your source doc, its hard to
guess what the calculation should be but something like <xsl:value-of
select="sum(preceding-sibling::question)"/>
if the numbers to be summed are directly in teh source, or a recursive
template otherwise.

David


-- 
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. 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
________________________________________________________________________

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



<Prev in Thread] Current Thread [Next in Thread>