From 924f9d7ea89899848dba512a428e5f64e44ee534 Mon Sep 17 00:00:00 2001 From: Winfried Donkers Date: Sun, 1 Dec 2013 12:40:41 +0100 Subject: fdo#72158 Add Excel 2010 functions LOGNORM.DIST, LOGNORM.INV, NORM.DIST, NORM.INV, NORM.S.DIST, NORM.S.INV Change-Id: I695e0645642af1757a1dd7d7f0f15c9515e21309 Reviewed-on: https://gerrit.libreoffice.org/6883 Reviewed-by: Eike Rathke Tested-by: Eike Rathke --- include/formula/compiler.hrc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'include/formula/compiler.hrc') diff --git a/include/formula/compiler.hrc b/include/formula/compiler.hrc index 7dacf30739a6..3b7207c5883d 100644 --- a/include/formula/compiler.hrc +++ b/include/formula/compiler.hrc @@ -436,8 +436,14 @@ #define SC_OPCODE_WEIBULL_MS 438 #define SC_OPCODE_GAMMA_DIST_MS 439 #define SC_OPCODE_GAMMA_INV_MS 440 +#define SC_OPCODE_LOG_NORM_DIST_MS 441 +#define SC_OPCODE_LOG_INV_MS 442 +#define SC_OPCODE_NORM_DIST_MS 443 +#define SC_OPCODE_NORM_INV_MS 444 +#define SC_OPCODE_STD_NORM_DIST_MS 445 +#define SC_OPCODE_S_NORM_INV_MS 446 -#define SC_OPCODE_STOP_2_PAR 441 /* last function with two or more parameters' OpCode + 1 */ +#define SC_OPCODE_STOP_2_PAR 447 /* last function with two or more parameters' OpCode + 1 */ #define SC_OPCODE_STOP_FUNCTION SC_OPCODE_STOP_2_PAR /* last function's OpCode + 1 */ #define SC_OPCODE_LAST_OPCODE_ID (SC_OPCODE_STOP_FUNCTION - 1) /* last OpCode */ -- cgit