Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sdkjs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
sdkjs
Commits
9b8e00c8
Commit
9b8e00c8
authored
May 25, 2016
by
Alexander.Trofimov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug 32501
parent
32e5a04c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
18 deletions
+23
-18
cell/model/FormulaObjects/mathematicFunctions.js
cell/model/FormulaObjects/mathematicFunctions.js
+7
-3
cell/model/FormulaObjects/statisticalFunctions.js
cell/model/FormulaObjects/statisticalFunctions.js
+16
-15
No files found.
cell/model/FormulaObjects/mathematicFunctions.js
View file @
9b8e00c8
...
...
@@ -3810,7 +3810,7 @@ function cSUBTOTAL() {
cSUBTOTAL
.
prototype
=
Object
.
create
(
cBaseFunction
.
prototype
)
cSUBTOTAL
.
prototype
.
Calculate
=
function
(
arg
)
{
var
arg0
=
arg
[
0
];
var
f
,
arg0
=
arg
[
0
];
if
(
arg0
instanceof
cArea
||
arg0
instanceof
cArea3D
)
{
arg0
=
arg0
.
cross
(
arguments
[
1
].
first
);
...
...
@@ -3836,11 +3836,15 @@ cSUBTOTAL.prototype.Calculate = function ( arg ) {
break
;
case
cSubTotalFunctionType
.
includes
.
MAX
:
case
cSubTotalFunctionType
.
excludes
.
MAX
:
this
.
value
=
(
new
AscCommonExcel
.
cMAX
()).
Calculate
(
arg
.
slice
(
1
));
f
=
new
AscCommonExcel
.
cMAX
();
f
.
setArgumentsCount
(
arg
.
length
-
1
);
this
.
value
=
f
.
Calculate
(
arg
.
slice
(
1
));
break
;
case
cSubTotalFunctionType
.
includes
.
MIN
:
case
cSubTotalFunctionType
.
excludes
.
MIN
:
this
.
value
=
(
new
AscCommonExcel
.
cMIN
()).
Calculate
(
arg
.
slice
(
1
));
f
=
new
AscCommonExcel
.
cMIN
();
f
.
setArgumentsCount
(
arg
.
length
-
1
);
this
.
value
=
f
.
Calculate
(
arg
.
slice
(
1
));
break
;
case
cSubTotalFunctionType
.
includes
.
PRODUCT
:
case
cSubTotalFunctionType
.
excludes
.
PRODUCT
:
...
...
cell/model/FormulaObjects/statisticalFunctions.js
View file @
9b8e00c8
...
...
@@ -5199,13 +5199,13 @@ function cTRIMMEAN() {
cBaseFunction
.
call
(
this
,
"
TRIMMEAN
"
);
}
cTRIMMEAN
.
prototype
=
Object
.
create
(
cBaseFunction
.
prototype
)
cTRIMMEAN
.
prototype
=
Object
.
create
(
cBaseFunction
.
prototype
)
;
function
cTTEST
()
{
cBaseFunction
.
call
(
this
,
"
TTEST
"
);
}
cTTEST
.
prototype
=
Object
.
create
(
cBaseFunction
.
prototype
)
cTTEST
.
prototype
=
Object
.
create
(
cBaseFunction
.
prototype
)
;
function
cVAR
()
{
// cBaseFunction.call( this, "VAR" );
...
...
@@ -5298,13 +5298,13 @@ cVAR.prototype.Calculate = function ( arg ) {
}
return
this
.
value
=
_var
(
arr0
);
}
}
;
cVAR
.
prototype
.
getInfo
=
function
()
{
return
{
name
:
this
.
name
,
args
:
"
( argument-list )
"
};
}
}
;
function
cVARA
()
{
// cBaseFunction.call( this, "VARA" );
...
...
@@ -5323,7 +5323,7 @@ function cVARA() {
}
cVARA
.
prototype
=
Object
.
create
(
cBaseFunction
.
prototype
)
cVARA
.
prototype
=
Object
.
create
(
cBaseFunction
.
prototype
)
;
cVARA
.
prototype
.
Calculate
=
function
(
arg
)
{
function
_var
(
x
)
{
...
...
@@ -5412,13 +5412,13 @@ cVARA.prototype.Calculate = function ( arg ) {
}
return
this
.
value
=
_var
(
arr0
);
}
}
;
cVARA
.
prototype
.
getInfo
=
function
()
{
return
{
name
:
this
.
name
,
args
:
"
( argument-list )
"
};
}
}
;
function
cVARP
()
{
// cBaseFunction.call( this, "VARP" );
...
...
@@ -5507,13 +5507,13 @@ cVARP.prototype.Calculate = function ( arg ) {
}
return
this
.
value
=
_var
(
arr0
);
}
}
;
cVARP
.
prototype
.
getInfo
=
function
()
{
return
{
name
:
this
.
name
,
args
:
"
( argument-list )
"
};
}
}
;
function
cVARdotP
()
{
// cBaseFunction.call( this, "VARP" );
...
...
@@ -5532,14 +5532,14 @@ function cVARdotP() {
}
cVARdotP
.
prototype
=
Object
.
create
(
cBaseFunction
.
prototype
)
cVARdotP
.
prototype
=
Object
.
create
(
cBaseFunction
.
prototype
)
;
cVARdotP
.
prototype
.
Calculate
=
cVARP
.
prototype
.
Calculate
;
cVARdotP
.
prototype
.
getInfo
=
function
()
{
return
{
name
:
this
.
name
,
args
:
"
( argument-list )
"
};
}
}
;
function
cVARPA
()
{
// cBaseFunction.call( this, "VARPA" );
...
...
@@ -5558,7 +5558,7 @@ function cVARPA() {
}
cVARPA
.
prototype
=
Object
.
create
(
cBaseFunction
.
prototype
)
cVARPA
.
prototype
=
Object
.
create
(
cBaseFunction
.
prototype
)
;
cVARPA
.
prototype
.
Calculate
=
function
(
arg
)
{
function
_var
(
x
)
{
...
...
@@ -5647,19 +5647,19 @@ cVARPA.prototype.Calculate = function ( arg ) {
}
return
this
.
value
=
_var
(
arr0
);
}
}
;
cVARPA
.
prototype
.
getInfo
=
function
()
{
return
{
name
:
this
.
name
,
args
:
"
( argument-list )
"
};
}
}
;
function
cWEIBULL
()
{
cBaseFunction
.
call
(
this
,
"
WEIBULL
"
);
}
cWEIBULL
.
prototype
=
Object
.
create
(
cBaseFunction
.
prototype
)
cWEIBULL
.
prototype
=
Object
.
create
(
cBaseFunction
.
prototype
)
;
function
cZTEST
()
{
cBaseFunction
.
call
(
this
,
"
ZTEST
"
);
...
...
@@ -5681,4 +5681,5 @@ cZTEST.prototype = Object.create( cBaseFunction.prototype );
window
[
'
AscCommonExcel
'
].
cSTDEV
=
cSTDEV
;
window
[
'
AscCommonExcel
'
].
cSTDEVP
=
cSTDEVP
;
window
[
'
AscCommonExcel
'
].
cVAR
=
cVAR
;
window
[
'
AscCommonExcel
'
].
cVARP
=
cVARP
;
})(
window
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment