Re: [xsl] Display the number of records in a group

Subject: Re: [xsl] Display the number of records in a group
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 08 Mar 2010 13:16:48 +0000
On 08/03/2010 13:04, anil kumar wrote:
How to show the toatal number of records,
ima failing to get this by  last()
because iam  grouping 11 records into 8 , so the value of last() is
giving 11  which is in correct



I didn't understand that comment, but inside xsl:for-each-group


<xsl:value-of select="last()"/> gives you the number of groups

<xsl:value-of select="count(current-group())"/> gives the number of items in the current group.

I'm not sure which of these numbers you want.

David


________________________________________________________________________ The Numerical Algorithms Group Ltd is a company registered in England and Wales with company number 1249803. The registered office is: Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. ________________________________________________________________________


Current Thread