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]
Other format: [Raw text]

Re: Adding subtotals to a report


David Messing 477-1289 wrote:
> <xsl:template match="ScheduleVariance">
...
> 		<td><font color="gold"><b>Total</b></font></td>
> 		<xsl:for-each select="Employee">
> 		<xsl:variable name="subtotals">
> 			<subtotal><xsl:value-of select="Total" /></subtotal>
> 		</xsl:variable>
> 		<tr>
> 			<xsl:call-template name="Employee" />
> 		</tr>
> 		</xsl:for-each>
...
> I get the report formatted the way they want it, but when I try to add
 > this to it to get subtotals, I get variable is not defined or in scope.

That's because the variable is not in scope. The scope
of variables is the enclosing element, in this case
the for-each statement working on your Employee elements.

Why don't you access the totals directly?

  <tr>
  	<td></td>
  	<td><b>Totals</b></td>
  	<td></td>
  	<td></td>
  	<td></td>
  	<td></td>
  	<td></td>
  	<td><xsl:value-of select="sum(Employee/Total)" /></td>
  </tr>

J.Pietschmann


 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]