使用Open Xml将列添加到现有Excel 2007工作簿

时间:2014-06-04 13:24:33

标签: c# .net openxml openxml-sdk

我有一个预定义的Excel工作簿,其中包含所有工作表,我需要为其编写内容。我成功地写信给了细胞。

问题出在一个特定的工作表中,我需要添加三列。在下面的代码中,首先我抓住Worksheet,然后继续添加列。这段代码运行正常,我的意思是,没有抛出异常,但是当我尝试打开Excel文件时出现错误,说明有些内容无法读取,并且此特定工作表的所有内容都已清除。< / p>

我知道问题出在这个操作上,因为如果我注释掉那些添加列的行,那么工作簿就会很好地显示我从代码中编写的所有单元格值。

这是相关代码,出于测试目的,我正在尝试添加3列:

using (SpreadsheetDocument document = SpreadsheetDocument.Open(outputPath, true)){
        Sheet sheet2 = document.WorkbookPart.Workbook.Descendants<Sheet>().Single( s => s.Name == "Miscellaneous Credit" );

        Worksheet workSheet2 = ( (WorksheetPart)document.WorkbookPart.GetPartById( sheet2.Id ) ).Worksheet;

        Columns cs = new Columns();
        for ( var y = 1; y <= 3; y++ ) {                    
            Column c = new Column()
            {
                Min = (UInt32Value)1U,
                Max = (UInt32Value)1U,
                Width = 44.33203125D,
                CustomWidth = true
            };
            cs.Append( c );
        }
        workSheet2.Append( cs );
    }

编辑:根据克里斯关于列概念的解释

using (SpreadsheetDocument document = SpreadsheetDocument.Open(outputPath, true)){
        Sheet sheet2 = document.WorkbookPart.Workbook.Descendants<Sheet>().Single( s => s.Name == "Miscellaneous Credit" );

        Worksheet workSheet2 = ( (WorksheetPart)document.WorkbookPart.GetPartById( sheet2.Id ) ).Worksheet;

       // Check if the column collection exists
            Columns cs = workSheet2.Elements<Columns>().FirstOrDefault();
            if ( ( cs == null ) ) {
                // If Columns appended to worksheet after sheetdata Excel will throw an error.
                SheetData sd = workSheet2.Elements<SheetData>().FirstOrDefault();
                if ( ( sd != null ) ) {
                    cs = workSheet2.InsertBefore( new Columns(), sd );
                }
                else {
                    cs = new Columns();
                    workSheet2.Append( cs );
                }
            }

            //create a column object to define the width of columns 1 to 3  
            Column c = new Column
            {
                Min = (UInt32Value)1U,
                Max = (UInt32Value)3U,
                Width = 44.33203125,
                CustomWidth = true
            };
            cs.Append( c );
    }

1 个答案:

答案 0 :(得分:4)

这个答案的第一部分涉及如何设置列宽(基于初始示例代码,我认为您只想定义列的宽度)。

  • 首先,您似乎误解了Column对象的最小和最大属性。它们分别代表受此“列信息”记录影响的First和Last列。因此,如果您有一组具有相同宽度的连续列,则可以使用一个Column类来设置该宽度。在您的代码段中,您定义相同列宽度的3倍(索引1)。

  • 然后,您认为Columns集合尚不存在......

  • 最后,重点是如果在Columns之后追加SheetData集合,则Excel会抛出错误

适用于我的最终代码(Open XML SDK 2.0)

using (SpreadsheetDocument document = SpreadsheetDocument.Open(outputPath, true)) {
    Sheet sheet2 = document.WorkbookPart.Workbook.Descendants<Sheet>().Single(s => s.Name == "Your sheet name");

    Worksheet workSheet2 = ((WorksheetPart)document.WorkbookPart.GetPartById(sheet2.Id)).Worksheet;

    // Check if the column collection exists
    Columns cs = workSheet2.Elements<Columns>().FirstOrDefault();

    if ((cs == null)) {
        // If Columns appended to worksheet after sheetdata Excel will throw an error.
        SheetData sd = workSheet2.Elements<SheetData>().FirstOrDefault();
        if ((sd != null)) {
            cs = workSheet2.InsertBefore(new Columns(), sd);
        } else {
            cs = new Columns();
            workSheet2.Append(cs);
        }
    }

    //create a column object to define the width of columns 1 to 3  
    Column c = new Column {
        Min = (UInt32Value)1U,
        Max = (UInt32Value)3U,
        Width = 44.33203125,
        CustomWidth = true
    };
    cs.Append(c);

}
  

我仍然对如何执行列插入感到困惑。说我有   列A,B和C,我想在B和C之间插入三列,   以A,B,C,D,E,F列结束。我怎样才能实现它?

OpenXml SDK中的Columns对象用于存储列的样式和宽度信息。在集合中插入Column不会在工作表中“插入”列。

使用OpenXmlSDK“插入”一个像你的意思是一个非常庞大而复杂的任务。

根据我对问题的理解,这意味着你必须找到所有单元格并通过改变它们的引用来移动它们(例如,插入3列后,ref“B1”的单元格将成为“F1”等等... )。这意味着你将不得不改变很多其他的东西(例如公式中的单元格的引用)。

使用 Office.Interop 或者可能使用 EEPlus ClosedXml 等库来轻松完成此类任务。