diff options
author | Winfried Donkers <winfrieddonkers@libreoffice.org> | 2013-11-01 20:29:06 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2013-11-04 11:12:52 -0600 |
commit | e362bc7892e0fd193e541838be4bd26b7ff42fdd (patch) | |
tree | f0051617539084bae176311b9062b21d8ab500c9 /formula | |
parent | 4bfa4a69a89337f1839a310a2fe83caf82e37df5 (diff) |
fdo#71081 add Excel 2010 functions BINOM.DIST and BINOM.INV
Change-Id: Iaecccd9ec6ab6a08c6c7ee8c024a3eba48ca1682
Reviewed-on: https://gerrit.libreoffice.org/6521
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'formula')
-rw-r--r-- | formula/source/core/resource/core_resource.src | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/formula/source/core/resource/core_resource.src b/formula/source/core/resource/core_resource.src index 8f49229eb394..3843d2570c66 100644 --- a/formula/source/core/resource/core_resource.src +++ b/formula/source/core/resource/core_resource.src @@ -196,6 +196,7 @@ Resource RID_STRLIST_FUNCTION_NAMES_ENGLISH_ODFF String SC_OPCODE_NORM_DIST { Text = "NORMDIST" ; }; String SC_OPCODE_EXP_DIST { Text = "EXPONDIST" ; }; String SC_OPCODE_BINOM_DIST { Text = "BINOMDIST" ; }; + String SC_OPCODE_BINOM_DIST_MS { Text = "COM.MICROSOFT.BINOM.DIST" ; }; String SC_OPCODE_POISSON_DIST { Text = "POISSON" ; }; String SC_OPCODE_KOMBIN { Text = "COMBIN" ; }; String SC_OPCODE_KOMBIN_2 { Text = "COMBINA" ; }; @@ -287,6 +288,7 @@ Resource RID_STRLIST_FUNCTION_NAMES_ENGLISH_ODFF String SC_OPCODE_WEIBULL { Text = "WEIBULL" ; }; String SC_OPCODE_NEG_BINOM_VERT { Text = "NEGBINOMDIST" ; }; String SC_OPCODE_KRIT_BINOM { Text = "CRITBINOM" ; }; + String SC_OPCODE_BINOM_INV { Text = "COM.MICROSOFT.BINOM.INV" ; }; String SC_OPCODE_KURT { Text = "KURT" ; }; String SC_OPCODE_HAR_MEAN { Text = "HARMEAN" ; }; String SC_OPCODE_GEO_MEAN { Text = "GEOMEAN" ; }; @@ -552,6 +554,7 @@ Resource RID_STRLIST_FUNCTION_NAMES_ENGLISH String SC_OPCODE_NORM_DIST { Text = "NORMDIST" ; }; String SC_OPCODE_EXP_DIST { Text = "EXPONDIST" ; }; String SC_OPCODE_BINOM_DIST { Text = "BINOMDIST" ; }; + String SC_OPCODE_BINOM_DIST_MS { Text = "BINOM.DIST" ; }; String SC_OPCODE_POISSON_DIST { Text = "POISSON" ; }; String SC_OPCODE_KOMBIN { Text = "COMBIN" ; }; String SC_OPCODE_KOMBIN_2 { Text = "COMBINA" ; }; @@ -643,6 +646,7 @@ Resource RID_STRLIST_FUNCTION_NAMES_ENGLISH String SC_OPCODE_WEIBULL { Text = "WEIBULL" ; }; String SC_OPCODE_NEG_BINOM_VERT { Text = "NEGBINOMDIST" ; }; String SC_OPCODE_KRIT_BINOM { Text = "CRITBINOM" ; }; + String SC_OPCODE_BINOM_INV { Text = "BINOM.INV" ; }; String SC_OPCODE_KURT { Text = "KURT" ; }; String SC_OPCODE_HAR_MEAN { Text = "HARMEAN" ; }; String SC_OPCODE_GEO_MEAN { Text = "GEOMEAN" ; }; @@ -1351,6 +1355,10 @@ Resource RID_STRLIST_FUNCTION_NAMES { Text [ en-US ] = "BINOMDIST" ; }; + String SC_OPCODE_BINOM_DIST_MS + { + Text [ en-US ] = "BINOM.DIST" ; + }; String SC_OPCODE_POISSON_DIST { Text [ en-US ] = "POISSON" ; @@ -1716,6 +1724,10 @@ Resource RID_STRLIST_FUNCTION_NAMES { Text [ en-US ] = "CRITBINOM" ; }; + String SC_OPCODE_BINOM_INV + { + Text [ en-US ] = "BINOM.INV" ; + }; String SC_OPCODE_KURT { Text [ en-US ] = "KURT" ; |