Re: [xsl] Problem writing xsl to convert xml to excel

Subject: Re: [xsl] Problem writing xsl to convert xml to excel
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 5 Mar 2004 16:48:38 GMT
Your question is not at all clear but clearly in

 	 <xsl:value-of select="$cnumber"/>		<!-- cnumber is
 	 not working  properly. How can I get this working-->

you are going to get the same value at every stage in the for-each as you
are binding the variable outside the loop.

I think you just want <xsl:value-of select="position()"/> don't you?

You do want a variable for the row as you want thatto be constant in the
inner loop but you don't want xsl:number (I suspect) but just

 <xsl:variable name="rownumber" select="position()"/>

David

-- 
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

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


Current Thread