Commit 0e45b7c4 authored by GoshaZotov's avatar GoshaZotov

fix bug 30799

parent 016d0b5c
......@@ -416,11 +416,11 @@
break;
case 2 : // ignore error values, nested SUBTOTAL and AGGREGATE functions
ignoreNestedStAg = true;
ignoreHiddenRows = true;
ignoreErrorsVal = true;
break;
case 3 : // ignore hidden rows, error values, nested SUBTOTAL and AGGREGATE functions
ignoreNestedStAg = true;
ignoreHiddenRows = true;
ignoreErrorsVal = true;
ignoreHiddenRows = true;
break;
case 4 : // ignore nothing
......@@ -429,11 +429,11 @@
ignoreHiddenRows = true;
break;
case 6 : // ignore error values
ignoreHiddenRows = true;
ignoreErrorsVal = true;
break;
case 7 : // ignore hidden rows and error values
ignoreHiddenRows = true;
ignoreHiddenRows = true;
ignoreErrorsVal = true;
break;
default :
return this.value = new cError(cErrorType.not_numeric);
......
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