Commit c536f7fe authored by Alexander.Trofimov's avatar Alexander.Trofimov

fix offset

parent 8a3a4e0d
......@@ -3464,7 +3464,7 @@ Woorksheet.prototype.initPostOpen = function(handlers){
var fs = formulaShared[oFormulaExt.si];
if (fs && fs.fRef.contains(oCell.nCol, oCell.nRow)) {
if (fs.fVal.isParsed) {
var off = oCell.getOffset3(fs.fRef.c1, fs.fRef.r1);
var off = oCell.getOffset3(fs.fRef.c1 + 1, fs.fRef.r1 + 1);
fs.fVal.changeOffset(off);
oFormulaExt.v = fs.fVal.assemble();
off.offsetCol *= -1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment