Merge pull request #2111 from ONLYOFFICE/feature/fix-bugs

[SSE mobile] For Bug 59991
This commit is contained in:
maxkadushkin 2022-12-05 19:18:28 +03:00 committed by GitHub
commit 9815364c8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 65 additions and 0 deletions

View file

@ -163,7 +163,10 @@
"COVARIANCE.P": "COVARIANCE.P", "COVARIANCE.P": "COVARIANCE.P",
"COVARIANCE.S": "COVARIANCE.S", "COVARIANCE.S": "COVARIANCE.S",
"CRITBINOM": "CRITBINOM", "CRITBINOM": "CRITBINOM",
"CHOOSEROWS": "CHOOSEROWS",
"CHOOSECOLS": "CHOOSECOLS",
"DEVSQ": "DEVSQ", "DEVSQ": "DEVSQ",
"DROP": "DROP",
"EXPON.DIST": "EXPON.DIST", "EXPON.DIST": "EXPON.DIST",
"EXPONDIST": "EXPONDIST", "EXPONDIST": "EXPONDIST",
"FDIST": "FDIST", "FDIST": "FDIST",
@ -196,6 +199,7 @@
"HARMEAN": "HARMEAN", "HARMEAN": "HARMEAN",
"HYPGEOM.DIST": "HYPGEOM.DIST", "HYPGEOM.DIST": "HYPGEOM.DIST",
"HYPGEOMDIST": "HYPGEOMDIST", "HYPGEOMDIST": "HYPGEOMDIST",
"HSTACK": "HSTACK",
"INTERCEPT": "INTERCEPT", "INTERCEPT": "INTERCEPT",
"KURT": "KURT", "KURT": "KURT",
"LARGE": "LARGE", "LARGE": "LARGE",
@ -264,6 +268,9 @@
"T.DIST.RT": "T.DIST.RT", "T.DIST.RT": "T.DIST.RT",
"T.INV": "T.INV", "T.INV": "T.INV",
"T.INV.2T": "T.INV.2T", "T.INV.2T": "T.INV.2T",
"TOROW": "TOROW",
"TOCOL": "TOCOL",
"TAKE": "TAKE",
"VAR": "VAR", "VAR": "VAR",
"VAR.P": "VAR.P", "VAR.P": "VAR.P",
"VAR.S": "VAR.S", "VAR.S": "VAR.S",
@ -272,6 +279,8 @@
"VARPA": "VARPA", "VARPA": "VARPA",
"WEIBULL": "WEIBULL", "WEIBULL": "WEIBULL",
"WEIBULL.DIST": "WEIBULL.DIST", "WEIBULL.DIST": "WEIBULL.DIST",
"WRAPROWS": "WRAPROWS",
"WRAPCOLS": "WRAPCOLS",
"Z.TEST": "Z.TEST", "Z.TEST": "Z.TEST",
"ZTEST": "ZTEST", "ZTEST": "ZTEST",
"ACCRINT": "ACCRINT", "ACCRINT": "ACCRINT",
@ -411,6 +420,9 @@
"TAN": "TAN", "TAN": "TAN",
"TANH": "TANH", "TANH": "TANH",
"TRUNC": "TRUNC", "TRUNC": "TRUNC",
"TEXTBEFORE": "TEXTBEFORE",
"TEXTAFTER": "TEXTAFTER",
"TEXTSPLIT": "TEXTSPLIT",
"ADDRESS": "ADDRESS", "ADDRESS": "ADDRESS",
"CHOOSE": "CHOOSE", "CHOOSE": "CHOOSE",
"COLUMN": "COLUMN", "COLUMN": "COLUMN",
@ -428,6 +440,7 @@
"TRANSPOSE": "TRANSPOSE", "TRANSPOSE": "TRANSPOSE",
"UNIQUE": "UNIQUE", "UNIQUE": "UNIQUE",
"VLOOKUP": "VLOOKUP", "VLOOKUP": "VLOOKUP",
"VSTACK": "VSTACK",
"XLOOKUP": "XLOOKUP", "XLOOKUP": "XLOOKUP",
"CELL": "CELL", "CELL": "CELL",
"ERROR.TYPE": "ERROR.TYPE", "ERROR.TYPE": "ERROR.TYPE",

View file

@ -1059,6 +1059,18 @@
"a": "(array1; array2; tails; type)", "a": "(array1; array2; tails; type)",
"d": "Returns the probability associated with a Student's t-Test" "d": "Returns the probability associated with a Student's t-Test"
}, },
"TEXTBEFORE": {
"a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
"d": "Returns text thats before delimiting characters."
},
"TEXTAFTER": {
"a": "(text, delimiter, [instance_num], [match_mode], [match_end], [if_not_found])",
"d": "Returns text thats after delimiting characters."
},
"TEXTSPLIT": {
"a": "(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
"d": "Splits text into rows or columns using delimiters."
},
"VAR": { "VAR": {
"a": "(number1; [number2]; ...)", "a": "(number1; [number2]; ...)",
"d": "Estimates variance based on a sample (ignores logical values and text in the sample)" "d": "Estimates variance based on a sample (ignores logical values and text in the sample)"
@ -1083,6 +1095,46 @@
"a": "(value1; [value2]; ...)", "a": "(value1; [value2]; ...)",
"d": "Calculates variance based on the entire population, including logical values and text. Text and the logical value FALSE have the value 0; the logical value TRUE has the value 1" "d": "Calculates variance based on the entire population, including logical values and text. Text and the logical value FALSE have the value 0; the logical value TRUE has the value 1"
}, },
"VSTACK": {
"a": "(array1, [array2], ...)",
"d": "Vertically stacks arrays into one array."
},
"HSTACK": {
"a": "(array1, [array2], ...)",
"d": "Horizontally stacks arrays into one array."
},
"TOCOL": {
"a": "(array, [ignore], [scan_by_column])",
"d": "Returns the array as one column."
},
"TOROW": {
"a": "(array, [ignore], [scan_by_column])",
"d": "Returns the array as one row."
},
"WRAPROWS": {
"a": "(vector, wrap_count, [pad_with])",
"d": "Wraps a row or column vector after a specified number of values."
},
"WRAPCOLS": {
"a": "(vector, wrap_count, [pad_with])",
"d": "Wraps a row or column vector after a specified number of values."
},
"CHOOSEROWS": {
"a": "(array, row_num1, [row_num2], ...)",
"d": "Returns rows from an array or reference."
},
"CHOOSECOLS": {
"a": "(array, col_num1, [col_num2], ...)",
"d": "Returns columns from an array or reference."
},
"TAKE": {
"a": "(array, rows, [columns])",
"d": "Returns rows or columns from array start or end."
},
"DROP": {
"a": "(array, rows, [columns])",
"d": "Drops rows or columns from array start or end."
},
"WEIBULL": { "WEIBULL": {
"a": "(x; alpha; beta; cumulative)", "a": "(x; alpha; beta; cumulative)",
"d": "Returns the Weibull distribution" "d": "Returns the Weibull distribution"