RE: [xsl] selecting associated headings based on sequence position

Subject: RE: [xsl] selecting associated headings based on sequence position
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Thu, 31 Jul 2008 10:25:52 +0100
> I figured out a solution:
> 
> <xsl:template match="Cell">
> <xsl:variable name="pos" select="position()"></xsl:variable>
> <b><xsl:value-of 
> select="/Worksheet/Table/Row[1]/Cell[position() eq 
> $pos]/Data"/></b> <xsl:value-of select="Data"></xsl:value-of><br/>
> </xsl:template>
> 

You need to be aware that this won't work if there are empty cells. Excel
doesn't output empty elements to represent such cells, rather it includes
attributes on the next cell that isn't empty to give its position.

Michael Kay
http://www.saxonica.com/

Current Thread