[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: problem with spreadsheet-like xml structure

Subject: RE: problem with spreadsheet-like xml structure
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Sat, 11 Jun 2005 21:46:20 +0100
excel xml structure
If you know that the data is in groups of three, you can use

<xsl:template match="row">
  <xsl:for-each select="cell[position() mod 3 = 1]">
    <location>
      <name><xsl:value-of select="."/></name>
      <note><xsl:value-of select="following-sibling::cell[1]"/></note>
      <date><xsl:value-of select="following-sibling::cell[2]"/></date>
    </location>
  </
</

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

> -----Original Message-----
> From: max@xxxxxxxxxx [mailto:max@xxxxxxxxxx] 
> Sent: 11 June 2005 21:40
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject:  problem with spreadsheet-like xml structure
> 
> Hi all,
> 
> I am trying to convert data in an Excel's xml-format to a 
> custom xml-format.
> The logical structure of the Excel data is
> 
> <table>
> <row>
> 
> <cell> location1 <cell>
> <cell> note <cell>
> <cell> date1 <cell>
> 
> <cell> location2 <cell>
> <cell> note2 <cell>
> <cell> date2 <cell>
> 
> <cell> location3 <cell>
> <cell> note3 <cell>
> <cell> date3 <cell>
> 
> </row>
> <row>
> ...
> </row>
> </table>
> 
> What I need is:
> 
> <row>
> 
> <location date="date1">
> <name>location1</name>
> <note>note1</note>
> </location>
> 
> <location date="date2">
> <name>location2</name>
> <note>note2</note>
> </location>
> 
> <location date="date3">
> <name>location3</name>
> <note>note3</note>
> </location>
> 
> <row>
> 
> I can get the location cells ( using position() ) and place 
> the cell data
> into my location element but
> then I don't know how to place the following cells inside 
> this location
> element.
> 
> <xsl:if test="position() =1 ">
> 	<xsl:element name="location">
> 		<xsl:element name="name">
> 				<xsl:value-of select="."/>
> 			</xsl:element>
> 
> 		<!-- PLACE HERE NEXT TWO CELLS -->
> 
> 		</xsl:element>
> </xsl:if>

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.