3

特定のセルのテキストをインデントする必要があります。特定のセルは、子を持つxml要素です。

私のXMLは次のとおりです。

<rows>

<row id="FOLDER1">
    <cell image="blank.gif">Folder 1</cell>
    <cell/>
    <cell/>
    <cell/>
    <cell/>
    <cell/>
    <cell/>
    <cell sum="1">$23</cell>
    <row id="FOLDER2">
        <cell image="blank.gif">Folder 2</cell>
        <cell/>
        <cell/>
        <cell/>
        <cell/>
        <cell/>
        <cell/>
        <cell sum="2">$11</cell>
        <row id="FOLDER3">
            <cell image="blank.gif">Folder 3</cell>
            <cell/>
            <cell/>
            <cell/>
            <cell/>
            <cell/>
            <cell/>
            <cell sum="3">$44</cell>
            <row id="pro1">
                <cell image="blank.gif">Product 1</cell>
                <cell>324234</cell>
                <cell>3.00</cell>
                <cell>Kilo</cell>
                <cell>1.00</cell>
                <cell>No</cell>
                <cell>euro 33.33</cell>
                <cell>euro 33.33</cell>
            </row>
            <row id="pro2">
                <cell image="blank.gif">Product 2</cell>
                <cell>4354354</cell>
                <cell>1.00</cell>
                <cell>Kilo</cell>
                <cell >0.50</cell>
                <cell>No</cell>
                <cell>euro 2.53</cell>
                <cell>euro 1.26</cell>
            </row>

        </row>
        <row id="pro3">
            <cell image="blank.gif">Product 3</cell>
            <cell>435436</cell>
            <cell>10.00</cell>
            <cell>Kilo</cell>
            <cell>Yes</cell>
            <cell>euro 0.36</cell>
            <cell>euro 3.60</cell>
        </row>

        <row id="pro4">
            <cell image="blank.gif">Product 4</cell>
            <cell>435435</cell>
            <cell>3.28</cell>
            <cell>Kilo</cell>
            <cell>1.00</cell>
            <cell>No</cell>
            <cell>euro 17.38</cell>
            <cell>euro 17.38</cell>
        </row>
    </row>
</row>
<row id="FOLDER1">
    <cell image="blank.gif">Folder 4</cell>
    <cell/>
    <cell/>
    <cell/>
    <cell/>
    <cell/>
    <cell/>
    <cell sum="1">$23</cell>
</row>

私のXSLTは次のとおりです。

<?xml version="1.0" encoding="ISO-8859-1"?>

<?mso-application progid="Excel.Sheet"?>
<xsl:stylesheet version="1.0"
    xmlns:html="http://www.w3.org/TR/REC-html40"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns="urn:schemas-microsoft-com:office:spreadsheet"
    xmlns:o="urn:schemas-microsoft-com:office:office"
    xmlns:x="urn:schemas-microsoft-com:office:excel"
    xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet">


  <xsl:param name="header1">Header1</xsl:param>
  <xsl:param name="header2">Header2</xsl:param>
  <xsl:param name="header3">Header3</xsl:param>
  <xsl:param name="header4">Header4</xsl:param>
  <xsl:param name="header5">Header5</xsl:param>
  <xsl:param name="header6">Header6</xsl:param>
  <xsl:param name="header7">Header7</xsl:param>
  <xsl:param name="header8">Header8</xsl:param>

  <xsl:template match="rows">

    <Workbook>
      <Styles>
        <Style ss:ID="Default" ss:Name="Normal">
          <Alignment ss:Vertical="Bottom" />
          <Borders />
          <Font />
          <Interior />
          <NumberFormat />
          <Protection />
        </Style>
        <Style ss:ID="s21">
          <Font ss:Size="22" ss:Bold="1" />
        </Style>
        <Style ss:ID="columnheaders">
          <Font ss:Size="12" ss:Bold="1" />
        </Style>
        <Style ss:ID="s22">
          <Font ss:Size="14" ss:Bold="1" />
        </Style>
        <Style ss:ID="s23">
          <Font ss:Size="10"  />
        </Style>
        <Style ss:ID="s24">
          <Font ss:Size="10" ss:Bold="1" />
        </Style>
      </Styles>

      <Worksheet ss:Name="data">
        <Table>
          <Column ss:AutoFitWidth="0" ss:Width="300" />
          <Column ss:AutoFitWidth="0" ss:Width="95" />
          <Column ss:AutoFitWidth="0" ss:Width="95" />
          <Column ss:AutoFitWidth="0" ss:Width="175" />
          <Column ss:AutoFitWidth="0" ss:Width="186" />
          <Column ss:AutoFitWidth="0" ss:Width="185" />
          <Column ss:AutoFitWidth="0" ss:Width="113" />
          <Column ss:AutoFitWidth="0" ss:Width="133" />


          <Row ss:AutoFitHeight="0" ss:Height="18">
            <Cell ss:StyleID="columnheaders">
              <Data ss:Type="String">
                <xsl:value-of select="$header1"/>
              </Data>
            </Cell>
            <Cell ss:StyleID="columnheaders">
              <Data ss:Type="String">
                <xsl:value-of select="$header2"/>
              </Data>
            </Cell>
            <Cell ss:StyleID="columnheaders">
              <Data ss:Type="String">
                <xsl:value-of select="$header3"/>
              </Data>
            </Cell>
            <Cell ss:StyleID="columnheaders">
              <Data ss:Type="String">
                <xsl:value-of select="$header4"/>
              </Data>
            </Cell>
            <Cell ss:StyleID="columnheaders">
              <Data ss:Type="String">
                <xsl:value-of select="$header5"/>
              </Data>
            </Cell>
            <Cell ss:StyleID="columnheaders">
              <Data ss:Type="String">
                <xsl:value-of select="$header6"/>
              </Data>
            </Cell>
            <Cell ss:StyleID="columnheaders">
              <Data ss:Type="String">
                <xsl:value-of select="$header7"/>
              </Data>
            </Cell>
            <Cell ss:StyleID="columnheaders">
              <Data ss:Type="String">
                <xsl:value-of select="$header8"/>
              </Data>
            </Cell>
          </Row>

          <xsl:apply-templates select="row"/>

        </Table>
      </Worksheet>

    </Workbook>

  </xsl:template>


  <xsl:template match="row">
    <xsl:variable name="rowID">
      <xsl:number level="any" format="1"/>
    </xsl:variable>
    <Row ss:AutoFitHeight="0" ss:Height="18">
      <xsl:for-each select="cell">
        <xsl:variable name="colID">
          <xsl:number value="position()" format="A"/>
        </xsl:variable>
        <Cell ss:StyleID="s23">
          <Data ss:Type="String">
            <xsl:value-of select="translate(.,'?','&#8364;')"/>
          </Data>
        </Cell>
      </xsl:for-each>
    </Row>

    <xsl:apply-templates select="row"/>
  </xsl:template>


</xsl:stylesheet>

変換から生成された私の出力:

    <?xml version="1.0" encoding="UTF-8"?>
<Workbook xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:html="http://www.w3.org/TR/REC-html40" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet">
    <Styles>
        <Style ss:ID="Default" ss:Name="Normal">
            <Alignment ss:Vertical="Bottom"/>
            <Borders/>
            <Font/>
            <Interior/>
            <NumberFormat/>
            <Protection/>
        </Style>
        <Style ss:ID="s21">
            <Font ss:Size="22" ss:Bold="1"/>
        </Style>
        <Style ss:ID="columnheaders">
            <Font ss:Size="12" ss:Bold="1"/>
        </Style>
        <Style ss:ID="s22">
            <Font ss:Size="14" ss:Bold="1"/>
        </Style>
        <Style ss:ID="s23">
            <Font ss:Size="10"/>
        </Style>
        <Style ss:ID="s24">
            <Font ss:Size="10" ss:Bold="1"/>
        </Style>
    </Styles>
    <Worksheet ss:Name="data">
        <Table>
            <Column ss:AutoFitWidth="0" ss:Width="300"/>
            <Column ss:AutoFitWidth="0" ss:Width="95"/>
            <Column ss:AutoFitWidth="0" ss:Width="95"/>
            <Column ss:AutoFitWidth="0" ss:Width="175"/>
            <Column ss:AutoFitWidth="0" ss:Width="186"/>
            <Column ss:AutoFitWidth="0" ss:Width="185"/>
            <Column ss:AutoFitWidth="0" ss:Width="113"/>
            <Column ss:AutoFitWidth="0" ss:Width="133"/>
            <Row ss:AutoFitHeight="0" ss:Height="18">
                <Cell ss:StyleID="columnheaders">
                    <Data ss:Type="String">Header1</Data>
                </Cell>
                <Cell ss:StyleID="columnheaders">
                    <Data ss:Type="String">Header2</Data>
                </Cell>
                <Cell ss:StyleID="columnheaders">
                    <Data ss:Type="String">Header3</Data>
                </Cell>
                <Cell ss:StyleID="columnheaders">
                    <Data ss:Type="String">Header4</Data>
                </Cell>
                <Cell ss:StyleID="columnheaders">
                    <Data ss:Type="String">Header5</Data>
                </Cell>
                <Cell ss:StyleID="columnheaders">
                    <Data ss:Type="String">Header6</Data>
                </Cell>
                <Cell ss:StyleID="columnheaders">
                    <Data ss:Type="String">Header7</Data>
                </Cell>
                <Cell ss:StyleID="columnheaders">
                    <Data ss:Type="String">Header8</Data>
                </Cell>
            </Row>
            <Row ss:AutoFitHeight="0" ss:Height="18">
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">Folder 1</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">$23</Data>
                </Cell>
            </Row>
            <Row ss:AutoFitHeight="0" ss:Height="18">
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">Folder 2</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">$11</Data>
                </Cell>
            </Row>
            <Row ss:AutoFitHeight="0" ss:Height="18">
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">Folder 3</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">$44</Data>
                </Cell>
            </Row>
            <Row ss:AutoFitHeight="0" ss:Height="18">
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">Product 1</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">324234</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">3.00</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">Kilo</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">1.00</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">No</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">euro 33.33</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">euro 33.33</Data>
                </Cell>
            </Row>
            <Row ss:AutoFitHeight="0" ss:Height="18">
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">Product 2</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">4354354</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">1.00</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">Kilo</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">0.50</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">No</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">euro 2.53</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">euro 1.26</Data>
                </Cell>
            </Row>
            <Row ss:AutoFitHeight="0" ss:Height="18">
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">Product 3</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">435436</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">10.00</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">Kilo</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">Yes</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">euro 0.36</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">euro 3.60</Data>
                </Cell>
            </Row>
            <Row ss:AutoFitHeight="0" ss:Height="18">
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">Product 4</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">435435</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">3.28</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">Kilo</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">1.00</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">No</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">euro 17.38</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">euro 17.38</Data>
                </Cell>
            </Row>
            <Row ss:AutoFitHeight="0" ss:Height="18">
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">Folder 4</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">$23</Data>
                </Cell>
            </Row>
        </Table>
    </Worksheet>
</Workbook>

そして、Excelで開いたときの様子は次のとおりです。 スクリーンショット

セルを再帰的にインデントする必要があります。また、行に子があるかどうかを確認する必要があります。子がある場合は、編集しないままにするだけでなく、イタリックにする必要があります。それがどのように見えるべきかの例:

*Folder1*
   *Folder2*
       *Folder3*
          Product1
          Product2
   Product3
   Product4
 Folder4

これが私が取得する必要のあるxmlです:

    <?xml version="1.0" encoding="UTF-8"?>
<Workbook xmlns:o="urn:schemas-microsoft-com:office:office" xmlns="urn:schemas-microsoft-com:office:spreadsheet" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns:html="http://www.w3.org/TR/REC-html40" xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet">
    <Styles>
        <Style ss:ID="Default" ss:Name="Normal">
            <Alignment ss:Vertical="Bottom"/>
            <Borders/>
            <Font/>
            <Interior/>
            <NumberFormat/>
            <Protection/>
        </Style>
        <Style ss:ID="s21">
            <Font ss:Size="22" ss:Bold="1"/>
        </Style>
        <Style ss:ID="columnheaders">
            <Font ss:Size="12" ss:Bold="1"/>
        </Style>
        <Style ss:ID="s22">
            <Font ss:Size="14" ss:Bold="1"/>
        </Style>
        <Style ss:ID="s23">
            <Font ss:Size="10"/>
        </Style>
        <Style ss:ID="s24">
            <Font ss:Size="10" ss:Bold="1"/>
        </Style>
        <Style ss:ID="parent1">
            <Font ss:Size="10" ss:Italic="1"/>
        </Style>
        <Style ss:ID="parent2">
            <Alignment ss:Indent="1"/>
            <Font ss:Size="10" ss:Italic="1"/>
        </Style>
        <Style ss:ID="parent3">
            <Alignment ss:Indent="2"/>
            <Font ss:Size="10" ss:Italic="1"/>
        </Style>
        <Style ss:ID="children3">
            <Alignment ss:Indent="3"/>
            <Font ss:Size="10"/>
        </Style>
        <Style ss:ID="children2">
            <Alignment ss:Indent="2"/>
            <Font ss:Size="10"/>
        </Style>
    </Styles>
    <Worksheet ss:Name="data">
        <Table>
            <Column ss:AutoFitWidth="0" ss:Width="300"/>
            <Column ss:AutoFitWidth="0" ss:Width="95"/>
            <Column ss:AutoFitWidth="0" ss:Width="95"/>
            <Column ss:AutoFitWidth="0" ss:Width="175"/>
            <Column ss:AutoFitWidth="0" ss:Width="186"/>
            <Column ss:AutoFitWidth="0" ss:Width="185"/>
            <Column ss:AutoFitWidth="0" ss:Width="113"/>
            <Column ss:AutoFitWidth="0" ss:Width="133"/>
            <Row ss:AutoFitHeight="0" ss:Height="18">
                <Cell ss:StyleID="columnheaders">
                    <Data ss:Type="String">Header1</Data>
                </Cell>
                <Cell ss:StyleID="columnheaders">
                    <Data ss:Type="String">Header2</Data>
                </Cell>
                <Cell ss:StyleID="columnheaders">
                    <Data ss:Type="String">Header3</Data>
                </Cell>
                <Cell ss:StyleID="columnheaders">
                    <Data ss:Type="String">Header4</Data>
                </Cell>
                <Cell ss:StyleID="columnheaders">
                    <Data ss:Type="String">Header5</Data>
                </Cell>
                <Cell ss:StyleID="columnheaders">
                    <Data ss:Type="String">Header6</Data>
                </Cell>
                <Cell ss:StyleID="columnheaders">
                    <Data ss:Type="String">Header7</Data>
                </Cell>
                <Cell ss:StyleID="columnheaders">
                    <Data ss:Type="String">Header8</Data>
                </Cell>
            </Row>
            <Row ss:AutoFitHeight="0" ss:Height="18">
                <Cell ss:StyleID="parent1">
                    <Data ss:Type="String">Folder 1</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">$23</Data>
                </Cell>
            </Row>
            <Row ss:AutoFitHeight="0" ss:Height="18">
                <Cell ss:StyleID="parent2">
                    <Data ss:Type="String">Folder 2</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">$11</Data>
                </Cell>
            </Row>
            <Row ss:AutoFitHeight="0" ss:Height="18">
                <Cell ss:StyleID="parent3">
                    <Data ss:Type="String">Folder 3</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">$44</Data>
                </Cell>
            </Row>
            <Row ss:AutoFitHeight="0" ss:Height="18">
                <Cell ss:StyleID="children3">
                    <Data ss:Type="String">Product 1</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">324234</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">3.00</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">Kilo</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">1.00</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">No</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">euro 33.33</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">euro 33.33</Data>
                </Cell>
            </Row>
            <Row ss:AutoFitHeight="0" ss:Height="18">
                <Cell ss:StyleID="children3">
                    <Data ss:Type="String">Product 2</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">4354354</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">1.00</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">Kilo</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">0.50</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">No</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">euro 2.53</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">euro 1.26</Data>
                </Cell>
            </Row>
            <Row ss:AutoFitHeight="0" ss:Height="18">
                <Cell ss:StyleID="children2">
                    <Data ss:Type="String">Product 3</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">435436</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">10.00</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">Kilo</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">Yes</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">euro 0.36</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">euro 3.60</Data>
                </Cell>
            </Row>
            <Row ss:AutoFitHeight="0" ss:Height="18">
                <Cell ss:StyleID="children2">
                    <Data ss:Type="String">Product 4</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">435435</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">3.28</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">Kilo</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">1.00</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">No</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">euro 17.38</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">euro 17.38</Data>
                </Cell>
            </Row>
            <Row ss:AutoFitHeight="0" ss:Height="18">
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">Folder 4</Data>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String"/>
                </Cell>
                <Cell ss:StyleID="s23">
                    <Data ss:Type="String">$23</Data>
                </Cell>
            </Row>
        </Table>
    </Worksheet>
</Workbook>

取得する必要のあるxmlを使用したスクリーンショット: ここに画像の説明を入力してください

4

1 に答える 1

7

インデントについては、各レベルに必要なインデントのサイズを保持するための新しいパラメーターを追加することから始めます。この場合、私は4つのスペースを使用しています。

<xsl:param name="indentAmount" select="'    '" />

次に、 row要素に一致するテンプレート内に、使用する現在のIDのサイズを格納するパラメーターを設定できます。これは、最初は空の文字列(つまり、インデントなし)にデフォルト設定されます。

<xsl:template match="row">
   <xsl:param name="indentation" select="''" />

行テンプレートを再帰的に呼び出す場合は、パラメーター化されたインデント量を現在のインデントに追加するだけで、それを増やすことができます。

<xsl:apply-templates select="row">
  <xsl:with-param name="indentation" select="concat($indentAmount, $indentation)" />
</xsl:apply-templates>

次に、最初のセルのインデントパラメータを出力する場合です。

<Data ss:Type="String">
   <xsl:if test="$colID = 'A'">
      <xsl:value-of select="$indentation" />
   </xsl:if>
  <xsl:value-of select="translate(.,'?','&#8364;')"/>
</Data>

イタリックの場合は、新しいスタイルを簡単に定義できます

 <Style ss:ID="s23i">
   <Font ss:Size="10" ss:Italic="1" />
 </Style>

次に、子として行要素があるかどうかに応じて、セルのスタイル属性を設定できます。

<Cell>
   <xsl:attribute name="ss:StyleID">
      <xsl:choose>
         <xsl:when test="$colID = 'A' and ../row">s23i</xsl:when>
         <xsl:otherwise>s23</xsl:otherwise>
      </xsl:choose>
   </xsl:attribute>

副次的な問題として、<?mso-application progid="Excel.Sheet"?>XSLTに処理命令があります。これは、出力XMLに表示する必要があるため、適切な場所ではありません。現在、これは発生しません。このプロセス命令を出力するには、これを行う必要があります

  <xsl:processing-instruction name="mso-application">
     <xsl:text>progid="Excel.Sheet"</xsl:text>
  </xsl:processing-instruction>

これが、その栄光に満ちた完全なXSLTです。

<xsl:stylesheet version="1.0"
    xmlns:html="http://www.w3.org/TR/REC-html40"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns="urn:schemas-microsoft-com:office:spreadsheet"
    xmlns:o="urn:schemas-microsoft-com:office:office"
    xmlns:x="urn:schemas-microsoft-com:office:excel"
    xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet">

   <xsl:output method="xml" indent="yes" />
  <xsl:param name="header1">Header1</xsl:param>
  <xsl:param name="header2">Header2</xsl:param>
  <xsl:param name="header3">Header3</xsl:param>
  <xsl:param name="header4">Header4</xsl:param>
  <xsl:param name="header5">Header5</xsl:param>
  <xsl:param name="header6">Header6</xsl:param>
  <xsl:param name="header7">Header7</xsl:param>
  <xsl:param name="header8">Header8</xsl:param>
  <xsl:param name="indentAmount" select="'    '" />

  <xsl:template match="rows">
      <xsl:processing-instruction name="mso-application">
         <xsl:text>progid="Excel.Sheet"</xsl:text>
      </xsl:processing-instruction>
    <Workbook>
      <Styles>
        <Style ss:ID="Default" ss:Name="Normal">
          <Alignment ss:Vertical="Bottom" />
          <Borders />
          <Font />
          <Interior />
          <NumberFormat />
          <Protection />
        </Style>
        <Style ss:ID="s21">
          <Font ss:Size="22" ss:Bold="1" />
        </Style>
        <Style ss:ID="columnheaders">
          <Font ss:Size="12" ss:Bold="1" />
        </Style>
        <Style ss:ID="s22">
          <Font ss:Size="14" ss:Bold="1" />
        </Style>
        <Style ss:ID="s23">
          <Font ss:Size="10"  />
        </Style>
        <Style ss:ID="s23i">
          <Font ss:Size="10" ss:Italic="1" />
        </Style>
        <Style ss:ID="s24">
          <Font ss:Size="10" ss:Bold="1" />
        </Style>
      </Styles>

      <Worksheet ss:Name="data">
        <Table>
          <Column ss:AutoFitWidth="0" ss:Width="300" />
          <Column ss:AutoFitWidth="0" ss:Width="95" />
          <Column ss:AutoFitWidth="0" ss:Width="95" />
          <Column ss:AutoFitWidth="0" ss:Width="175" />
          <Column ss:AutoFitWidth="0" ss:Width="186" />
          <Column ss:AutoFitWidth="0" ss:Width="185" />
          <Column ss:AutoFitWidth="0" ss:Width="113" />
          <Column ss:AutoFitWidth="0" ss:Width="133" />
          <Row ss:AutoFitHeight="0" ss:Height="18">
            <Cell ss:StyleID="columnheaders">
              <Data ss:Type="String">
                <xsl:value-of select="$header1"/>
              </Data>
            </Cell>
            <Cell ss:StyleID="columnheaders">
              <Data ss:Type="String">
                <xsl:value-of select="$header2"/>
              </Data>
            </Cell>
            <Cell ss:StyleID="columnheaders">
              <Data ss:Type="String">
                <xsl:value-of select="$header3"/>
              </Data>
            </Cell>
            <Cell ss:StyleID="columnheaders">
              <Data ss:Type="String">
                <xsl:value-of select="$header4"/>
              </Data>
            </Cell>
            <Cell ss:StyleID="columnheaders">
              <Data ss:Type="String">
                <xsl:value-of select="$header5"/>
              </Data>
            </Cell>
            <Cell ss:StyleID="columnheaders">
              <Data ss:Type="String">
                <xsl:value-of select="$header6"/>
              </Data>
            </Cell>
            <Cell ss:StyleID="columnheaders">
              <Data ss:Type="String">
                <xsl:value-of select="$header7"/>
              </Data>
            </Cell>
            <Cell ss:StyleID="columnheaders">
              <Data ss:Type="String">
                <xsl:value-of select="$header8"/>
              </Data>
            </Cell>
          </Row>
          <xsl:apply-templates select="row"/>
        </Table>
      </Worksheet>
    </Workbook>
  </xsl:template>


  <xsl:template match="row">
    <xsl:param name="indentation" select="''" />
    <xsl:variable name="rowID">
      <xsl:number level="any" format="1"/>
    </xsl:variable>
    <Row ss:AutoFitHeight="0" ss:Height="18">
      <xsl:for-each select="cell">
        <xsl:variable name="colID">
          <xsl:number value="position()" format="A"/>
        </xsl:variable>
        <Cell>
           <xsl:attribute name="ss:StyleID">
              <xsl:choose>
                 <xsl:when test="$colID = 'A' and ../row">s23i</xsl:when>
                 <xsl:otherwise>s23</xsl:otherwise>
              </xsl:choose>
           </xsl:attribute>
          <Data ss:Type="String">
             <xsl:if test="$colID = 'A'">
                <xsl:value-of select="$indentation" />
             </xsl:if>
            <xsl:value-of select="translate(.,'?','&#8364;')"/>
          </Data>
        </Cell>
      </xsl:for-each>
    </Row>

    <xsl:apply-templates select="row">
       <xsl:with-param name="indentation" select="concat($indentAmount, $indentation)" />
    </xsl:apply-templates>
  </xsl:template>
</xsl:stylesheet>
于 2012-11-09T10:23:45.303 に答える