使用 Aspose Cells,如何将单元格公式复制到另一个单元格并更新其在 .Net Core 中的引用而无需格式化

With Aspose Cells, how to copy a Cell formula to another cell and update its references in .Net Core without its formating

我正在将 Aspose Cells 与 .net Core 结合使用。

我想将单元格公式复制到另一个单元格,并使用新的“位置”更新公式中的单元格引用。

如果我使用 cell.copy 它可以工作,但它也会复制单元格属性,例如 'locked'。

有什么办法吗?

就像使用 MS-Excel 并且您执行“仅特殊粘贴公式”

我 post 我在 Aspose 论坛上的问题,并从 @Amjad Sahi

得到了快速答复

https://forum.aspose.com/t/copy-formula-from-a-cell-to-another-with-updated-references-without-the-source-cell-attribute-like-locked/239996/2

对我有用。

我最终得到这个:

    public void CopyFormulaFrom(ICell cell)
    {
        var cells = cell.Sheet.Name == Sheet.Name
            ? _cell.Worksheet.Cells
            : _cell.Worksheet.Workbook.Worksheets[cell.Sheet.Name]?.Cells;

        var cellSource = cells.CreateRange(cell.Row, cell.Column, 1, 1);
        var cellDestination = cells.CreateRange(_cell.Row, _cell.Column, 1, 1);
        
        var options = new PasteOptions() { PasteType = PasteType.Formulas };

        cellDestination.Copy(cellSource, options);
    }