View Single Post
  #5 (permalink)  
Old May 15th, 2007, 04:58 AM
lahatfield lahatfield is offline
Registered User
 
Join Date: May 2007
Location: , , .
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thanks very much Micheal!

That work 99% perfectly :)

The only question i have is I see the code at the top which skips PartnerCode when writing out the first column, but it still writes out the data for partner code so it appears like this

        Partner1 Partner2
Column1 Partner1 Partner1
Column2 50% 25%
Column3 20% 30%

I presume I need to exclude that field from this for each ;

    <xsl:for-each select="../../row/*[position()=$p]">
      <td><xsl:value-of select="."/></td>
    </xsl:for-each>

can you help me out with the syntax ?

thanks

Reply With Quote