Skip to content

Commit

Permalink
[se] Fix bug 73182
Browse files Browse the repository at this point in the history
  • Loading branch information
GoshaZotov committed Feb 11, 2025
1 parent 2e5041b commit a05ebf6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions cell/model/FormulaObjects/parserFormula.js
Original file line number Diff line number Diff line change
Expand Up @@ -6401,9 +6401,11 @@ function parserFormula( formula, parent, _ws ) {

if (this._isConditionalFormula(sFunctionName) && data.areaData && g_cCalcRecursion.getIsCellEdited()) {
let oCell = null;
this.ws._getCell(this.parent.nRow, this.parent.nCol, function (oElem) {
oCell = oElem;
});
if (this.parent && null != this.parent.nRow && null != this.parent.nCol) {
this.ws._getCell(this.parent.nRow, this.parent.nCol, function (oElem) {
oCell = oElem;
});
}
if (oCell && oCell.containInFormula()) {
this.ca = this.isRecursiveCondFormula(sFunctionName);
}
Expand Down

0 comments on commit a05ebf6

Please sign in to comment.