Skip to content

Commit

Permalink
Fix internalise bug on spill arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
adecler authored and Fraser Greenroyd committed Mar 22, 2022
1 parent 2b85c08 commit b8d2f7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Excel_UI/Addin/AddIn_Internalise.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public static void Internalise(Range selection)
m_InternalisedData[id] = item;

// Replace cell formula with value
ExcelAsyncUtil.QueueAsMacro(() => { cell.Formula = cell.Value; });
ExcelAsyncUtil.QueueAsMacro(() => { cell.Formula = value; });
}
}

Expand Down

0 comments on commit b8d2f7f

Please sign in to comment.