Skip to content

Commit

Permalink
[se] Fix bug 66486
Browse files Browse the repository at this point in the history
  • Loading branch information
GoshaZotov committed Feb 16, 2024
1 parent 730f619 commit 5173453
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cell/model/FormulaObjects/parserFormula.js
Original file line number Diff line number Diff line change
Expand Up @@ -1349,6 +1349,9 @@ parserHelp.setDigitSeparator(AscCommon.g_oDefaultCultureInfo.NumberDecimalSepara
return oRes;
};
cArea3D.prototype.wsRange = function () {
if (this.externalLink != null) {
return [this.wsFrom];
}
var wb = this.wsFrom.workbook;
var wsF = this.wsFrom.getIndex(), wsL = this.wsTo.getIndex(), r = [];
for (var i = wsF; i <= wsL; i++) {
Expand Down

0 comments on commit 5173453

Please sign in to comment.