This commit is contained in:
GoshaZotov
2025-10-06 14:56:48 +03:00
parent dc43965070
commit 5101cd1ba5

View File

@ -16373,10 +16373,7 @@ function RangeDataManagerElem(bbox, data)
}
let cellType = cell.getType();
let newVal = noData ? "#REF!" : cell.getValue();
if (cellType === CellValueType.Number) {
newVal = cell.getNumberValue();
}
let newVal = noData ? "#REF!" : (cellType === CellValueType.Number ? cell.getNumberValue() : cell.getValue());
if (this.CellValue !== newVal) {
isChanged = true;
this.CellValue = newVal;