GavinP1983
Programmer
I've got a table:
Value is a range of values - it could be any number of values but I'd like to add them together. I've tried sum but I can't get my head round this. Could someone help?
I tried:
but luck
Code:
<td><xsl:value-of select="Sender"/></td>
<td><xsl:value-of select="Customer"/></td>
<td><xsl:value-of select="Address"/></td>
<td><xsl:value-of select="Gift"/></td>
<td>£<xsl:value-of select="Value"/></td>
<td></td>
Value is a range of values - it could be any number of values but I'd like to add them together. I've tried sum but I can't get my head round this. Could someone help?
I tried:
Code:
<xsl:value-of select="NewDataSet/Table/sum(Value)"/>