Hi,
> <node>
> <subnode1>test</subnode1>
> <subnode2>test</subnode2>
> <Node2>
> <test1>2</test1>
> <test2>25</test1>
> </Node2>
> <Node2>
> <test1>3</test1>
> <test2>50</test1>
> </Node2>
>
> I want to get the sum of (in the test case)
> 2*25 and 3*50
> So i want to get a result of 200
> How do i do this?
A recursive template that goes throught Node2 elements, summing the results of multiplying the child element values. Dimitre propably has some neat mapping template for this.
Cheers,
Jarno
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|