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

ToDo add check [0]! in formula

parent e1bdc9af
......@@ -2977,6 +2977,12 @@ var cFormulaOperators = {
var ranges = [];
var arrRefs = ref.split(',');
arrRefs.forEach(function (refItem) {
// ToDo in parser formula
var currentWorkbook = '[0]!';
if (0 === refItem.indexOf(currentWorkbook)) {
refItem = refItem.slice(currentWorkbook.length);
}
var _f = new AscCommonExcel.parserFormula(refItem, '', ws);
_f.parse();
_f.RefPos.forEach(function (item) {
......
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