diff options
author | Eike Rathke <erack@redhat.com> | 2012-12-15 22:05:06 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2012-12-15 22:05:37 +0100 |
commit | cc036a9b113c76cefba964cdac5a6f941c7a314c (patch) | |
tree | 79ac929efe038ebf6e05ac9b18d66ba1c1fb4806 /sc | |
parent | 98a4e4f2ad405b60484f033570e2d2164656007b (diff) |
AVERAGEIFS with FUNCFLAG_PARAMPAIRS
Change-Id: I51fa0259df84327db7dd07ae9ed5b109d40b6660
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/oox/formulabase.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/oox/formulabase.cxx b/sc/source/filter/oox/formulabase.cxx index ca6d46f85695..1a946eee5804 100644 --- a/sc/source/filter/oox/formulabase.cxx +++ b/sc/source/filter/oox/formulabase.cxx @@ -715,7 +715,7 @@ static const FunctionData saFuncTableOox[] = { 0, "COUNTIFS", 481, NOID, 2, MX, V, { RO, VR }, FUNCFLAG_PARAMPAIRS }, { 0, "SUMIFS", 482, NOID, 3, MX, V, { RO, RO, VR }, FUNCFLAG_PARAMPAIRS }, { 0, "AVERAGEIF", 483, NOID, 2, 3, V, { RO, VR, RO }, 0 }, - { 0, "AVERAGEIFS", 484, NOID, 3, MX, V, { RO, RO, VR }, 0 } + { 0, "AVERAGEIFS", 484, NOID, 3, MX, V, { RO, RO, VR }, FUNCFLAG_PARAMPAIRS } }; /** Functions defined by OpenFormula, but not supported by Calc or by Excel. */ |