new calc function MIRR
This commit is contained in:
parent
9ae9e70ba8
commit
2f78805d7d
5 changed files with 21 additions and 12 deletions
|
@ -2,9 +2,9 @@
|
|||
*
|
||||
* $RCSfile: compiler.hrc,v $
|
||||
*
|
||||
* $Revision: 1.3 $
|
||||
* $Revision: 1.4 $
|
||||
*
|
||||
* last change: $Author: dr $ $Date: 2001-03-01 15:33:16 $
|
||||
* last change: $Author: dr $ $Date: 2001-03-05 14:43:44 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* either of the following licenses
|
||||
|
@ -381,9 +381,10 @@
|
|||
#define SC_OPCODE_DECIMAL 381
|
||||
#define SC_OPCODE_CONVERT 382
|
||||
#define SC_OPCODE_ROMAN 383
|
||||
#define SC_OPCODE_END_2_PAR 384
|
||||
#define SC_OPCODE_MIRR 384
|
||||
#define SC_OPCODE_END_2_PAR 385
|
||||
|
||||
#define SC_OPCODE_LAST_OPCODE_ID 383 /* letzter OpCode */
|
||||
#define SC_OPCODE_LAST_OPCODE_ID 384 /* letzter OpCode */
|
||||
|
||||
/*** Interna ***/
|
||||
#define SC_OPCODE_INTERNAL_BEGIN 9995
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
*
|
||||
* $RCSfile: opcode.hxx,v $
|
||||
*
|
||||
* $Revision: 1.4 $
|
||||
* $Revision: 1.5 $
|
||||
*
|
||||
* last change: $Author: dr $ $Date: 2001-03-01 15:33:16 $
|
||||
* last change: $Author: dr $ $Date: 2001-03-05 14:43:44 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* either of the following licenses
|
||||
|
@ -231,6 +231,7 @@ enum OpCodeEnum
|
|||
ocCount2 = SC_OPCODE_COUNT_2,
|
||||
ocNBW = SC_OPCODE_NBW,
|
||||
ocIKV = SC_OPCODE_IKV,
|
||||
ocMIRR = SC_OPCODE_MIRR,
|
||||
ocVar = SC_OPCODE_VAR,
|
||||
ocVarP = SC_OPCODE_VAR_P,
|
||||
ocStDev = SC_OPCODE_ST_DEV,
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
*
|
||||
* $RCSfile: scfuncs.hrc,v $
|
||||
*
|
||||
* $Revision: 1.3 $
|
||||
* $Revision: 1.4 $
|
||||
*
|
||||
* last change: $Author: dr $ $Date: 2001-03-01 15:33:16 $
|
||||
* last change: $Author: dr $ $Date: 2001-03-05 14:43:44 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* either of the following licenses
|
||||
|
@ -128,6 +128,7 @@
|
|||
#define HID_FUNC_IKV (HID_SC_FUNC_DUMMY+(ID_FUNCTION_GRP_FINANZ*ID_FUNCTION_OFFSET)+18)
|
||||
#define HID_FUNC_LAUFZEIT (HID_SC_FUNC_DUMMY+(ID_FUNCTION_GRP_FINANZ*ID_FUNCTION_OFFSET)+19)
|
||||
#define HID_FUNC_ZGZ (HID_SC_FUNC_DUMMY+(ID_FUNCTION_GRP_FINANZ*ID_FUNCTION_OFFSET)+20)
|
||||
#define HID_FUNC_QIKV (HID_SC_FUNC_DUMMY+(ID_FUNCTION_GRP_FINANZ*ID_FUNCTION_OFFSET)+21)
|
||||
|
||||
#define HID_FUNC_ISTBEZUG (HID_SC_FUNC_DUMMY+(ID_FUNCTION_GRP_INFO*ID_FUNCTION_OFFSET)+1)
|
||||
#define HID_FUNC_ISTFEHL (HID_SC_FUNC_DUMMY+(ID_FUNCTION_GRP_INFO*ID_FUNCTION_OFFSET)+2)
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
*
|
||||
* $RCSfile: interpre.hxx,v $
|
||||
*
|
||||
* $Revision: 1.7 $
|
||||
* $Revision: 1.8 $
|
||||
*
|
||||
* last change: $Author: dr $ $Date: 2001-03-01 15:36:15 $
|
||||
* last change: $Author: dr $ $Date: 2001-03-05 14:47:06 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* either of the following licenses
|
||||
|
@ -507,6 +507,7 @@ void ScGetDiffDate();
|
|||
void ScGetDiffDate360();
|
||||
void ScNBW();
|
||||
void ScIKV();
|
||||
void ScMIRR();
|
||||
void ScPower();
|
||||
void ScAmpersand();
|
||||
void ScAdd();
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
*
|
||||
* $RCSfile: compiler.src,v $
|
||||
*
|
||||
* $Revision: 1.12 $
|
||||
* $Revision: 1.13 $
|
||||
*
|
||||
* last change: $Author: dr $ $Date: 2001-03-01 15:36:52 $
|
||||
* last change: $Author: dr $ $Date: 2001-03-05 14:47:45 $
|
||||
*
|
||||
* The Contents of this file are made available subject to the terms of
|
||||
* either of the following licenses
|
||||
|
@ -3014,6 +3014,11 @@ Resource RID_SC_FUNCTION_NAMES
|
|||
Text[ turkish ] = "IRR";
|
||||
Text[ language_user1 ] = " ";
|
||||
};
|
||||
String SC_OPCODE_MIRR
|
||||
{
|
||||
Text = "QIKV" ;
|
||||
Text [ english ] = "MIRR" ;
|
||||
};
|
||||
String SC_OPCODE_VAR
|
||||
{
|
||||
Text = "VARIANZ" ;
|
||||
|
|
Loading…
Reference in a new issue