打开 XML SDK:如何更新 Excel 单元格?

Open XML SDK: How to update Excel cell?

我正在尝试通过 Open XML SDK 更新 Excel 电子表格中的单元格:

test.xlsx

using System.Linq;
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Spreadsheet;

namespace DotNetSandbox.SO
{
    public class CellUpdating
    {
        public static void Update()
        {
            using SpreadsheetDocument doc = SpreadsheetDocument.Open(@"c:\temp\test.xlsx", true);
            Sheet sheet = doc.WorkbookPart.Workbook.Descendants<Sheet>().First();
            WorksheetPart wsPart = (WorksheetPart)doc.WorkbookPart.GetPartById(sheet.Id);
            Cell cell = wsPart.Worksheet.Descendants<Cell>().First(c => c.CellReference == "A2");

            cell.CellValue = new CellValue("new");

            wsPart.Worksheet.Save();
        }
    }
}

更新单元格,但仅在 Excel 应用恢复后:

环境:

我做错了什么?

Excel 更喜欢使用 SharedStrings 而不是内联字符串。

如果 Cell.DataType == EnumValue<CellValues>(CellValues.SharedString) 如果不添加 SharedString 就无法替换 CellValue。

解决此问题的最简单方法是将数据类型切换为内联字符串,又名:CellValues.String,然后分配字符串值:

    cell.DataType = new EnumValue<CellValues>(CellValues.String); 
    cell.CellValue = new CellValue("new");

请注意,Excel 会在加载时将您的内联字符串重写为共享字符串,这一点需要注意,以防您希望文件在保存前后不做任何更改而完全相同。