RE: [xsl] how to skip repeating value in the table?

Subject: RE: [xsl] how to skip repeating value in the table?
From: "Cross, Neal - Development Controller" <ncross@xxxxxxxxx>
Date: Fri, 13 Dec 2002 15:03:49 -0000
One way to do it would be to use:
<xsl:if test="position()=1">
	...output name...
</xsl:if>

If you use this on the nodal level of the persons name then it will only
output the name once.

-----Original Message-----
From: Lee, Insoo [mailto:Insoo.Lee@xxxxxx]
Sent: 13 December 2002 14:34
To: 'xsl-list@xxxxxxxxxxxxxxxxxxxxxx'
Subject: [xsl] how to skip repeating value in the table?




  Hello,
  How would skip the repeating table cell?
  For example I have,


  A               B               C
  ----------------------------
  Kevin         English          A
  Kevin         C++              B
  Kevin         Math             A
  Tom          English           B
  Tom           Art               A
  Sarah        C++               A
  Sarah         Math            A


  I'd like to do some sort fo:block skip so that it would print


  A               B               C
  ----------------------------
  Kevin         English          A
                  C++              B
                  Math             A
  Tom          English           B
                  Art               A
  Sarah        C++               A
                  Math            A

  Thanks!


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

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


Current Thread