diff options
author | Winfried Donkers <winfrieddonkers@libreoffice.org> | 2016-05-03 21:19:19 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2016-05-04 21:54:01 +0000 |
commit | c57dc741a6f221f53f3c8da2f521c6ece63246c2 (patch) | |
tree | ded3a12b1dbb08fe920045fadf09a2e877e6145d /formula | |
parent | 75ac19149d21f5164e7bb3ea1b114670e1d7859e (diff) |
tdf#97831 [part] Add Excel 2016 functions to Calc
Functions MINIFS and MAXIFS
Change-Id: I4bd2e8b82f8377af81f4373d0c33ac286588b8df
Reviewed-on: https://gerrit.libreoffice.org/24619
Tested-by: Jenkins <ci@libreoffice.org>
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 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/formula/source/core/resource/core_resource.src b/formula/source/core/resource/core_resource.src index acc6ba899dab..551de2fa1c74 100644 --- a/formula/source/core/resource/core_resource.src +++ b/formula/source/core/resource/core_resource.src @@ -291,6 +291,8 @@ Resource RID_STRLIST_FUNCTION_NAMES_ENGLISH_ODFF String SC_OPCODE_TEXTJOIN_MS { Text = "COM.MICROSOFT.TEXTJOIN" ; }; String SC_OPCODE_IFS_MS { Text = "COM.MICROSOFT.IFS" ; }; String SC_OPCODE_SWITCH_MS { Text = "COM.MICROSOFT.SWITCH" ; }; + String SC_OPCODE_MINIFS_MS { Text = "COM.MICROSOFT.MINIFS" ; }; + String SC_OPCODE_MAXIFS_MS { Text = "COM.MICROSOFT.MAXIFS" ; }; String SC_OPCODE_MAT_VALUE { Text = "MVALUE" ; }; String SC_OPCODE_MAT_DET { Text = "MDETERM" ; }; String SC_OPCODE_MAT_INV { Text = "MINVERSE" ; }; @@ -729,6 +731,8 @@ Resource RID_STRLIST_FUNCTION_NAMES_ENGLISH_OOXML String SC_OPCODE_TEXTJOIN_MS { Text = "_xlfn.TEXTJOIN" ; }; String SC_OPCODE_IFS_MS { Text = "_xlfn.IFS" ; }; String SC_OPCODE_SWITCH_MS { Text = "_xlfn.SWITCH" ; }; + String SC_OPCODE_MINIFS_MS { Text = "_xlfn.MINIFS" ; }; + String SC_OPCODE_MAXIFS_MS { Text = "_xlfn.MAXIFS" ; }; String SC_OPCODE_MAT_VALUE { Text = "MVALUE" ; }; String SC_OPCODE_MAT_DET { Text = "MDETERM" ; }; String SC_OPCODE_MAT_INV { Text = "MINVERSE" ; }; @@ -1167,6 +1171,8 @@ Resource RID_STRLIST_FUNCTION_NAMES_ENGLISH String SC_OPCODE_TEXTJOIN_MS { Text = "TEXTJOIN" ; }; String SC_OPCODE_IFS_MS { Text = "IFS" ; }; String SC_OPCODE_SWITCH_MS { Text = "SWITCH" ; }; + String SC_OPCODE_MINIFS_MS { Text = "MINIFS" ; }; + String SC_OPCODE_MAXIFS_MS { Text = "MAXIFS" ; }; String SC_OPCODE_MAT_VALUE { Text = "MVALUE" ; }; String SC_OPCODE_MAT_DET { Text = "MDETERM" ; }; String SC_OPCODE_MAT_INV { Text = "MINVERSE" ; }; @@ -2349,6 +2355,14 @@ Resource RID_STRLIST_FUNCTION_NAMES { Text [ en-US ] = "SWITCH" ; }; + String SC_OPCODE_MINIFS_MS + { + Text [ en-US ] = "MINIFS" ; + }; + String SC_OPCODE_MAXIFS_MS + { + Text [ en-US ] = "MAXIFS" ; + }; String SC_OPCODE_MAT_VALUE { Text [ en-US ] = "MVALUE" ; |