diff --git a/ClosedXML/ClosedXML/ClosedXML/Excel/Cells/XLCell.cs b/ClosedXML/ClosedXML/ClosedXML/Excel/Cells/XLCell.cs index 8de7a8d..70d3cf7 100644 --- a/ClosedXML/ClosedXML/ClosedXML/Excel/Cells/XLCell.cs +++ b/ClosedXML/ClosedXML/ClosedXML/Excel/Cells/XLCell.cs @@ -1703,11 +1703,8 @@ String f = v.Value; if (v.IsFormula) { - using (var asRange = AsRange()) - { - var r1c1 = otherCell.GetFormulaR1C1(f); - f = GetFormulaA1(r1c1); - } + var r1c1 = otherCell.GetFormulaR1C1(f); + f = GetFormulaA1(r1c1); }