如何将条件格式添加到XML / Excel文件?

时间:2013-04-25 22:19:06

标签: xml excel formatting openxml

我正在为它编写XML来生成Excel文件。我差不多完成了,但是我不能让条件格式按照我想要的方式工作。

我想对某些细胞应用条件。例如。对于每个数据行(不是页眉或页脚),如果列7-13大于列6中的值,则列7-13应突出显示红色。下面的代码仅适用于第一个数据行。如何将其应用于一组行?

    </Table>

    <ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
        <Range>RC7:RC13</Range>
        <Condition>
            <Qualifier>Greater</Qualifier>
            <Value1>RC6</Value1>
            <Format Style='background-color:#F7A9A5'/>
        </Condition>
    </ConditionalFormatting>

</Worksheet>
</Workbook>

我宁愿不必指定确切的行号(B7-B13)。理想情况下,我可以将它应用到我想要的每一行或一些通用的行中。

更新:我有另一个问题,被比较的列(C6)是一个字符串。如果字符串为空,则不应应用该格式。但是,如果列包含数字,则应将其视为数字并进行比较。

更新

以下是更完整的代码:

<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>

<Workbook 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"
    xmlns:html="http://www.w3.org/TR/REC-html40">
  <DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
    <Author>Sodexo Platform</Author>
    <LastAuthor>@HttpContext.Current.User.Identity.Name</LastAuthor>
    <Created>@DateTime.Now.ToUniversalTime()</Created>
    <LastSaved>@DateTime.Now.ToUniversalTime()</LastSaved>
    <Company>Sodexo</Company>
    <Version>1</Version>
  </DocumentProperties>
  <OfficeDocumentSettings xmlns="urn:schemas-microsoft-com:office:office">
    <DownloadComponents/>
    <LocationOfComponents HRef="file:///D:\"/>
  </OfficeDocumentSettings>
  <ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
    <WindowHeight>8700</WindowHeight>
    <WindowWidth>11355</WindowWidth>
    <WindowTopX>480</WindowTopX>
    <WindowTopY>120</WindowTopY>
    <ProtectStructure>False</ProtectStructure>
    <ProtectWindows>False</ProtectWindows>
  </ExcelWorkbook>

  <Styles>
    <Style ss:ID="Table">
        <Borders>
            <Border ss:Position="Top" ss:Color="#595959" ss:Weight="1" ss:LineStyle="Continuous"/>
            <Border ss:Position="Bottom" ss:Color="#595959" ss:Weight="1" ss:LineStyle="Continuous"/>
            <Border ss:Position="Left" ss:Color="#595959" ss:Weight="1" ss:LineStyle="Continuous"/>
            <Border ss:Position="Right" ss:Color="#595959" ss:Weight="1" ss:LineStyle="Continuous"/>
        </Borders>
        <Font ss:FontName="Arial" ss:Size="8" />
    </Style>
  </Styles>

<Worksheet ss:Name="Summary">
<Table>
    <Column ss:AutoFitWidth="0" ss:Width="200" /> 
    <Column ss:AutoFitWidth="0" ss:Width="80" /> 
    <Column ss:AutoFitWidth="0" ss:Width="130" />
    <Column ss:AutoFitWidth="0" ss:Width="75" /> 
    <Column ss:AutoFitWidth="0" ss:Width="75" /> 
    <Column ss:AutoFitWidth="0" ss:Width="75" /> 

    <Row>
        <Cell ss:StyleID="Table">
            <Data ss:Type="String">A</Data>
        </Cell>
        <Cell ss:StyleID="Table">
            <Data ss:Type="String">B</Data>
        </Cell>
        <Cell ss:StyleID="Table">
            <Data ss:Type="String">C</Data>
        </Cell>
    </Row>
</Table>

<ConditionalFormatting xmlns="urn:schemas-microsoft-com:office:excel">
    <Range>RC7:RC13</Range>
    <Condition>
        <Qualifier>Greater</Qualifier>
        <Value1>RC6</Value1>
        <Format Style='background-color:#F7A9A5'/>
    </Condition>
</ConditionalFormatting>

</Worksheet>

</Workbook>

1 个答案:

答案 0 :(得分:0)

将条件格式设置应用于“通用”行集或执行类似A:A的操作,该操作将应用于列A中具有值的所有行,或者您可以将条件格式指向NamedRange。如果命名范围发生变化,则无需更新条件格式。

要处理空字符串,您可以使用公式条件格式并检查单元格是否为空(例如=NOT(ISBLANK(A:A))