1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: scfuncs.src,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 /* Resource file for the function wizard / autopilot.
33 * All descriptions of functions are collected within the resources
34 * RID_SC_FUNCTION_DESCRIPTIONS1 respectively RID_SC_FUNCTION_DESCRIPTIONS2,
35 * two blocks because otherwise we had a 64kb overflow.
37 * For every function there is a sub resource with the number of the OpCode of
40 * In this sub resource, with index 1 the description of the function is
41 * given, after that follows an
43 * ExtraData block with:
45 * Boolean flag whether function is suppressed. Usually 0. This may be
46 * used to add UI string resources before UI freeze if implementation
47 * isn't ready yet without displaying them in the function wizard,
48 * most recent used list and other UI elements. Also not available via
51 * Function group (text, math, ...), one of ID_FUNCTION_GRP_...
53 * Help ID, U2S(HID_FUNC_...)
55 * Number of parameters. VAR_ARGS if variable number, or
56 * VAR_ARGS+number if number of fixed parameters and variable
57 * arguments following.
59 * For every parameter:
61 * Boolean flag whether the parameter is optional.
63 * Number of suppressed parameters. Usually 0. Same meaning and
64 * mechanism as the flag for the entire function above.
66 * For every suppressed parameter:
68 * The parameter number, offset starting with 0. Variable
69 * arguments can't be suppressed!
72 * ExtraData block followed by two string resources for each parameter,
73 * first the type or name of the parameter, second a description of the
78 #define U2S(x) ((x)-HID_START)
79 // Macro U2S: unsigned to signed
80 // is needed because the resource compiler only knows signed short int in
81 // ExtraData, but the HID_XXX are unsigned and exceed 32k. Code reading the
82 // resource entries must consider this and undo the conversion.
84 #include "scfuncs.hrc" // ID_FUNCTION_GRP_XXX, HID_FUNC_XXX
85 #include "formula/compiler.hrc" // SC_OPCODE_XXX
87 Resource RID_SC_FUNCTION_DESCRIPTIONS1
89 // -=*# Resource for function DBANZAHL #*=-
90 Resource SC_OPCODE_DB_COUNT
92 String 1 // Description
94 Text [ en-US ] = "Counts the cells of a data range whose contents match the search criteria." ;
99 ID_FUNCTION_GRP_DATABASE;
100 U2S( HID_FUNC_DBANZAHL );
104 String 2 // Name of Parameter 1
106 Text [ en-US ] = "Database" ;
108 String 3 // Description of Parameter 1
110 Text [ en-US ] = "The range of cells containing data." ;
112 String 4 // Name of Parameter 2
114 Text [ en-US ] = "Database field" ;
116 String 5 // Description of Parameter 2
118 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
120 String 6 // Name of Parameter 3
122 Text [ en-US ] = "Search criteria" ;
124 String 7 // Description of Parameter 3
126 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
129 // -=*# Resource for function DBANZAHL2 #*=-
130 Resource SC_OPCODE_DB_COUNT_2
132 String 1 // Description
134 Text [ en-US ] = "Counts all non-blank cells of a data range where the content corresponds to the search criteria." ;
139 ID_FUNCTION_GRP_DATABASE;
140 U2S( HID_FUNC_DBANZAHL2 );
144 String 2 // Name of Parameter 1
146 Text [ en-US ] = "Database" ;
148 String 3 // Description of Parameter 1
150 Text [ en-US ] = "The range of cells containing data." ;
152 String 4 // Name of Parameter 2
154 Text [ en-US ] = "Database field" ;
156 String 5 // Description of Parameter 2
158 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
160 String 6 // Name of Parameter 3
162 Text [ en-US ] = "Search criteria" ;
164 String 7 // Description of Parameter 3
166 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
169 // -=*# Resource for function DBMITTELWERT #*=-
170 Resource SC_OPCODE_DB_AVERAGE
172 String 1 // Description
174 Text [ en-US ] = "Returns the average value of all the cells of a data range whose contents match the search criteria." ;
179 ID_FUNCTION_GRP_DATABASE;
180 U2S( HID_FUNC_DBMITTELWERT );
184 String 2 // Name of Parameter 1
186 Text [ en-US ] = "Database" ;
188 String 3 // Description of Parameter 1
190 Text [ en-US ] = "The range of cells containing data." ;
192 String 4 // Name of Parameter 2
194 Text [ en-US ] = "Database field" ;
196 String 5 // Description of Parameter 2
198 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
200 String 6 // Name of Parameter 3
202 Text [ en-US ] = "Search criteria" ;
204 String 7 // Description of Parameter 3
206 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
209 // -=*# Resource for function DBAUSZUG #*=-
210 Resource SC_OPCODE_DB_GET
212 String 1 // Description
214 Text [ en-US ] = "Defines the contents of the cell of a data range which matches the search criteria." ;
219 ID_FUNCTION_GRP_DATABASE;
220 U2S( HID_FUNC_DBAUSZUG );
224 String 2 // Name of Parameter 1
226 Text [ en-US ] = "Database" ;
228 String 3 // Description of Parameter 1
230 Text [ en-US ] = "The range of cells containing data." ;
232 String 4 // Name of Parameter 2
234 Text [ en-US ] = "Database field" ;
236 String 5 // Description of Parameter 2
238 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
240 String 6 // Name of Parameter 3
242 Text [ en-US ] = "Search criteria" ;
244 String 7 // Description of Parameter 3
246 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
249 // -=*# Resource for function DBMAX #*=-
250 Resource SC_OPCODE_DB_MAX
252 String 1 // Description
254 Text [ en-US ] = "Returns the maximum value from all of the cells of a data range which correspond to the search criteria." ;
259 ID_FUNCTION_GRP_DATABASE;
260 U2S( HID_FUNC_DBMAX );
264 String 2 // Name of Parameter 1
266 Text [ en-US ] = "Database" ;
268 String 3 // Description of Parameter 1
270 Text [ en-US ] = "The range of cells containing data." ;
272 String 4 // Name of Parameter 2
274 Text [ en-US ] = "Database field" ;
276 String 5 // Description of Parameter 2
278 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
280 String 6 // Name of Parameter 3
282 Text [ en-US ] = "Search criteria" ;
284 String 7 // Description of Parameter 3
286 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
289 // -=*# Resource for function DBMIN #*=-
290 Resource SC_OPCODE_DB_MIN
292 String 1 // Description
294 Text [ en-US ] = "Returns the minimum of all cells of a data range where the contents correspond to the search criteria." ;
299 ID_FUNCTION_GRP_DATABASE;
300 U2S( HID_FUNC_DBMIN );
304 String 2 // Name of Parameter 1
306 Text [ en-US ] = "Database" ;
308 String 3 // Description of Parameter 1
310 Text [ en-US ] = "The range of cells containing data." ;
312 String 4 // Name of Parameter 2
314 Text [ en-US ] = "Database field" ;
316 String 5 // Description of Parameter 2
318 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
320 String 6 // Name of Parameter 3
322 Text [ en-US ] = "Search criteria" ;
324 String 7 // Description of Parameter 3
326 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
329 // -=*# Resource for function DBPRODUKT #*=-
330 Resource SC_OPCODE_DB_PRODUCT
332 String 1 // Description
334 Text [ en-US ] = "Multiplies all cells of a data range where the contents match the search criteria." ;
339 ID_FUNCTION_GRP_DATABASE;
340 U2S( HID_FUNC_DBPRODUKT );
344 String 2 // Name of Parameter 1
346 Text [ en-US ] = "Database" ;
348 String 3 // Description of Parameter 1
350 Text [ en-US ] = "The range of cells containing data." ;
352 String 4 // Name of Parameter 2
354 Text [ en-US ] = "Database field" ;
356 String 5 // Description of Parameter 2
358 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
360 String 6 // Name of Parameter 3
362 Text [ en-US ] = "Search criteria" ;
364 String 7 // Description of Parameter 3
366 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
369 // -=*# Resource for function DBSTDABW #*=-
370 Resource SC_OPCODE_DB_STD_DEV
372 String 1 // Description
374 Text [ en-US ] = "Calculates the standard deviation of all cells in a data range whose contents match the search criteria." ;
379 ID_FUNCTION_GRP_DATABASE;
380 U2S( HID_FUNC_DBSTDABW );
384 String 2 // Name of Parameter 1
386 Text [ en-US ] = "Database" ;
388 String 3 // Description of Parameter 1
390 Text [ en-US ] = "The range of cells containing data." ;
392 String 4 // Name of Parameter 2
394 Text [ en-US ] = "Database field" ;
396 String 5 // Description of Parameter 2
398 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
400 String 6 // Name of Parameter 3
402 Text [ en-US ] = "Search criteria" ;
404 String 7 // Description of Parameter 3
406 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
409 // -=*# Resource for function DBSTDABWN #*=-
410 Resource SC_OPCODE_DB_STD_DEV_P
412 String 1 // Description
414 Text [ en-US ] = "Returns the standard deviation with regards to the population of all cells of a data range matching the search criteria." ;
419 ID_FUNCTION_GRP_DATABASE;
420 U2S( HID_FUNC_DBSTDABWN );
424 String 2 // Name of Parameter 1
426 Text [ en-US ] = "Database" ;
428 String 3 // Description of Parameter 1
430 Text [ en-US ] = "The range of cells containing data." ;
432 String 4 // Name of Parameter 2
434 Text [ en-US ] = "Database field" ;
436 String 5 // Description of Parameter 2
438 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
440 String 6 // Name of Parameter 3
442 Text [ en-US ] = "Search criteria" ;
444 String 7 // Description of Parameter 3
446 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
449 // -=*# Resource for function DBSUMME #*=-
450 Resource SC_OPCODE_DB_SUM
452 String 1 // Description
454 Text [ en-US ] = "Adds all the cells of a data range where the contents match the search criteria." ;
459 ID_FUNCTION_GRP_DATABASE;
460 U2S( HID_FUNC_DBSUMME );
464 String 2 // Name of Parameter 1
466 Text [ en-US ] = "Database" ;
468 String 3 // Description of Parameter 1
470 Text [ en-US ] = "The range of cells containing data." ;
472 String 4 // Name of Parameter 2
474 Text [ en-US ] = "Database field" ;
476 String 5 // Description of Parameter 2
478 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
480 String 6 // Name of Parameter 3
482 Text [ en-US ] = "Search criteria" ;
484 String 7 // Description of Parameter 3
486 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
489 // -=*# Resource for function DBVARIANZ #*=-
490 Resource SC_OPCODE_DB_VAR
492 String 1 // Description
494 Text [ en-US ] = "Determines the variance of all the cells in a data range where the contents match the search criteria." ;
499 ID_FUNCTION_GRP_DATABASE;
500 U2S( HID_FUNC_DBVARIANZ );
504 String 2 // Name of Parameter 1
506 Text [ en-US ] = "Database" ;
508 String 3 // Description of Parameter 1
510 Text [ en-US ] = "The range of cells containing data." ;
512 String 4 // Name of Parameter 2
514 Text [ en-US ] = "Database field" ;
516 String 5 // Description of Parameter 2
518 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
520 String 6 // Name of Parameter 3
522 Text [ en-US ] = "Search criteria" ;
524 String 7 // Description of Parameter 3
526 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
529 // -=*# Resource for function DBVARIANZEN #*=-
530 Resource SC_OPCODE_DB_VAR_P
532 String 1 // Description
534 Text [ en-US ] = "Determines variance of a population based on all cells in a data range where contents match the search criteria." ;
539 ID_FUNCTION_GRP_DATABASE;
540 U2S( HID_FUNC_DBVARIANZEN );
544 String 2 // Name of Parameter 1
546 Text [ en-US ] = "Database" ;
548 String 3 // Description of Parameter 1
550 Text [ en-US ] = "The range of cells containing data." ;
552 String 4 // Name of Parameter 2
554 Text [ en-US ] = "Database field" ;
556 String 5 // Description of Parameter 2
558 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
560 String 6 // Name of Parameter 3
562 Text [ en-US ] = "Search criteria" ;
564 String 7 // Description of Parameter 3
566 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
569 // -=*# Resource for function DATUM #*=-
570 Resource SC_OPCODE_GET_DATE
572 String 1 // Description
574 Text [ en-US ] = "Provides an internal number for the date given." ;
579 ID_FUNCTION_GRP_DATETIME;
580 U2S( HID_FUNC_DATUM );
584 String 2 // Name of Parameter 1
586 Text [ en-US ] = "year" ;
588 String 3 // Description of Parameter 1
590 Text [ en-US ] = "An integer between 1583 and 9956 or 0 and 99 (19xx or 20xx depending on the defined option)." ;
592 String 4 // Name of Parameter 2
594 Text [ en-US ] = "month" ;
596 String 5 // Description of Parameter 2
598 Text [ en-US ] = "An integer between 1 and 12 representing the month." ;
600 String 6 // Name of Parameter 3
602 Text [ en-US ] = "day" ;
604 String 7 // Description of Parameter 3
606 Text [ en-US ] = "An integer between 1 and 31 representing the day of the month." ;
609 // -=*# Resource for function DATWERT #*=-
610 Resource SC_OPCODE_GET_DATE_VALUE
612 String 1 // Description
614 Text [ en-US ] = "Returns an internal number for a text having a possible date format." ;
619 ID_FUNCTION_GRP_DATETIME;
620 U2S( HID_FUNC_DATWERT );
624 String 2 // Name of Parameter 1
626 Text [ en-US ] = "text" ;
628 String 3 // Description of Parameter 1
630 Text [ en-US ] = "A text enclosed in quotation marks which returns a date in a %PRODUCTNAME date format." ;
633 // -=*# Resource for function TAG #*=-
634 Resource SC_OPCODE_GET_DAY
636 String 1 // Description
638 Text [ en-US ] = "Returns the sequential date of the month as an integer (1-31) in relation to the date value." ;
643 ID_FUNCTION_GRP_DATETIME;
648 String 2 // Name of Parameter 1
650 Text [ en-US ] = "Number" ;
652 String 3 // Description of Parameter 1
654 Text [ en-US ] = "The internal number for the date." ;
657 // -=*# Resource for function TAGE360 #*=-
658 Resource SC_OPCODE_GET_DIFF_DATE_360
660 String 1 // Description
662 Text [ en-US ] = "Calculates the number of days between two dates based on a 360-day year." ;
667 ID_FUNCTION_GRP_DATETIME;
668 U2S( HID_FUNC_TAGE360 );
672 String 2 // Name of Parameter 1
674 Text [ en-US ] = "Date_1" ;
676 String 3 // Description of Parameter 1
678 Text [ en-US ] = "The start date for calculating the difference in days." ;
680 String 4 // Name of Parameter 2
682 Text [ en-US ] = "Date_2" ;
684 String 5 // Description of Parameter 2
686 Text [ en-US ] = "The end date for calculating the difference in days." ;
688 String 6 // Name of Parameter 3
690 Text [ en-US ] = "Type" ;
692 String 7 // Description of Parameter 3
694 Text [ en-US ] = "Method used to form differences: Type = 0 denotes US method (NASD), Type = 1 denotes the European method." ;
697 // -=*# Resource for function STUNDE #*=-
698 Resource SC_OPCODE_GET_HOUR
700 String 1 // Description
702 Text [ en-US ] = "Determines the sequential number of the hour of the day (0-23) for the time value." ;
707 ID_FUNCTION_GRP_DATETIME;
708 U2S( HID_FUNC_STUNDE );
712 String 2 // Name of Parameter 1
714 Text [ en-US ] = "Number" ;
716 String 3 // Description of Parameter 1
718 Text [ en-US ] = "Internal time value" ;
721 // -=*# Resource for function MINUTE #*=-
722 Resource SC_OPCODE_GET_MIN
724 String 1 // Description
726 Text [ en-US ] = "Determines the sequential number for the minute of the hour (0-59) for the time value." ;
731 ID_FUNCTION_GRP_DATETIME;
732 U2S( HID_FUNC_MINUTE );
736 String 2 // Name of Parameter 1
738 Text [ en-US ] = "Number" ;
740 String 3 // Description of Parameter 1
742 Text [ en-US ] = "Internal time value." ;
745 // -=*# Resource for function MONAT #*=-
746 Resource SC_OPCODE_GET_MONTH
748 String 1 // Description
750 Text [ en-US ] = "Determines the sequential number of a month of the year (1-12) for the date value." ;
755 ID_FUNCTION_GRP_DATETIME;
756 U2S( HID_FUNC_MONAT );
760 String 2 // Name of Parameter 1
762 Text [ en-US ] = "Number" ;
764 String 3 // Description of Parameter 1
766 Text [ en-US ] = "The internal number of the date." ;
769 // -=*# Resource for function JETZT #*=-
770 Resource SC_OPCODE_GET_ACT_TIME
772 String 1 // Description
774 Text [ en-US ] = "Determines the current time of the computer." ;
779 ID_FUNCTION_GRP_DATETIME;
780 U2S( HID_FUNC_JETZT );
785 // -=*# Resource for function SEKUNDE #*=-
786 Resource SC_OPCODE_GET_SEC
788 String 1 // Description
790 Text [ en-US ] = "Determines the sequential number of the second of a minute (0-59) for the time value." ;
795 ID_FUNCTION_GRP_DATETIME;
796 U2S( HID_FUNC_SEKUNDE );
800 String 2 // Name of Parameter 1
802 Text [ en-US ] = "Number" ;
804 String 3 // Description of Parameter 1
806 Text [ en-US ] = "The internal time value." ;
809 // -=*# Resource for function ZEIT #*=-
810 Resource SC_OPCODE_GET_TIME
812 String 1 // Description
814 Text [ en-US ] = "Determines a time value from the details for hour, minute and second." ;
819 ID_FUNCTION_GRP_DATETIME;
820 U2S( HID_FUNC_ZEIT );
824 String 2 // Name of Parameter 1
826 Text [ en-US ] = "hour" ;
828 String 3 // Description of Parameter 1
830 Text [ en-US ] = "The integer for the hour." ;
832 String 4 // Name of Parameter 2
834 Text [ en-US ] = "minute" ;
836 String 5 // Description of Parameter 2
838 Text [ en-US ] = "The integer for the minute." ;
840 String 6 // Name of Parameter 3
842 Text [ en-US ] = "second" ;
844 String 7 // Description of Parameter 3
846 Text [ en-US ] = "The integer for the second." ;
849 // -=*# Resource for function ZEITWERT #*=-
850 Resource SC_OPCODE_GET_TIME_VALUE
852 String 1 // Description
854 Text [ en-US ] = "Returns a sequential number for a text shown in a possible time entry format." ;
859 ID_FUNCTION_GRP_DATETIME;
860 U2S( HID_FUNC_ZEITWERT );
864 String 2 // Name of Parameter 1
866 Text [ en-US ] = "text" ;
868 String 3 // Description of Parameter 1
870 Text [ en-US ] = "A text enclosed in quotation marks which returns a time in a %PRODUCTNAME time format." ;
873 // -=*# Resource for function HEUTE #*=-
874 Resource SC_OPCODE_GET_ACT_DATE
876 String 1 // Description
878 Text [ en-US ] = "Determines the current date of the computer." ;
883 ID_FUNCTION_GRP_DATETIME;
884 U2S( HID_FUNC_HEUTE );
889 // -=*# Resource for function WOCHENTAG #*=-
890 Resource SC_OPCODE_GET_DAY_OF_WEEK
892 String 1 // Description
894 Text [ en-US ] = "Returns the day of the week for the date value as an integer (1-7)." ;
899 ID_FUNCTION_GRP_DATETIME;
900 U2S( HID_FUNC_WOCHENTAG );
904 String 2 // Name of Parameter 1
906 Text [ en-US ] = "Number" ;
908 String 3 // Description of Parameter 1
910 Text [ en-US ] = "The internal number for the date." ;
912 String 4 // Name of Parameter 2
914 Text [ en-US ] = "Type" ;
916 String 5 // Description of Parameter 2
918 Text [ en-US ] = "Fixes the beginning of the week and the type of calculation to be used." ;
921 // -=*# Resource for function JAHR #*=-
922 Resource SC_OPCODE_GET_YEAR
924 String 1 // Description
926 Text [ en-US ] = "Returns the year of a date value as an integer." ;
931 ID_FUNCTION_GRP_DATETIME;
932 U2S( HID_FUNC_JAHR );
936 String 2 // Name of Parameter 1
938 Text [ en-US ] = "Number" ;
940 String 3 // Description of Parameter 1
942 Text [ en-US ] = "Internal number of the date." ;
945 // -=*# Resource for function TAGE #*=-
946 Resource SC_OPCODE_GET_DIFF_DATE
948 String 1 // Description
950 Text [ en-US ] = "Calculates the number of days between two dates." ;
955 ID_FUNCTION_GRP_DATETIME;
956 U2S( HID_FUNC_TAGE );
960 String 2 // Name of Parameter 1
962 Text [ en-US ] = "Date_2" ;
964 String 3 // Description of Parameter 1
966 Text [ en-US ] = "The end date for calculating the difference in days." ;
968 String 4 // Name of Parameter 2
970 Text [ en-US ] = "Date_1" ;
972 String 5 // Description of Parameter 2
974 Text [ en-US ] = "The start date for calculating the difference in days." ;
977 // -=*# Resource for function KALENDERWOCHE #*=-
978 Resource SC_OPCODE_WEEK
980 String 1 // Description
982 Text [ en-US ] = "Calculates the calendar week corresponding to the given date." ;
987 ID_FUNCTION_GRP_DATETIME;
988 U2S( HID_FUNC_KALENDERWOCHE );
992 String 2 // Name of Parameter 1
994 Text [ en-US ] = "Number" ;
996 String 3 // Description of Parameter 1
998 Text [ en-US ] = "The internal number of the date." ;
1000 String 4 // Name of Parameter 2
1002 Text [ en-US ] = "mode" ;
1004 String 5 // Description of Parameter 2
1006 Text [ en-US ] = "Indicates the first day of the week (1 = Sunday, other values = Monday)." ;
1009 // -=*# Resource for function OSTERSONNTAG #*=-
1010 Resource SC_OPCODE_EASTERSUNDAY
1012 String 1 // Description
1014 Text [ en-US ] = "Calculates the date of Easter Sunday in a given year.";
1019 ID_FUNCTION_GRP_DATETIME;
1020 U2S( HID_FUNC_OSTERSONNTAG );
1024 String 2 // Name of Parameter 1
1026 Text [ en-US ] = "year";
1028 String 3 // Description of Parameter 1
1030 Text [ en-US ] = "An interger between 1583 and 9956, or 0 and 99 (19xx or 20xx depending on the option set).";
1033 // -=*# Resource for function BW #*=-
1034 Resource SC_OPCODE_BW
1036 String 1 // Description
1038 Text [ en-US ] = "Present value. Calculates the present value of an investment." ;
1043 ID_FUNCTION_GRP_FINANZ;
1048 String 2 // Name of Parameter 1
1050 Text [ en-US ] = "Rate" ;
1052 String 3 // Description of Parameter 1
1054 Text [ en-US ] = "The rate of interest for the period given." ;
1056 String 4 // Name of Parameter 2
1058 Text [ en-US ] = "NPER" ;
1060 String 5 // Description of Parameter 2
1062 Text [ en-US ] = "The payment period. The total number of periods in which the annuity is paid." ;
1064 String 6 // Name of Parameter 3
1066 Text [ en-US ] = "PMT" ;
1068 String 7 // Description of Parameter 3
1070 Text [ en-US ] = "Regular payments. The constant amount of annuity that is paid in each period." ;
1072 String 8 // Name of Parameter 4
1074 Text [ en-US ] = "FV" ;
1076 String 9 // Description of Parameter 4
1078 Text [ en-US ] = "Future value. The value (final value) to be attained after the last payment." ;
1080 String 10 // Name of Parameter 5
1082 Text [ en-US ] = "Type" ;
1084 String 11 // Description of Parameter 5
1086 Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1089 // -=*# Resource for function ZW #*=-
1090 Resource SC_OPCODE_ZW
1092 String 1 // Description
1094 Text [ en-US ] = "Future value. Returns the future value of an investment based on regular payments and a constant interest rate." ;
1099 ID_FUNCTION_GRP_FINANZ;
1104 String 2 // Name of Parameter 1
1106 Text [ en-US ] = "Rate" ;
1108 String 3 // Description of Parameter 1
1110 Text [ en-US ] = "The rate of interest per period." ;
1112 String 4 // Name of Parameter 2
1114 Text [ en-US ] = "NPER" ;
1116 String 5 // Description of Parameter 2
1118 Text [ en-US ] = "Payment period. The total number of periods in which the annuity (pension) is paid." ;
1120 String 6 // Name of Parameter 3
1122 Text [ en-US ] = "PMT" ;
1124 String 7 // Description of Parameter 3
1126 Text [ en-US ] = "Regular payments. The constant annuity to be paid in each period." ;
1128 String 8 // Name of Parameter 4
1130 Text [ en-US ] = "PV" ;
1132 String 9 // Description of Parameter 4
1134 Text [ en-US ] = "Present value. The current value of a series of payments" ;
1136 String 10 // Name of Parameter 5
1138 Text [ en-US ] = "Type" ;
1140 String 11 // Description of Parameter 5
1142 Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1145 // -=*# Resource for function ZZR #*=-
1146 Resource SC_OPCODE_ZZR
1148 String 1 // Description
1150 Text [ en-US ] = "Payment period. Calculates the number of payment periods for an investment based on regular payments and a constant interest rate." ;
1155 ID_FUNCTION_GRP_FINANZ;
1156 U2S( HID_FUNC_ZZR );
1160 String 2 // Name of Parameter 1
1162 Text [ en-US ] = "Rate" ;
1164 String 3 // Description of Parameter 1
1166 Text [ en-US ] = "The rate of interest per period." ;
1168 String 4 // Name of Parameter 2
1170 Text [ en-US ] = "PMT" ;
1172 String 5 // Description of Parameter 2
1174 Text [ en-US ] = "Regular payments. The constant annuity to be paid in each period." ;
1176 String 6 // Name of Parameter 3
1178 Text [ en-US ] = "PV" ;
1180 String 7 // Description of Parameter 3
1182 Text [ en-US ] = "Present value. The current value of a series of payments" ;
1184 String 8 // Name of Parameter 4
1186 Text [ en-US ] = "FV" ;
1188 String 9 // Description of Parameter 4
1190 Text [ en-US ] = "Future value. The value (end value) to be attained after the final payment." ;
1192 String 10 // Name of Parameter 5
1194 Text [ en-US ] = "Type" ;
1196 String 11 // Description of Parameter 5
1198 Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1201 // -=*# Resource for function RMZ #*=-
1202 Resource SC_OPCODE_RMZ
1204 String 1 // Description
1206 Text [ en-US ] = "Regular payments. Returns the periodic payment of an annuity, based on regular payments and a fixed periodic interest rate." ;
1211 ID_FUNCTION_GRP_FINANZ;
1212 U2S( HID_FUNC_RMZ );
1216 String 2 // Name of Parameter 1
1218 Text [ en-US ] = "Rate" ;
1220 String 3 // Description of Parameter 1
1222 Text [ en-US ] = "The rate of interest per period." ;
1224 String 4 // Name of Parameter 2
1226 Text [ en-US ] = "NPER" ;
1228 String 5 // Description of Parameter 2
1230 Text [ en-US ] = "Payment period. The total number of periods in which the annuity (pension) is paid." ;
1232 String 6 // Name of Parameter 3
1234 Text [ en-US ] = "PV" ;
1236 String 7 // Description of Parameter 3
1238 Text [ en-US ] = "Present value. The current value of a series of payments" ;
1240 String 8 // Name of Parameter 4
1242 Text [ en-US ] = "FV" ;
1244 String 9 // Description of Parameter 4
1246 Text [ en-US ] = "Future value. The value (end value) to be attained after the final payment." ;
1248 String 10 // Name of Parameter 5
1250 Text [ en-US ] = "Type" ;
1252 String 11 // Description of Parameter 5
1254 Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1257 // -=*# Resource for function ZINS #*=-
1258 Resource SC_OPCODE_ZINS
1260 String 1 // Description
1262 Text [ en-US ] = "Calculates the constant interest rate of an investment with regular payments." ;
1267 ID_FUNCTION_GRP_FINANZ;
1268 U2S( HID_FUNC_ZINS );
1269 6; 0; 0; 0; 1; 1; 1;
1272 String 2 // Name of Parameter 1
1274 Text [ en-US ] = "NPER" ;
1276 String 3 // Description of Parameter 1
1278 Text [ en-US ] = "Payment period. The total number of periods in which the annuity (pension) is paid." ;
1280 String 4 // Name of Parameter 2
1282 Text [ en-US ] = "PMT" ;
1284 String 5 // Description of Parameter 2
1286 Text [ en-US ] = "Regular payments. The constant annuity to be paid in each period." ;
1288 String 6 // Name of Parameter 3
1290 Text [ en-US ] = "PV" ;
1292 String 7 // Description of Parameter 3
1294 Text [ en-US ] = "Present value. The current value of a series of payments" ;
1296 String 8 // Name of Parameter 4
1298 Text [ en-US ] = "FV" ;
1300 String 9 // Description of Parameter 4
1302 Text [ en-US ] = "Future value. The value (end value) to be attained after the final payment." ;
1304 String 10 // Name of Parameter 5
1306 Text [ en-US ] = "Type" ;
1308 String 11 // Description of Parameter 5
1310 Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1312 String 12 // Name of Parameter 6
1314 Text [ en-US ] = "Guess" ;
1316 String 13 // Description of Parameter 6
1318 Text [ en-US ] = "Guess. The estimate of the interest rate for the iterative calculating method." ;
1321 // -=*# Resource for function ZINSZ #*=-
1322 Resource SC_OPCODE_ZINS_Z
1324 String 1 // Description
1326 Text [ en-US ] = "Compounded interest. Calculates the interest payment on the principal for an investment with regular payments and a constant interest rate for a given period." ;
1331 ID_FUNCTION_GRP_FINANZ;
1332 U2S( HID_FUNC_ZINSZ );
1333 6; 0; 0; 0; 0; 1; 1;
1336 String 2 // Name of Parameter 1
1338 Text [ en-US ] = "Rate" ;
1340 String 3 // Description of Parameter 1
1342 Text [ en-US ] = "The rate of interest per period." ;
1344 String 4 // Name of Parameter 2
1346 Text [ en-US ] = "Period" ;
1348 String 5 // Description of Parameter 2
1350 Text [ en-US ] = "Periods. The periods for which the compounded interest is to be calculated. P = 1 denotes for the first period, P = NPER for the last one." ;
1352 String 6 // Name of Parameter 3
1354 Text [ en-US ] = "NPER" ;
1356 String 7 // Description of Parameter 3
1358 Text [ en-US ] = "Payment period. The total number of periods in which the annuity (pension) is paid." ;
1360 String 8 // Name of Parameter 4
1362 Text [ en-US ] = "pv" ;
1364 String 9 // Description of Parameter 4
1366 Text [ en-US ] = "Present value. The current value of a series of payments" ;
1368 String 10 // Name of Parameter 5
1370 Text [ en-US ] = "FV" ;
1372 String 11 // Description of Parameter 5
1374 Text [ en-US ] = "Future value. The value (end value) to be attained after the final payment." ;
1376 String 12 // Name of Parameter 6
1378 Text [ en-US ] = "Type" ;
1380 String 13 // Description of Parameter 6
1382 Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1385 // -=*# Resource for function KAPZ #*=-
1386 Resource SC_OPCODE_KAPZ
1388 String 1 // Description
1390 Text [ en-US ] = "Repayment. Calculates the repayment amount for a period for an investment whereby the payments are at regular intervals and the interest rate constant." ;
1395 ID_FUNCTION_GRP_FINANZ;
1396 U2S( HID_FUNC_KAPZ );
1397 6; 0; 0; 0; 0; 1; 1;
1400 String 2 // Name of Parameter 1
1402 Text [ en-US ] = "Rate" ;
1404 String 3 // Description of Parameter 1
1406 Text [ en-US ] = "The interest rate per period." ;
1408 String 4 // Name of Parameter 2
1410 Text [ en-US ] = "Period" ;
1412 String 5 // Description of Parameter 2
1414 Text [ en-US ] = "Period. The period for which the repayments are to be calculated. Per = 1 denotes for the first period, P = NPER for the last" ;
1416 String 6 // Name of Parameter 3
1418 Text [ en-US ] = "NPER" ;
1420 String 7 // Description of Parameter 3
1422 Text [ en-US ] = "The payment period. The total number of periods in which the annuity (pension) is paid." ;
1424 String 8 // Name of Parameter 4
1426 Text [ en-US ] = "PV" ;
1428 String 9 // Description of Parameter 4
1430 Text [ en-US ] = "The present value. The present value or the amount the annuity is currently worth." ;
1432 String 10 // Name of Parameter 5
1434 Text [ en-US ] = "FV" ;
1436 String 11 // Description of Parameter 5
1438 Text [ en-US ] = "Future value. The value (end value) attained after the last payment has been made." ;
1440 String 12 // Name of Parameter 6
1442 Text [ en-US ] = "Type" ;
1444 String 13 // Description of Parameter 6
1446 Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1449 // -=*# Resource for function KUMKAPITAL #*=-
1450 Resource SC_OPCODE_KUM_KAP_Z
1452 String 1 // Description
1454 Text [ en-US ] = "Cumulative Capital. Calculates the total amount of the repayment share in a period for an investment with constant interest rate." ;
1459 ID_FUNCTION_GRP_FINANZ;
1460 U2S( HID_FUNC_KUMKAPITAL );
1461 6; 0; 0; 0; 0; 0; 0;
1464 String 2 // Name of Parameter 1
1466 Text [ en-US ] = "Rate" ;
1468 String 3 // Description of Parameter 1
1470 Text [ en-US ] = "The rate of interest per period." ;
1472 String 4 // Name of Parameter 2
1474 Text [ en-US ] = "NPER" ;
1476 String 5 // Description of Parameter 2
1478 Text [ en-US ] = "Payment period. The total number of periods in which the annuity (pension) is paid." ;
1480 String 6 // Name of Parameter 3
1482 Text [ en-US ] = "PV" ;
1484 String 7 // Description of Parameter 3
1486 Text [ en-US ] = "The present value. The present value or the amount the annuity is currently worth." ;
1488 String 8 // Name of Parameter 4
1490 Text [ en-US ] = "S" ;
1492 String 9 // Description of Parameter 4
1494 Text [ en-US ] = "The start period. The first period to be taken into account. A = 1 denotes the very first period." ;
1496 String 10 // Name of Parameter 5
1498 Text [ en-US ] = "E" ;
1500 String 11 // Description of Parameter 5
1502 Text [ en-US ] = "End period. The last period to be taken into account." ;
1504 String 12 // Name of Parameter 6
1506 Text [ en-US ] = "Type" ;
1508 String 13 // Description of Parameter 6
1510 Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1513 // -=*# Resource for function KUMZINSZ #*=-
1514 Resource SC_OPCODE_KUM_ZINS_Z
1516 String 1 // Description
1518 Text [ en-US ] = "Cumulative compounded interest. Calculates the total amount of the interest share in a period for an investment with a constant interest rate." ;
1523 ID_FUNCTION_GRP_FINANZ;
1524 U2S( HID_FUNC_KUMZINSZ );
1525 6; 0; 0; 0; 0; 0; 0;
1528 String 2 // Name of Parameter 1
1530 Text [ en-US ] = "Rate" ;
1532 String 3 // Description of Parameter 1
1534 Text [ en-US ] = "The rate of interest per period." ;
1536 String 4 // Name of Parameter 2
1538 Text [ en-US ] = "NPER" ;
1540 String 5 // Description of Parameter 2
1542 Text [ en-US ] = "Payment period. The total number of periods in which the annuity (pension) is paid." ;
1544 String 6 // Name of Parameter 3
1546 Text [ en-US ] = "pv" ;
1548 String 7 // Description of Parameter 3
1550 Text [ en-US ] = "The present value. The present value or the amount the annuity is currently worth." ;
1552 String 8 // Name of Parameter 4
1554 Text [ en-US ] = "S" ;
1556 String 9 // Description of Parameter 4
1558 Text [ en-US ] = "The start period. The first period to be taken into account. A = 1 denotes the very first period." ;
1560 String 10 // Name of Parameter 5
1562 Text [ en-US ] = "E" ;
1564 String 11 // Description of Parameter 5
1566 Text [ en-US ] = "The end period. The last period to be taken into account." ;
1568 String 12 // Name of Parameter 6
1570 Text [ en-US ] = "Type" ;
1572 String 13 // Description of Parameter 6
1574 Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1577 // -=*# Resource for function DIA #*=-
1578 Resource SC_OPCODE_DIA
1580 String 1 // Description
1582 Text [ en-US ] = "Calulates the arithmetically declining value of an asset (depreciation) for a specified period." ;
1587 ID_FUNCTION_GRP_FINANZ;
1588 U2S( HID_FUNC_DIA );
1592 String 2 // Name of Parameter 1
1594 Text [ en-US ] = "Cost" ;
1596 String 3 // Description of Parameter 1
1598 Text [ en-US ] = "Acquisition costs. The initial cost of the asset." ;
1600 String 4 // Name of Parameter 2
1602 Text [ en-US ] = "Salvage" ;
1604 String 5 // Description of Parameter 2
1606 Text [ en-US ] = "Salvage: The remaining value of the asset at the end of its life." ;
1608 String 6 // Name of Parameter 3
1610 Text [ en-US ] = "Life" ;
1612 String 7 // Description of Parameter 3
1614 Text [ en-US ] = "Useful life. The number of periods in the useful life of the asset." ;
1616 String 8 // Name of Parameter 4
1618 Text [ en-US ] = "Period" ;
1620 String 9 // Description of Parameter 4
1622 Text [ en-US ] = "Period. The depreciation period which must have the same time unit as average useful life." ;
1625 // -=*# Resource for function LIA #*=-
1626 Resource SC_OPCODE_LIA
1628 String 1 // Description
1630 Text [ en-US ] = "Calculates the linear depreciation per period." ;
1635 ID_FUNCTION_GRP_FINANZ;
1636 U2S( HID_FUNC_LIA );
1640 String 2 // Name of Parameter 1
1642 Text [ en-US ] = "Cost" ;
1644 String 3 // Description of Parameter 1
1646 Text [ en-US ] = "Acquisition cost. The initial cost of an asset." ;
1648 String 4 // Name of Parameter 2
1650 Text [ en-US ] = "Salvage" ;
1652 String 5 // Description of Parameter 2
1654 Text [ en-US ] = "Salvage: The remaining value of the asset at the end of its life." ;
1656 String 6 // Name of Parameter 3
1658 Text [ en-US ] = "Life" ;
1660 String 7 // Description of Parameter 3
1662 Text [ en-US ] = "Useful life. The number of periods in the useful life of the asset." ;
1665 // -=*# Resource for function GDA #*=-
1666 Resource SC_OPCODE_GDA
1668 String 1 // Description
1670 Text [ en-US ] = "Calculates the depreciation of an asset for a specific period using the double-declining balance method or declining balance factor." ;
1675 ID_FUNCTION_GRP_FINANZ;
1676 U2S( HID_FUNC_GDA );
1680 String 2 // Name of Parameter 1
1682 Text [ en-US ] = "Cost" ;
1684 String 3 // Description of Parameter 1
1686 Text [ en-US ] = "Acquisition costs. The initial cost of the asset." ;
1688 String 4 // Name of Parameter 2
1690 Text [ en-US ] = "Salvage" ;
1692 String 5 // Description of Parameter 2
1694 Text [ en-US ] = "Salvage: The remaining value of the asset at the end of its life." ;
1696 String 6 // Name of Parameter 3
1698 Text [ en-US ] = "Life" ;
1700 String 7 // Description of Parameter 3
1702 Text [ en-US ] = "Useful life. The number of periods in the useful life of the asset." ;
1704 String 8 // Name of Parameter 4
1706 Text [ en-US ] = "Period" ;
1708 String 9 // Description of Parameter 4
1710 Text [ en-US ] = "Period. The depreciation period in the same time unit as the average useful life entry." ;
1712 String 10 // Name of Parameter 5
1714 Text [ en-US ] = "Factor" ;
1716 String 11 // Description of Parameter 5
1718 Text [ en-US ] = "Factor. The factor for balance decline. F = 2 means a double declining balance factor" ;
1721 // -=*# Resource for function GDA2 #*=-
1722 Resource SC_OPCODE_GDA_2
1724 String 1 // Description
1726 Text [ en-US ] = "Returns the real depreciation of an asset for a specified period using the fixed-declining balance method." ;
1731 ID_FUNCTION_GRP_FINANZ;
1732 U2S( HID_FUNC_GDA2 );
1736 String 2 // Name of Parameter 1
1738 Text [ en-US ] = "Cost" ;
1740 String 3 // Description of Parameter 1
1742 Text [ en-US ] = "Acquisition costs: The initial cost of the asset." ;
1744 String 4 // Name of Parameter 2
1746 Text [ en-US ] = "Salvage" ;
1748 String 5 // Description of Parameter 2
1750 Text [ en-US ] = "Salvage: The remaining value of the asset at the end of its life." ;
1752 String 6 // Name of Parameter 3
1754 Text [ en-US ] = "Life" ;
1756 String 7 // Description of Parameter 3
1758 Text [ en-US ] = "Useful life. The number of periods in the useful life of the asset." ;
1760 String 8 // Name of Parameter 4
1762 Text [ en-US ] = "Period" ;
1764 String 9 // Description of Parameter 4
1766 Text [ en-US ] = "Periods: The period for which the depreciation is calculated. The time unit used for period must be the same as that for the useful life." ;
1768 String 10 // Name of Parameter 5
1770 Text [ en-US ] = "month" ;
1772 String 11 // Description of Parameter 5
1774 Text [ en-US ] = "Months: The number of months in the first year of depreciation." ;
1777 // -=*# Resource for function VDB #*=-
1778 Resource SC_OPCODE_VBD
1780 String 1 // Description
1782 Text [ en-US ] = "Variable declining balance. Returns the declining balance depreciation for a particular period." ;
1787 ID_FUNCTION_GRP_FINANZ;
1788 U2S( HID_FUNC_VDB );
1789 7; 0; 0; 0; 0; 0; 1; 1;
1792 String 2 // Name of Parameter 1
1794 Text [ en-US ] = "Cost" ;
1796 String 3 // Description of Parameter 1
1798 Text [ en-US ] = "Cost. The initial cost of the asset." ;
1800 String 4 // Name of Parameter 2
1802 Text [ en-US ] = "Salvage" ;
1804 String 5 // Description of Parameter 2
1806 Text [ en-US ] = "Salvage. The salvage value of an asset at the end of its useful life." ;
1808 String 6 // Name of Parameter 3
1810 Text [ en-US ] = "Life" ;
1812 String 7 // Description of Parameter 3
1814 Text [ en-US ] = "Useful life. The number of periods in the useful life of the asset." ;
1816 String 8 // Name of Parameter 4
1818 Text [ en-US ] = "S" ;
1820 String 9 // Description of Parameter 4
1822 Text [ en-US ] = "Start. The first period for depreciation in the same time unit as the useful life." ;
1824 String 10 // Name of Parameter 5
1826 Text [ en-US ] = "end" ;
1828 String 11 // Description of Parameter 5
1830 Text [ en-US ] = "End. The last period of the depreciation using the same time unit as for the useful life." ;
1832 String 12 // Name of Parameter 6
1834 Text [ en-US ] = "Factor" ;
1836 String 13 // Description of Parameter 6
1838 Text [ en-US ] = "Factor. The factor for the reduction of the depreciation. F = 2 denotes double rate depreciation." ;
1840 String 14 // Name of Parameter 7
1842 Text [ en-US ] = "Type" ;
1844 String 15 // Description of Parameter 7
1846 Text [ en-US ] = "Do not alter. Type = 1 denotes switch to linear depreciation, type = 0 do not switch." ;
1849 // -=*# Resource for function EFFEKTIV #*=-
1850 Resource SC_OPCODE_EFFEKTIV
1852 String 1 // Description
1854 Text [ en-US ] = "Calculates the annual net interest rate for a nominal interest rate." ;
1859 ID_FUNCTION_GRP_FINANZ;
1860 U2S( HID_FUNC_EFFEKTIV );
1864 String 2 // Name of Parameter 1
1866 Text [ en-US ] = "NOM" ;
1868 String 3 // Description of Parameter 1
1870 Text [ en-US ] = "Nominal Interest" ;
1872 String 4 // Name of Parameter 2
1874 Text [ en-US ] = "P" ;
1876 String 5 // Description of Parameter 2
1878 Text [ en-US ] = "Periods. The number of interest payments per year." ;
1881 // -=*# Resource for function NOMINAL #*=-
1882 Resource SC_OPCODE_NOMINAL
1884 String 1 // Description
1886 Text [ en-US ] = "Calculates the yearly nominal interest rate as an effective interest rate." ;
1891 ID_FUNCTION_GRP_FINANZ;
1892 U2S( HID_FUNC_NOMINAL );
1896 String 2 // Name of Parameter 1
1898 Text [ en-US ] = "effect_rate" ;
1900 String 3 // Description of Parameter 1
1902 Text [ en-US ] = "The effective interest rate" ;
1904 String 4 // Name of Parameter 2
1906 Text [ en-US ] = "npery" ;
1908 String 5 // Description of Parameter 2
1910 Text [ en-US ] = "Periods. The number of interest payment per year." ;
1913 // -=*# Resource for function NBW #*=-
1914 Resource SC_OPCODE_NBW
1916 String 1 // Description
1918 Text [ en-US ] = "Net present value. Calculates the net present value of an investment based on a series of periodic payments and a discount rate." ;
1923 ID_FUNCTION_GRP_FINANZ;
1924 U2S( HID_FUNC_NBW );
1928 String 2 // Name of Parameter 1
1930 Text [ en-US ] = "RATE" ;
1932 String 3 // Description of Parameter 1
1934 Text [ en-US ] = "The rate of discount for one period." ;
1936 String 4 // Name of Parameter 2
1938 Text [ en-US ] = "value " ;
1940 String 5 // Description of Parameter 2
1942 Text [ en-US ] = "Value 1, value 2,... are 1 to 30 arguments representing payments and income." ;
1945 // -=*# Resource for function IKV #*=-
1946 Resource SC_OPCODE_IKV
1948 String 1 // Description
1950 Text [ en-US ] = "Returns the actuarial rate of interest of an investment excluding costs or profits." ;
1955 ID_FUNCTION_GRP_FINANZ;
1956 U2S( HID_FUNC_IKV );
1960 String 2 // Name of Parameter 1
1962 Text [ en-US ] = "Values" ;
1964 String 3 // Description of Parameter 1
1966 Text [ en-US ] = "An array or reference to cells whose contents correspond to the payments. " ;
1968 String 4 // Name of Parameter 2
1970 Text [ en-US ] = "Guess" ;
1972 String 5 // Description of Parameter 2
1974 Text [ en-US ] = "Guess. An estimated value of the rate of return to be used for the iteration calculation." ;
1977 // -=*# Resource for function QIKV/MIRR #*=-
1978 Resource SC_OPCODE_MIRR
1980 String 1 // Description
1982 Text [ en-US ] = "Returns the modified internal rate of return for a series of investments.";
1987 ID_FUNCTION_GRP_FINANZ;
1988 U2S( HID_FUNC_QIKV );
1992 String 2 // Name of Parameter 1
1994 Text [ en-US ] = "Values";
1996 String 3 // Description of Parameter 1
1998 Text [ en-US ] = "An array or reference to cells whose contents correspond to the payments.";
2000 String 4 // Name of Parameter 2
2002 Text [ en-US ] = "investment";
2004 String 5 // Description of Parameter 2
2006 Text [ en-US ] = "Interest rate for investments (the negative values in the array).";
2008 String 6 // Name of Parameter 3
2010 Text [ en-US ] = "reinvest_rate";
2012 String 7 // Description of Parameter 3
2014 Text [ en-US ] = "interest rate for reinvestments (the positive values in the array).";
2017 // -=*# Resource for function ISPMT #*=-
2018 Resource SC_OPCODE_ISPMT
2020 String 1 // Description
2022 Text [ en-US ] = "Returns the amount of interest for constant amortization rates.";
2027 ID_FUNCTION_GRP_FINANZ;
2028 U2S( HID_FUNC_ISPMT );
2032 String 2 // Name of Parameter 1
2034 Text [ en-US ] = "rate";
2036 String 3 // Description of Parameter 1
2038 Text [ en-US ] = "Interest rate for a single amortization rate.";
2040 String 4 // Name of Parameter 2
2042 Text [ en-US ] = "Period";
2044 String 5 // Description of Parameter 2
2046 Text [ en-US ] = "Number of amortization periods for the calculation of the interest.";
2048 String 6 // Name of Parameter 3
2050 Text [ en-US ] = "total_periods";
2052 String 7 // Description of Parameter 3
2054 Text [ en-US ] = "Sum total of amortization periods.";
2056 String 8 // Name of Parameter 4
2058 Text [ en-US ] = "invest";
2060 String 9 // Description of Parameter 4
2062 Text [ en-US ] = "Amount of the investment.";
2065 // -=*# Resource for function LAUFZEIT #*=-
2066 Resource SC_OPCODE_LAUFZ
2068 String 1 // Description
2070 Text [ en-US ] = "Duration. Calculates the number of periods required by an investment to attain the desired value." ;
2075 ID_FUNCTION_GRP_FINANZ;
2076 U2S( HID_FUNC_LAUFZEIT );
2080 String 2 // Name of Parameter 1
2082 Text [ en-US ] = "RATE" ;
2084 String 3 // Description of Parameter 1
2086 Text [ en-US ] = "The constant rate of interest." ;
2088 String 4 // Name of Parameter 2
2090 Text [ en-US ] = "pv" ;
2092 String 5 // Description of Parameter 2
2094 Text [ en-US ] = "The present value. The current value of the investment." ;
2096 String 6 // Name of Parameter 3
2098 Text [ en-US ] = "FV" ;
2100 String 7 // Description of Parameter 3
2102 Text [ en-US ] = "The future value of the investment." ;
2105 // -=*# Resource for function ZGZ #*=-
2106 Resource SC_OPCODE_ZGZ
2108 String 1 // Description
2110 Text [ en-US ] = "Interest. Calculates the interest rate which represents the rate of return from an investment." ;
2115 ID_FUNCTION_GRP_FINANZ;
2116 U2S( HID_FUNC_ZGZ );
2120 String 2 // Name of Parameter 1
2122 Text [ en-US ] = "P" ;
2124 String 3 // Description of Parameter 1
2126 Text [ en-US ] = "The number of periods used in the calculation." ;
2128 String 4 // Name of Parameter 2
2130 Text [ en-US ] = "pv" ;
2132 String 5 // Description of Parameter 2
2134 Text [ en-US ] = "Present value. The current value of the investment." ;
2136 String 6 // Name of Parameter 3
2138 Text [ en-US ] = "FV" ;
2140 String 7 // Description of Parameter 3
2142 Text [ en-US ] = "The future value of the investment." ;
2145 // -=*# Resource for function ISTBEZUG #*=-
2146 Resource SC_OPCODE_IS_REF
2148 String 1 // Description
2150 Text [ en-US ] = "Returns TRUE if value is a reference." ;
2155 ID_FUNCTION_GRP_INFO;
2156 U2S( HID_FUNC_ISTBEZUG );
2160 String 2 // Name of Parameter 1
2162 Text [ en-US ] = "value" ;
2164 String 3 // Description of Parameter 1
2166 Text [ en-US ] = "The value to be tested." ;
2169 // -=*# Resource for function ISTFEHL #*=-
2170 Resource SC_OPCODE_IS_ERR
2172 String 1 // Description
2174 Text [ en-US ] = "Returns TRUE if the value is an error value not equal to #N/A." ;
2179 ID_FUNCTION_GRP_INFO;
2180 U2S( HID_FUNC_ISTFEHL );
2184 String 2 // Name of Parameter 1
2186 Text [ en-US ] = "value" ;
2188 String 3 // Description of Parameter 1
2190 Text [ en-US ] = "The value to be tested." ;
2193 // -=*# Resource for function ISTFEHLER #*=-
2194 Resource SC_OPCODE_IS_ERROR
2196 String 1 // Description
2198 Text [ en-US ] = "Returns TRUE if the value is an error value." ;
2203 ID_FUNCTION_GRP_INFO;
2204 U2S( HID_FUNC_ISTFEHLER );
2208 String 2 // Name of Parameter 1
2210 Text [ en-US ] = "value" ;
2212 String 3 // Description of Parameter 1
2214 Text [ en-US ] = "The value to be tested." ;
2217 // -=*# Resource for function ISTLEER #*=-
2218 Resource SC_OPCODE_IS_EMPTY
2220 String 1 // Description
2222 Text [ en-US ] = "Returns TRUE if value refers to an empty cell." ;
2227 ID_FUNCTION_GRP_INFO;
2228 U2S( HID_FUNC_ISTLEER );
2232 String 2 // Name of Parameter 1
2234 Text [ en-US ] = "value" ;
2236 String 3 // Description of Parameter 1
2238 Text [ en-US ] = "The value to be tested." ;
2241 // -=*# Resource for function ISTLOG #*=-
2242 Resource SC_OPCODE_IS_LOGICAL
2244 String 1 // Description
2246 Text [ en-US ] = "Returns TRUE if the value carries a logical number format." ;
2251 ID_FUNCTION_GRP_INFO;
2252 U2S( HID_FUNC_ISTLOG );
2256 String 2 // Name of Parameter 1
2258 Text [ en-US ] = "value" ;
2260 String 3 // Description of Parameter 1
2262 Text [ en-US ] = "The value to be tested." ;
2265 // -=*# Resource for function ISTNV #*=-
2266 Resource SC_OPCODE_IS_NV
2268 String 1 // Description
2270 Text [ en-US ] = "Returns TRUE if value equals #N/A." ;
2275 ID_FUNCTION_GRP_INFO;
2276 U2S( HID_FUNC_ISTNV );
2280 String 2 // Name of Parameter 1
2282 Text [ en-US ] = "value" ;
2284 String 3 // Description of Parameter 1
2286 Text [ en-US ] = "The value to be tested." ;
2289 // -=*# Resource for function ISTKTEXT #*=-
2290 Resource SC_OPCODE_IS_NON_STRING
2292 String 1 // Description
2294 Text [ en-US ] = "Returns TRUE if the value is not text." ;
2299 ID_FUNCTION_GRP_INFO;
2300 U2S( HID_FUNC_ISTKTEXT );
2304 String 2 // Name of Parameter 1
2306 Text [ en-US ] = "value" ;
2308 String 3 // Description of Parameter 1
2310 Text [ en-US ] = "The value to be tested." ;
2313 // -=*# Resource for function ISTTEXT #*=-
2314 Resource SC_OPCODE_IS_STRING
2316 String 1 // Description
2318 Text [ en-US ] = "Returns TRUE if value is text." ;
2323 ID_FUNCTION_GRP_INFO;
2324 U2S( HID_FUNC_ISTTEXT );
2328 String 2 // Name of Parameter 1
2330 Text [ en-US ] = "value" ;
2332 String 3 // Description of Parameter 1
2334 Text [ en-US ] = "The value to be tested." ;
2337 // -=*# Resource for function ISTZAHL #*=-
2338 Resource SC_OPCODE_IS_VALUE
2340 String 1 // Description
2342 Text [ en-US ] = "Returns TRUE if value is a number." ;
2347 ID_FUNCTION_GRP_INFO;
2348 U2S( HID_FUNC_ISTZAHL );
2352 String 2 // Name of Parameter 1
2354 Text [ en-US ] = "value" ;
2356 String 3 // Description of Parameter 1
2358 Text [ en-US ] = "The value to be tested." ;
2361 // -=*# Resource for function ISTFORMEL #*=-
2362 Resource SC_OPCODE_IS_FORMULA
2364 String 1 // Description
2366 Text [ en-US ] = "Returns TRUE if the cell is a formula cell." ;
2371 ID_FUNCTION_GRP_INFO;
2372 U2S( HID_FUNC_ISTFORMEL );
2376 String 2 // Name of Parameter 1
2378 Text [ en-US ] = "reference" ;
2380 String 3 // Description of Parameter 1
2382 Text [ en-US ] = "The cell to be checked." ;
2385 // -=*# Resource for function FORMEL #*=-
2386 Resource SC_OPCODE_FORMULA
2388 String 1 // Description
2390 Text [ en-US ] = "Returns the formula of a formula cell.";
2395 ID_FUNCTION_GRP_INFO;
2396 U2S( HID_FUNC_FORMEL );
2400 String 2 // Name of Parameter 1
2402 Text [ en-US ] = "Reference";
2404 String 3 // Description of Parameter 1
2406 Text [ en-US ] = "The formula cell.";
2409 // -=*# Resource for function N #*=-
2410 Resource SC_OPCODE_N
2412 String 1 // Description
2414 Text [ en-US ] = "Converts a value to a number." ;
2419 ID_FUNCTION_GRP_INFO;
2424 String 2 // Name of Parameter 1
2426 Text [ en-US ] = "value" ;
2428 String 3 // Description of Parameter 1
2430 Text [ en-US ] = "The value to be interpreted as a number." ;
2433 // -=*# Resource for function NV #*=-
2434 Resource SC_OPCODE_NO_VALUE
2436 String 1 // Description
2438 Text [ en-US ] = "Not available. Returns the error value #N/A." ;
2443 ID_FUNCTION_GRP_INFO;
2449 // -=*# Resource for function TYP #*=-
2450 Resource SC_OPCODE_TYPE
2452 String 1 // Description
2454 Text [ en-US ] = "Defines the data type of a value." ;
2459 ID_FUNCTION_GRP_INFO;
2460 U2S( HID_FUNC_TYP );
2464 String 2 // Name of Parameter 1
2466 Text [ en-US ] = "value" ;
2468 String 3 // Description of Parameter 1
2470 Text [ en-US ] = "The value for which the data type is to be determined." ;
2473 // -=*# Resource for function CELL/ZELLE #*=-
2474 Resource SC_OPCODE_CELL
2476 String 1 // Description
2478 Text [ en-US ] = "Determines information about address, formatting or contents of a cell.";
2483 ID_FUNCTION_GRP_INFO;
2484 U2S( HID_FUNC_ZELLE );
2488 String 2 // Name of Parameter 1
2490 Text [ en-US ] = "info_type";
2492 String 3 // Description of Parameter 1
2494 Text [ en-US ] = "String that specifies the type of information.";
2496 String 4 // Name of Parameter 2
2498 Text [ en-US ] = "Reference";
2500 String 5 // Description of Parameter 2
2502 Text [ en-US ] = "The position of the cell you want to examine.";
2505 // -=*# Resource for function AKTUELL #*=-
2506 Resource SC_OPCODE_CURRENT
2508 String 1 // Description
2510 Text [ en-US ] = "Calculates the current value of the formula at the present location. " ;
2515 ID_FUNCTION_GRP_INFO;
2516 U2S( HID_FUNC_AKTUELL );
2521 // -=*# Resource for function FALSCH #*=-
2522 Resource SC_OPCODE_FALSE
2524 String 1 // Description
2526 Text [ en-US ] = "Defines the logical value as FALSE." ;
2531 ID_FUNCTION_GRP_LOGIC;
2532 U2S( HID_FUNC_FALSCH );
2537 // -=*# Resource for function NICHT #*=-
2538 Resource SC_OPCODE_NOT
2540 String 1 // Description
2542 Text [ en-US ] = "Reverses the value of the argument." ;
2547 ID_FUNCTION_GRP_LOGIC;
2548 U2S( HID_FUNC_NICHT );
2552 String 2 // Name of Parameter 1
2554 Text [ en-US ] = "Logical value" ;
2556 String 3 // Description of Parameter 1
2558 Text [ en-US ] = "An expression that can be either TRUE or FALSE." ;
2561 // -=*# Resource for function WAHR #*=-
2562 Resource SC_OPCODE_TRUE
2564 String 1 // Description
2566 Text [ en-US ] = "Returns the logical value TRUE." ;
2571 ID_FUNCTION_GRP_LOGIC;
2572 U2S( HID_FUNC_WAHR );
2577 // -=*# Resource for function WENN #*=-
2578 Resource SC_OPCODE_IF
2580 String 1 // Description
2582 Text [ en-US ] = "Specifies a logical test to be performed." ;
2587 ID_FUNCTION_GRP_LOGIC;
2588 U2S( HID_FUNC_WENN );
2592 String 2 // Name of Parameter 1
2594 Text [ en-US ] = "Test" ;
2596 String 3 // Description of Parameter 1
2598 Text [ en-US ] = "Any value or expression which can be either TRUE or FALSE." ;
2600 String 4 // Name of Parameter 2
2602 Text [ en-US ] = "Then_value" ;
2604 String 5 // Description of Parameter 2
2606 Text [ en-US ] = "The result of the function if the logical test returns a TRUE." ;
2608 String 6 // Name of Parameter 3
2610 Text [ en-US ] = "Otherwise_value" ;
2612 String 7 // Description of Parameter 3
2614 Text [ en-US ] = "The result of the function if the logical test returns FALSE." ;
2617 // -=*# Resource for function ODER #*=-
2618 Resource SC_OPCODE_OR
2620 String 1 // Description
2622 Text [ en-US ] = "Returns TRUE if an argument is TRUE." ;
2627 ID_FUNCTION_GRP_LOGIC;
2628 U2S( HID_FUNC_ODER );
2632 String 2 // Name of Parameter 1
2634 Text [ en-US ] = "Logical value " ;
2636 String 3 // Description of Parameter 1
2638 Text [ en-US ] = "Logical value 1, logical value 2,... are 1 to 30 conditions to be tested and which return either TRUE or FALSE." ;
2641 // -=*# Resource for function UND #*=-
2642 Resource SC_OPCODE_AND
2644 String 1 // Description
2646 Text [ en-US ] = "Returns TRUE if all arguments are TRUE." ;
2651 ID_FUNCTION_GRP_LOGIC;
2652 U2S( HID_FUNC_UND );
2656 String 2 // Name of Parameter 1
2658 Text [ en-US ] = "Logical value " ;
2660 String 3 // Description of Parameter 1
2662 Text [ en-US ] = "Logical value 1, logical value 2;...are 1 to 30 conditions to be tested and each returns either TRUE or FALSE." ;
2665 // -=*# Resource for function ABS #*=-
2666 Resource SC_OPCODE_ABS
2668 String 1 // Description
2670 Text [ en-US ] = "Absolute value of a number." ;
2675 ID_FUNCTION_GRP_MATH;
2676 U2S( HID_FUNC_ABS );
2680 String 2 // Name of Parameter 1
2682 Text [ en-US ] = "Number" ;
2684 String 3 // Description of Parameter 1
2686 Text [ en-US ] = "The number whose absolute value is to be returned." ;
2689 // -=*# Resource for function POTENZ #*=-
2690 Resource SC_OPCODE_POWER
2692 String 1 // Description
2694 Text [ en-US ] = "Returns a^b, base a raised to the power of exponent b." ;
2699 ID_FUNCTION_GRP_MATH;
2700 U2S( HID_FUNC_POTENZ );
2704 String 2 // Name of Parameter 1
2706 Text [ en-US ] = "Base" ;
2708 String 3 // Description of Parameter 1
2710 Text [ en-US ] = "The base a of the power a^b." ;
2712 String 4 // Name of Parameter 2
2714 Text [ en-US ] = "Exponent" ;
2716 String 5 // Description of Parameter 2
2718 Text [ en-US ] = "The exponent b of the power a^b." ;
2721 // -=*# Resource for function ANZAHLLEEREZELLEN #*=-
2722 Resource SC_OPCODE_COUNT_EMPTY_CELLS
2724 String 1 // Description
2726 Text [ en-US ] = "Counts the blank cells in a specified range." ;
2731 ID_FUNCTION_GRP_MATH;
2732 U2S( HID_FUNC_ANZAHLLEEREZELLEN );
2736 String 2 // Name of Parameter 1
2738 Text [ en-US ] = "range" ;
2740 String 3 // Description of Parameter 1
2742 Text [ en-US ] = "The range in which empty cells are to be counted." ;
2745 // -=*# Resource for function PI #*=-
2746 Resource SC_OPCODE_PI
2748 String 1 // Description
2750 Text [ en-US ] = "Returns the value of the number Pi." ;
2755 ID_FUNCTION_GRP_MATH;
2761 // -=*# Resource for function SUMME #*=-
2762 Resource SC_OPCODE_SUM
2764 String 1 // Description
2766 Text [ en-US ] = "Returns the sum of all arguments." ;
2771 ID_FUNCTION_GRP_MATH;
2772 U2S( HID_FUNC_SUMME );
2776 String 2 // Name of Parameter 1
2778 Text [ en-US ] = "number " ;
2780 String 3 // Description of Parameter 1
2782 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 arguments whose total is to be calculated." ;
2785 // -=*# Resource for function QUADRATESUMME #*=-
2786 Resource SC_OPCODE_SUM_SQ
2788 String 1 // Description
2790 Text [ en-US ] = "Returns the sum of the squares of the arguments." ;
2795 ID_FUNCTION_GRP_MATH;
2796 U2S( HID_FUNC_QUADRATESUMME );
2800 String 2 // Name of Parameter 1
2802 Text [ en-US ] = "number " ;
2804 String 3 // Description of Parameter 1
2806 Text [ en-US ] = "Number 1, number 2,... are 1 to 30 arguments for which the sum of the squares is to be calculated." ;
2809 // -=*# Resource for function PRODUKT #*=-
2810 Resource SC_OPCODE_PRODUCT
2812 String 1 // Description
2814 Text [ en-US ] = "Multiplies the arguments." ;
2819 ID_FUNCTION_GRP_MATH;
2820 U2S( HID_FUNC_PRODUKT );
2824 String 2 // Name of Parameter 1
2826 Text [ en-US ] = "Number " ;
2828 String 3 // Description of Parameter 1
2830 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 arguments to be multiplied and a result returned." ;
2833 // -=*# Resource for function SUMMEWENN #*=-
2834 Resource SC_OPCODE_SUM_IF
2836 String 1 // Description
2838 Text [ en-US ] = "Totals the arguments that meet the conditions." ;
2843 ID_FUNCTION_GRP_MATH;
2844 U2S( HID_FUNC_SUMMEWENN );
2848 String 2 // Name of Parameter 1
2850 Text [ en-US ] = "range" ;
2852 String 3 // Description of Parameter 1
2854 Text [ en-US ] = "The range to be evaluated by the criteria given." ;
2856 String 4 // Name of Parameter 2
2858 Text [ en-US ] = "criteria" ;
2860 String 5 // Description of Parameter 2
2862 Text [ en-US ] = "The cell range in which the search criteria are given." ;
2864 String 6 // Name of Parameter 3
2866 Text [ en-US ] = "sum_range" ;
2868 String 7 // Description of Parameter 3
2870 Text [ en-US ] = "The range from which the values are to be totalled." ;
2873 // -=*# Resource for function ZÄHLENWENN #*=-
2874 Resource SC_OPCODE_COUNT_IF
2876 String 1 // Description
2878 Text [ en-US ] = "Counts the arguments which meet the set conditions." ;
2883 ID_FUNCTION_GRP_MATH;
2884 U2S( HID_FUNC_ZAEHLENWENN );
2888 String 2 // Name of Parameter 1
2890 Text [ en-US ] = "range" ;
2892 String 3 // Description of Parameter 1
2894 Text [ en-US ] = "The range of cells on which the criteria are to be applied." ;
2896 String 4 // Name of Parameter 2
2898 Text [ en-US ] = "criteria" ;
2900 String 5 // Description of Parameter 2
2902 Text [ en-US ] = "The cell range in which the search criteria are given." ;
2905 // -=*# Resource for function WURZEL #*=-
2906 Resource SC_OPCODE_SQRT
2908 String 1 // Description
2910 Text [ en-US ] = "Returns the square root of a number." ;
2915 ID_FUNCTION_GRP_MATH;
2916 U2S( HID_FUNC_WURZEL );
2920 String 2 // Name of Parameter 1
2922 Text [ en-US ] = "number" ;
2924 String 3 // Description of Parameter 1
2926 Text [ en-US ] = "A positive value for which the square root is to be calculated." ;
2929 // -=*# Resource for function ZUFALLSZAHL #*=-
2930 Resource SC_OPCODE_RANDOM
2932 String 1 // Description
2934 Text [ en-US ] = "Returns a random number between 0 and 1." ;
2939 ID_FUNCTION_GRP_MATH;
2940 U2S( HID_FUNC_ZUFALLSZAHL );
2945 // -=*# Resource for function ISTGERADE #*=-
2946 Resource SC_OPCODE_IS_EVEN
2948 String 1 // Description
2950 Text [ en-US ] = "Returns TRUE if value is an even integer." ;
2955 ID_FUNCTION_GRP_MATH;
2956 U2S( HID_FUNC_ISTGERADE );
2960 String 2 // Name of Parameter 1
2962 Text [ en-US ] = "value" ;
2964 String 3 // Description of Parameter 1
2966 Text [ en-US ] = "The value to be tested." ;
2969 // -=*# Resource for function ISTUNGERADE #*=-
2970 Resource SC_OPCODE_IS_ODD
2972 String 1 // Description
2974 Text [ en-US ] = "Returns TRUE if value is an odd integer." ;
2979 ID_FUNCTION_GRP_MATH;
2980 U2S( HID_FUNC_ISTUNGERADE );
2984 String 2 // Name of Parameter 1
2986 Text [ en-US ] = "value" ;
2988 String 3 // Description of Parameter 1
2990 Text [ en-US ] = "The value to be tested." ;
2993 // -=*# Resource for function KOMBINATIONEN #*=-
2994 Resource SC_OPCODE_KOMBIN
2996 String 1 // Description
2998 Text [ en-US ] = "Calculates the number of combinations for elements without repetition." ;
3003 ID_FUNCTION_GRP_MATH;
3004 U2S( HID_FUNC_KOMBINATIONEN );
3008 String 2 // Name of Parameter 1
3010 Text [ en-US ] = "number_1" ;
3012 String 3 // Description of Parameter 1
3014 Text [ en-US ] = "The total number of elements." ;
3016 String 4 // Name of Parameter 2
3018 Text [ en-US ] = "number_2" ;
3020 String 5 // Description of Parameter 2
3022 Text [ en-US ] = "The number of elements selected." ;
3025 // -=*# Resource for function KOMBINATIONEN2 #*=-
3026 Resource SC_OPCODE_KOMBIN_2
3028 String 1 // Description
3030 Text [ en-US ] = "Calculates the number of combinations of elements including repetition." ;
3035 ID_FUNCTION_GRP_MATH;
3036 U2S( HID_FUNC_KOMBINATIONEN2 );
3040 String 2 // Name of Parameter 1
3042 Text [ en-US ] = "number_1" ;
3044 String 3 // Description of Parameter 1
3046 Text [ en-US ] = "The total number of elements." ;
3048 String 4 // Name of Parameter 2
3050 Text [ en-US ] = "number_2" ;
3052 String 5 // Description of Parameter 2
3054 Text [ en-US ] = "The number of elements selected." ;
3057 // -=*# Resource for function ARCCOS #*=-
3058 Resource SC_OPCODE_ARC_COS
3060 String 1 // Description
3062 Text [ en-US ] = "Returns the arccosine of a number." ;
3067 ID_FUNCTION_GRP_MATH;
3068 U2S( HID_FUNC_ARCCOS );
3072 String 2 // Name of Parameter 1
3074 Text [ en-US ] = "Number" ;
3076 String 3 // Description of Parameter 1
3078 Text [ en-US ] = "A value between -1 and 1 for which the arccosine is to be returned." ;
3081 // -=*# Resource for function ARCSIN #*=-
3082 Resource SC_OPCODE_ARC_SIN
3084 String 1 // Description
3086 Text [ en-US ] = "Returns the arcsine of a number." ;
3091 ID_FUNCTION_GRP_MATH;
3092 U2S( HID_FUNC_ARCSIN );
3096 String 2 // Name of Parameter 1
3098 Text [ en-US ] = "Number" ;
3100 String 3 // Description of Parameter 1
3102 Text [ en-US ] = "A value between -1 and 1 for which the arcsine is to be returned." ;
3105 // -=*# Resource for function ARCCOSHYP #*=-
3106 Resource SC_OPCODE_ARC_COS_HYP
3108 String 1 // Description
3110 Text [ en-US ] = "Returns the inverse hyperbolic cosine of a number." ;
3115 ID_FUNCTION_GRP_MATH;
3116 U2S( HID_FUNC_ARCOSHYP );
3120 String 2 // Name of Parameter 1
3122 Text [ en-US ] = "Number" ;
3124 String 3 // Description of Parameter 1
3126 Text [ en-US ] = "A value greater than or equal to 1 for which the hyperbolic cosine is to be returned." ;
3129 // -=*# Resource for function ARCSINHYP #*=-
3130 Resource SC_OPCODE_ARC_SIN_HYP
3132 String 1 // Description
3134 Text [ en-US ] = "Returns the inverse hyperbolic sine of a number." ;
3139 ID_FUNCTION_GRP_MATH;
3140 U2S( HID_FUNC_ARSINHYP );
3144 String 2 // Name of Parameter 1
3146 Text [ en-US ] = "Number" ;
3148 String 3 // Description of Parameter 1
3150 Text [ en-US ] = "The value for which the inverse hyperbolic sine is to be returned." ;
3153 // -=*# Resource for function ARCCOT #*=-
3154 Resource SC_OPCODE_ARC_COT
3156 String 1 // Description
3158 Text [ en-US ] = "Returns the inverse cotangent of a number." ;
3163 ID_FUNCTION_GRP_MATH;
3164 U2S( HID_FUNC_ARCCOT );
3168 String 2 // Name of Parameter 1
3170 Text [ en-US ] = "Number" ;
3172 String 3 // Description of Parameter 1
3174 Text [ en-US ] = "The value for which the inverse cotangent is to be returned." ;
3177 // -=*# Resource for function ARCTAN #*=-
3178 Resource SC_OPCODE_ARC_TAN
3180 String 1 // Description
3182 Text [ en-US ] = "Returns the arctangent of a number." ;
3187 ID_FUNCTION_GRP_MATH;
3188 U2S( HID_FUNC_ARCTAN );
3192 String 2 // Name of Parameter 1
3194 Text [ en-US ] = "Number" ;
3196 String 3 // Description of Parameter 1
3198 Text [ en-US ] = "The value for which the arctangent is to be returned." ;
3201 // -=*# Resource for function ARCCOTHYP #*=-
3202 Resource SC_OPCODE_ARC_COT_HYP
3204 String 1 // Description
3206 Text [ en-US ] = "Returns the inverse hyperbolic cotangent of a number." ;
3211 ID_FUNCTION_GRP_MATH;
3212 U2S( HID_FUNC_ARCOTHYP );
3216 String 2 // Name of Parameter 1
3218 Text [ en-US ] = "Number" ;
3220 String 3 // Description of Parameter 1
3222 Text [ en-US ] = "A value smaller than -1 or greater than 1 for which the inverse hyperbolic cotangent is to be returned." ;
3225 // -=*# Resource for function ARCTANHYP #*=-
3226 Resource SC_OPCODE_ARC_TAN_HYP
3228 String 1 // Description
3230 Text [ en-US ] = "Returns the inverse hyperbolic tangent of a number." ;
3235 ID_FUNCTION_GRP_MATH;
3236 U2S( HID_FUNC_ARTANHYP );
3240 String 2 // Name of Parameter 1
3242 Text [ en-US ] = "Number" ;
3244 String 3 // Description of Parameter 1
3246 Text [ en-US ] = "A value between -1 and 1 for which the inverse hyperbolic tangent is to be returned." ;
3249 // -=*# Resource for function COS #*=-
3250 Resource SC_OPCODE_COS
3252 String 1 // Description
3254 Text [ en-US ] = "Returns the cosine of a number." ;
3259 ID_FUNCTION_GRP_MATH;
3260 U2S( HID_FUNC_COS );
3264 String 2 // Name of Parameter 1
3266 Text [ en-US ] = "Number" ;
3268 String 3 // Description of Parameter 1
3270 Text [ en-US ] = "The angle in the radians for which the cosine is to be returned." ;
3273 // -=*# Resource for function SIN #*=-
3274 Resource SC_OPCODE_SIN
3276 String 1 // Description
3278 Text [ en-US ] = "Returns the sine of a number." ;
3283 ID_FUNCTION_GRP_MATH;
3284 U2S( HID_FUNC_SIN );
3288 String 2 // Name of Parameter 1
3290 Text [ en-US ] = "number" ;
3292 String 3 // Description of Parameter 1
3294 Text [ en-US ] = "The angle in radians for which the sine is to be calculated." ;
3297 // -=*# Resource for function COT #*=-
3298 Resource SC_OPCODE_COT
3300 String 1 // Description
3302 Text [ en-US ] = "Returns the cotangent of a number." ;
3307 ID_FUNCTION_GRP_MATH;
3308 U2S( HID_FUNC_COT );
3312 String 2 // Name of Parameter 1
3314 Text [ en-US ] = "Number" ;
3316 String 3 // Description of Parameter 1
3318 Text [ en-US ] = "The angle in radians whose cotangent value is to be returned." ;
3321 // -=*# Resource for function TAN #*=-
3322 Resource SC_OPCODE_TAN
3324 String 1 // Description
3326 Text [ en-US ] = "Returns the tangent of a number." ;
3331 ID_FUNCTION_GRP_MATH;
3332 U2S( HID_FUNC_TAN );
3336 String 2 // Name of Parameter 1
3338 Text [ en-US ] = "number" ;
3340 String 3 // Description of Parameter 1
3342 Text [ en-US ] = "The angle in radians for which the tangent is to be calculated." ;
3345 // -=*# Resource for function COSHYP #*=-
3346 Resource SC_OPCODE_COS_HYP
3348 String 1 // Description
3350 Text [ en-US ] = "Returns the hyperbolic cosine of a number." ;
3355 ID_FUNCTION_GRP_MATH;
3356 U2S( HID_FUNC_COSHYP );
3360 String 2 // Name of Parameter 1
3362 Text [ en-US ] = "Number" ;
3364 String 3 // Description of Parameter 1
3366 Text [ en-US ] = "The value for which the hyperbolic cosine is to be returned." ;
3369 // -=*# Resource for function SINHYP #*=-
3370 Resource SC_OPCODE_SIN_HYP
3372 String 1 // Description
3374 Text [ en-US ] = "Returns the hyperbolic sine of a number." ;
3379 ID_FUNCTION_GRP_MATH;
3380 U2S( HID_FUNC_SINHYP );
3384 String 2 // Name of Parameter 1
3386 Text [ en-US ] = "number" ;
3388 String 3 // Description of Parameter 1
3390 Text [ en-US ] = "The value for which the hyperbolic sine is to be calculated." ;
3393 // -=*# Resource for function COTHYP #*=-
3394 Resource SC_OPCODE_COT_HYP
3396 String 1 // Description
3398 Text [ en-US ] = "Returns the hyperbolic cotangent of a number." ;
3403 ID_FUNCTION_GRP_MATH;
3404 U2S( HID_FUNC_COTHYP );
3408 String 2 // Name of Parameter 1
3410 Text [ en-US ] = "Number" ;
3412 String 3 // Description of Parameter 1
3414 Text [ en-US ] = "A value not equal to 0 for which the hyperbolic cotangent is to be returned." ;
3417 // -=*# Resource for function TANHYP #*=-
3418 Resource SC_OPCODE_TAN_HYP
3420 String 1 // Description
3422 Text [ en-US ] = "Returns the hyperbolic tangent of a number." ;
3427 ID_FUNCTION_GRP_MATH;
3428 U2S( HID_FUNC_TANHYP );
3432 String 2 // Name of Parameter 1
3434 Text [ en-US ] = "number" ;
3436 String 3 // Description of Parameter 1
3438 Text [ en-US ] = "The value for which the hyperbolic tangent is to be calculated." ;
3441 // -=*# Resource for function ARCTAN2 #*=-
3442 Resource SC_OPCODE_ARC_TAN_2
3444 String 1 // Description
3446 Text [ en-US ] = "Returns the arctangent for the specified coordinates." ;
3451 ID_FUNCTION_GRP_MATH;
3452 U2S( HID_FUNC_ARCTAN2 );
3456 String 2 // Name of Parameter 1
3458 Text [ en-US ] = "number_x" ;
3460 String 3 // Description of Parameter 1
3462 Text [ en-US ] = "The value for the x coordinate." ;
3464 String 4 // Name of Parameter 2
3466 Text [ en-US ] = "number_y" ;
3468 String 5 // Description of Parameter 2
3470 Text [ en-US ] = "The value for the y coordinate." ;
3473 // -=*# Resource for function DEG #*=-
3474 Resource SC_OPCODE_DEG
3476 String 1 // Description
3478 Text [ en-US ] = "Converts a radian to degrees" ;
3483 ID_FUNCTION_GRP_MATH;
3484 U2S( HID_FUNC_DEG );
3488 String 2 // Name of Parameter 1
3490 Text [ en-US ] = "Number" ;
3492 String 3 // Description of Parameter 1
3494 Text [ en-US ] = "The angle in a radian" ;
3497 // -=*# Resource for function RAD #*=-
3498 Resource SC_OPCODE_RAD
3500 String 1 // Description
3502 Text [ en-US ] = "Converts degrees to radians" ;
3507 ID_FUNCTION_GRP_MATH;
3508 U2S( HID_FUNC_RAD );
3512 String 2 // Name of Parameter 1
3514 Text [ en-US ] = "Number" ;
3516 String 3 // Description of Parameter 1
3518 Text [ en-US ] = "The angle in degrees." ;
3521 // -=*# Resource for function EXP #*=-
3522 Resource SC_OPCODE_EXP
3524 String 1 // Description
3526 Text [ en-US ] = "Calculates the exponent for basis e." ;
3531 ID_FUNCTION_GRP_MATH;
3532 U2S( HID_FUNC_EXP );
3536 String 2 // Name of Parameter 1
3538 Text [ en-US ] = "Number" ;
3540 String 3 // Description of Parameter 1
3542 Text [ en-US ] = "The exponent applied to base e." ;
3545 // -=*# Resource for function LOG #*=-
3546 Resource SC_OPCODE_LOG
3548 String 1 // Description
3550 Text [ en-US ] = "Calculates the logarithm to any specified base." ;
3555 ID_FUNCTION_GRP_MATH;
3556 U2S( HID_FUNC_LOG );
3560 String 2 // Name of Parameter 1
3562 Text [ en-US ] = "Number" ;
3564 String 3 // Description of Parameter 1
3566 Text [ en-US ] = "A value greater than 0 for which the logarithm is to be calculated." ;
3568 String 4 // Name of Parameter 2
3570 Text [ en-US ] = "Base" ;
3572 String 5 // Description of Parameter 2
3574 Text [ en-US ] = "The base of the logarithm. If omitted, the base is regarded as 10." ;
3577 // -=*# Resource for function LN #*=-
3578 Resource SC_OPCODE_LN
3580 String 1 // Description
3582 Text [ en-US ] = "Calculates the natural logarithm of a number." ;
3587 ID_FUNCTION_GRP_MATH;
3592 String 2 // Name of Parameter 1
3594 Text [ en-US ] = "Number" ;
3596 String 3 // Description of Parameter 1
3598 Text [ en-US ] = "A value greater than 0 for which the natural logarithm is to be calculated." ;
3601 // -=*# Resource for function LOG10 #*=-
3602 Resource SC_OPCODE_LOG10
3604 String 1 // Description
3606 Text [ en-US ] = "Calculates the base-10 logarithm of a number." ;
3611 ID_FUNCTION_GRP_MATH;
3612 U2S( HID_FUNC_LOG10 );
3616 String 2 // Name of Parameter 1
3618 Text [ en-US ] = "Number" ;
3620 String 3 // Description of Parameter 1
3622 Text [ en-US ] = "A value greater than 0 for which the logarithm is to be calculated." ;
3625 // -=*# Resource for function FAKULTÄT #*=-
3626 Resource SC_OPCODE_FACT
3628 String 1 // Description
3630 Text [ en-US ] = "Calculates the factorial of a number." ;
3635 ID_FUNCTION_GRP_MATH;
3636 U2S( HID_FUNC_FAKULTAET );
3640 String 2 // Name of Parameter 1
3642 Text [ en-US ] = "Number" ;
3644 String 3 // Description of Parameter 1
3646 Text [ en-US ] = "The number for which the factorial is to be calculated." ;
3649 // -=*# Resource for function REST #*=-
3650 Resource SC_OPCODE_MOD
3652 String 1 // Description
3654 Text [ en-US ] = "Calculates the remainder of a division." ;
3659 ID_FUNCTION_GRP_MATH;
3660 U2S( HID_FUNC_REST );
3664 String 2 // Name of Parameter 1
3666 Text [ en-US ] = "Dividend" ;
3668 String 3 // Description of Parameter 1
3670 Text [ en-US ] = "The number to be divided." ;
3672 String 4 // Name of Parameter 2
3674 Text [ en-US ] = "Divisor" ;
3676 String 5 // Description of Parameter 2
3678 Text [ en-US ] = "The number by which the dividend is divided." ;
3681 // -=*# Resource for function VORZEICHEN #*=-
3682 Resource SC_OPCODE_PLUS_MINUS
3684 String 1 // Description
3686 Text [ en-US ] = "Returns the algebraic sign of a number." ;
3691 ID_FUNCTION_GRP_MATH;
3692 U2S( HID_FUNC_VORZEICHEN );
3696 String 2 // Name of Parameter 1
3698 Text [ en-US ] = "Number" ;
3700 String 3 // Description of Parameter 1
3702 Text [ en-US ] = "The number for which the algebraic sign is to be determined." ;
3705 // -=*# Resource for function TEILERGEBNIS #*=-
3706 Resource SC_OPCODE_SUB_TOTAL
3708 String 1 // Description
3710 Text [ en-US ] = "Calculates subtotals in a spreadsheet." ;
3715 ID_FUNCTION_GRP_MATH;
3716 U2S( HID_FUNC_TEILERGEBNIS );
3720 String 2 // Name of Parameter 1
3722 Text [ en-US ] = "Function" ;
3724 String 3 // Description of Parameter 1
3726 Text [ en-US ] = "Function index. Is an index of the possible functions Total, Max, ..." ;
3728 String 4 // Name of Parameter 2
3730 Text [ en-US ] = "range " ;
3732 String 5 // Description of Parameter 2
3734 Text [ en-US ] = "The cells of the range which are to be taken into account." ;
3737 // -=*# Resource for function GANZZAHL #*=-
3738 Resource SC_OPCODE_INT
3740 String 1 // Description
3742 Text [ en-US ] = "Rounds a number down to the nearest integer." ;
3747 ID_FUNCTION_GRP_MATH;
3748 U2S( HID_FUNC_GANZZAHL );
3752 String 2 // Name of Parameter 1
3754 Text [ en-US ] = "Number" ;
3756 String 3 // Description of Parameter 1
3758 Text [ en-US ] = "The number to be rounded down." ;
3761 // -=*# Resource for function KÃœRZEN #*=-
3762 Resource SC_OPCODE_TRUNC
3764 String 1 // Description
3766 Text [ en-US ] = "Truncates the decimal places of a number." ;
3771 ID_FUNCTION_GRP_MATH;
3772 U2S( HID_FUNC_KUERZEN );
3776 String 2 // Name of Parameter 1
3778 Text [ en-US ] = "number" ;
3780 String 3 // Description of Parameter 1
3782 Text [ en-US ] = "The number to be truncated." ;
3784 String 4 // Name of Parameter 2
3786 Text [ en-US ] = "count" ;
3788 String 5 // Description of Parameter 2
3790 Text [ en-US ] = "The number of places after the decimal point that are not to be truncated." ;
3793 // -=*# Resource for function RUNDEN #*=-
3794 Resource SC_OPCODE_ROUND
3796 String 1 // Description
3798 Text [ en-US ] = "Rounds a number to a predefined accuracy." ;
3803 ID_FUNCTION_GRP_MATH;
3804 U2S( HID_FUNC_RUNDEN );
3808 String 2 // Name of Parameter 1
3810 Text [ en-US ] = "number" ;
3812 String 3 // Description of Parameter 1
3814 Text [ en-US ] = "The number to be rounded." ;
3816 String 4 // Name of Parameter 2
3818 Text [ en-US ] = "count" ;
3820 String 5 // Description of Parameter 2
3822 Text [ en-US ] = "The number of places to which a number is to be rounded." ;
3825 // -=*# Resource for function AUFRUNDEN #*=-
3826 Resource SC_OPCODE_ROUND_UP
3828 String 1 // Description
3830 Text [ en-US ] = "Rounds a number up to the predefined accuracy." ;
3835 ID_FUNCTION_GRP_MATH;
3836 U2S( HID_FUNC_AUFRUNDEN );
3840 String 2 // Name of Parameter 1
3842 Text [ en-US ] = "number" ;
3844 String 3 // Description of Parameter 1
3846 Text [ en-US ] = "The number to be rounded up." ;
3848 String 4 // Name of Parameter 2
3850 Text [ en-US ] = "count" ;
3852 String 5 // Description of Parameter 2
3854 Text [ en-US ] = "The number of places to which a number is to be rounded." ;
3857 // -=*# Resource for function ABRUNDEN #*=-
3858 Resource SC_OPCODE_ROUND_DOWN
3860 String 1 // Description
3862 Text [ en-US ] = "Rounds a number down to a predefined accuracy." ;
3867 ID_FUNCTION_GRP_MATH;
3868 U2S( HID_FUNC_ABRUNDEN );
3872 String 2 // Name of Parameter 1
3874 Text [ en-US ] = "number" ;
3876 String 3 // Description of Parameter 1
3878 Text [ en-US ] = "The number to be rounded down." ;
3880 String 4 // Name of Parameter 2
3882 Text [ en-US ] = "count" ;
3884 String 5 // Description of Parameter 2
3886 Text [ en-US ] = "The number of places down to which a number is to be rounded." ;
3889 // -=*# Resource for function GERADE #*=-
3890 Resource SC_OPCODE_EVEN
3892 String 1 // Description
3894 Text [ en-US ] = "Rounds a positive number up and negative number down to the nearest even integer.";
3899 ID_FUNCTION_GRP_MATH;
3900 U2S( HID_FUNC_GERADE );
3904 String 2 // Name of Parameter 1
3906 Text [ en-US ] = "Number" ;
3908 String 3 // Description of Parameter 1
3910 Text [ en-US ] = "The number to be rounded up." ;
3913 // -=*# Resource for function UNGERADE #*=-
3914 Resource SC_OPCODE_ODD
3916 String 1 // Description
3918 Text [ en-US ] = "Rounds a positive number up and negative number down to the nearest odd integer.";
3923 ID_FUNCTION_GRP_MATH;
3924 U2S( HID_FUNC_UNGERADE );
3928 String 2 // Name of Parameter 1
3930 Text [ en-US ] = "Number" ;
3932 String 3 // Description of Parameter 1
3934 Text [ en-US ] = "The number to be rounded up." ;
3937 // -=*# Resource for function OBERGRENZE #*=-
3938 Resource SC_OPCODE_CEIL
3940 String 1 // Description
3942 Text [ en-US ] = "Rounds a number up to the nearest multiple of significance." ;
3947 ID_FUNCTION_GRP_MATH;
3948 U2S( HID_FUNC_OBERGRENZE );
3952 String 2 // Name of Parameter 1
3954 Text [ en-US ] = "Number" ;
3956 String 3 // Description of Parameter 1
3958 Text [ en-US ] = "The number to be rounded up." ;
3960 String 4 // Name of Parameter 2
3962 Text [ en-US ] = "Significance" ;
3964 String 5 // Description of Parameter 2
3966 Text [ en-US ] = "The number to whose multiple the value is rounded." ;
3968 String 6 // Name of Parameter 3
3970 Text [ en-US ] = "Mode" ;
3972 String 7 // Description of Parameter 3
3974 Text [ en-US ] = "If given and not equal to zero then rounded up according to amount when a negative number and significance." ;
3977 // -=*# Resource for function UNTERGRENZE #*=-
3978 Resource SC_OPCODE_FLOOR
3980 String 1 // Description
3982 Text [ en-US ] = "Rounds number down to the nearest multiple of significance." ;
3987 ID_FUNCTION_GRP_MATH;
3988 U2S( HID_FUNC_UNTERGRENZE );
3992 String 2 // Name of Parameter 1
3994 Text [ en-US ] = "Number" ;
3996 String 3 // Description of Parameter 1
3998 Text [ en-US ] = "The number to be rounded down." ;
4000 String 4 // Name of Parameter 2
4002 Text [ en-US ] = "Significance" ;
4004 String 5 // Description of Parameter 2
4006 Text [ en-US ] = "The number to whose multiple the value is to be rounded down." ;
4008 String 6 // Name of Parameter 3
4010 Text [ en-US ] = "Mode" ;
4012 String 7 // Description of Parameter 3
4014 Text [ en-US ] = "If given and not equal to zero then rounded down according to amount when a negative number and significance." ;
4017 // -=*# Resource for function GGT #*=-
4018 Resource SC_OPCODE_GGT
4020 String 1 // Description
4022 Text [ en-US ] = "Greatest Common Divisor" ;
4027 ID_FUNCTION_GRP_MATH;
4028 U2S( HID_FUNC_GGT );
4032 String 2 // Name of Parameter 1
4034 Text [ en-US ] = "Integer " ;
4036 String 3 // Description of Parameter 1
4038 Text [ en-US ] = "Integer 1; integer 2,... are integers for which the greatest common divisor is to be calculated." ;
4041 // -=*# Resource for function KGV #*=-
4042 Resource SC_OPCODE_KGV
4044 String 1 // Description
4046 Text [ en-US ] = "Lowest common multiple" ;
4051 ID_FUNCTION_GRP_MATH;
4052 U2S( HID_FUNC_KGV );
4056 String 2 // Name of Parameter 1
4058 Text [ en-US ] = "Integer " ;
4060 String 3 // Description of Parameter 1
4062 Text [ en-US ] = "Integer 1; integer 2,... are integers whose smallest common multiple is to be calculated." ;
4065 // -=*# Resource for function MTRANS #*=-
4066 Resource SC_OPCODE_MAT_TRANS
4068 String 1 // Description
4070 Text [ en-US ] = "Array transposition. Exchanges the rows and columns of an aray." ;
4075 ID_FUNCTION_GRP_MATRIX;
4076 U2S( HID_FUNC_MTRANS );
4080 String 2 // Name of Parameter 1
4082 Text [ en-US ] = "array" ;
4084 String 3 // Description of Parameter 1
4086 Text [ en-US ] = "The array in which the rows and columns have been transposed." ;
4089 // -=*# Resource for function MMULT #*=-
4090 Resource SC_OPCODE_MAT_MULT
4092 String 1 // Description
4094 Text [ en-US ] = "Array multiplication. Returns the product of two arrays." ;
4099 ID_FUNCTION_GRP_MATRIX;
4100 U2S( HID_FUNC_MMULT );
4104 String 2 // Name of Parameter 1
4106 Text [ en-US ] = "array" ;
4108 String 3 // Description of Parameter 1
4110 Text [ en-US ] = "The first array for the array product." ;
4112 String 4 // Name of Parameter 2
4114 Text [ en-US ] = "array" ;
4116 String 5 // Description of Parameter 2
4118 Text [ en-US ] = "The second array having the same number of rows as the first array has columns." ;
4121 // -=*# Resource for function MDET #*=-
4122 Resource SC_OPCODE_MAT_DET
4124 String 1 // Description
4126 Text [ en-US ] = "Returns the array determinant." ;
4131 ID_FUNCTION_GRP_MATRIX;
4132 U2S( HID_FUNC_MDET );
4136 String 2 // Name of Parameter 1
4138 Text [ en-US ] = "array" ;
4140 String 3 // Description of Parameter 1
4142 Text [ en-US ] = "The array for which the determinant is to be determined." ;
4145 // -=*# Resource for function MINV #*=-
4146 Resource SC_OPCODE_MAT_INV
4148 String 1 // Description
4150 Text [ en-US ] = "Returns the inverse of an array." ;
4155 ID_FUNCTION_GRP_MATRIX;
4156 U2S( HID_FUNC_MINV );
4160 String 2 // Name of Parameter 1
4162 Text [ en-US ] = "array" ;
4164 String 3 // Description of Parameter 1
4166 Text [ en-US ] = "The array to be inverted." ;
4169 // -=*# Resource for function EINHEITSMATRIX #*=-
4170 Resource SC_OPCODE_MATRIX_UNIT
4172 String 1 // Description
4174 Text [ en-US ] = "Returns the unitary square array of a certain size." ;
4179 ID_FUNCTION_GRP_MATRIX;
4180 U2S( HID_FUNC_EINHEITSMATRIX );
4184 String 2 // Name of Parameter 1
4186 Text [ en-US ] = "Dimensions" ;
4188 String 3 // Description of Parameter 1
4190 Text [ en-US ] = "The size of the unitary array." ;
4193 // -=*# Resource for function SUMMENPRODUKT #*=-
4194 Resource SC_OPCODE_SUM_PRODUCT
4196 String 1 // Description
4198 Text [ en-US ] = "(Inner products) Returns the sum of the products of array arguments." ;
4203 ID_FUNCTION_GRP_MATRIX;
4204 U2S( HID_FUNC_SUMMENPRODUKT );
4208 String 2 // Name of Parameter 1
4210 Text [ en-US ] = "Array " ;
4212 String 3 // Description of Parameter 1
4214 Text [ en-US ] = "Array 1, array 2, ... are up to 30 arrays whose arguments are to be multiplied." ;
4217 // -=*# Resource for function SUMMEX2MY2 #*=-
4218 Resource SC_OPCODE_SUM_X2MY2
4220 String 1 // Description
4222 Text [ en-US ] = "Returns the sum of the difference of squares of two arrays." ;
4227 ID_FUNCTION_GRP_MATRIX;
4228 U2S( HID_FUNC_SUMMEX2MY2 );
4232 String 2 // Name of Parameter 1
4234 Text [ en-US ] = "array_x" ;
4236 String 3 // Description of Parameter 1
4238 Text [ en-US ] = "First array where the square of the arguments are totalled." ;
4240 String 4 // Name of Parameter 2
4242 Text [ en-US ] = "array_y" ;
4244 String 5 // Description of Parameter 2
4246 Text [ en-US ] = "Second array where the square of the arguments is to be subtracted." ;
4249 // -=*# Resource for function SUMMEX2PY2 #*=-
4250 Resource SC_OPCODE_SUM_X2DY2
4252 String 1 // Description
4254 Text [ en-US ] = "Returns the total of the square sum of two arrays." ;
4259 ID_FUNCTION_GRP_MATRIX;
4260 U2S( HID_FUNC_SUMMEX2PY2 );
4264 String 2 // Name of Parameter 1
4266 Text [ en-US ] = "array_x" ;
4268 String 3 // Description of Parameter 1
4270 Text [ en-US ] = "First array where the square of the arguments are totalled." ;
4272 String 4 // Name of Parameter 2
4274 Text [ en-US ] = "array_y" ;
4276 String 5 // Description of Parameter 2
4278 Text [ en-US ] = "Second array where the square of the arguments is to be totalled." ;
4281 // -=*# Resource for function SUMMEXMY2 #*=-
4282 Resource SC_OPCODE_SUM_XMY2
4284 String 1 // Description
4286 Text [ en-US ] = "Returns the sum of squares of differences of two arrays." ;
4291 ID_FUNCTION_GRP_MATRIX;
4292 U2S( HID_FUNC_SUMMEXMY2 );
4296 String 2 // Name of Parameter 1
4298 Text [ en-US ] = "array_x" ;
4300 String 3 // Description of Parameter 1
4302 Text [ en-US ] = "First array for forming argument differences." ;
4304 String 4 // Name of Parameter 2
4306 Text [ en-US ] = "array_y" ;
4308 String 5 // Description of Parameter 2
4310 Text [ en-US ] = "Second array for forming the argument differences." ;
4315 Resource RID_SC_FUNCTION_DESCRIPTIONS2
4317 // -=*# Resource for function HÄUFIGKEIT #*=-
4318 Resource SC_OPCODE_FREQUENCY
4320 String 1 // Description
4322 Text [ en-US ] = "Returns a frequency distribution as a vertical array." ;
4327 ID_FUNCTION_GRP_MATRIX;
4328 U2S( HID_FUNC_HAEUFIGKEIT );
4332 String 2 // Name of Parameter 1
4334 Text [ en-US ] = "data" ;
4336 String 3 // Description of Parameter 1
4338 Text [ en-US ] = "The array of the data." ;
4340 String 4 // Name of Parameter 2
4342 Text [ en-US ] = "classes" ;
4344 String 5 // Description of Parameter 2
4346 Text [ en-US ] = "The array for forming classes." ;
4349 // -=*# Resource for function RGP #*=-
4350 Resource SC_OPCODE_RGP
4352 String 1 // Description
4354 Text [ en-US ] = "Calculates parameters of the linear regression as an array." ;
4359 ID_FUNCTION_GRP_MATRIX;
4360 U2S( HID_FUNC_RGP );
4364 String 2 // Name of Parameter 1
4366 Text [ en-US ] = "data_Y" ;
4368 String 3 // Description of Parameter 1
4370 Text [ en-US ] = "The Y data array." ;
4372 String 4 // Name of Parameter 2
4374 Text [ en-US ] = "data_X" ;
4376 String 5 // Description of Parameter 2
4378 Text [ en-US ] = "The X data array." ;
4380 String 6 // Name of Parameter 3
4382 Text [ en-US ] = "Linear_type" ;
4384 String 7 // Description of Parameter 3
4386 Text [ en-US ] = "If type = 0 the linears will be calculated through the zero point, or else moved linears." ;
4388 String 8 // Name of Parameter 4
4390 Text [ en-US ] = "stats" ;
4392 String 9 // Description of Parameter 4
4394 Text [ en-US ] = "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well." ;
4397 // -=*# Resource for function RKP #*=-
4398 Resource SC_OPCODE_RKP
4400 String 1 // Description
4402 Text [ en-US ] = "Calculates the parameters of the exponential regression curve as an array." ;
4407 ID_FUNCTION_GRP_MATRIX;
4408 U2S( HID_FUNC_RKP );
4412 String 2 // Name of Parameter 1
4414 Text [ en-US ] = "data_Y" ;
4416 String 3 // Description of Parameter 1
4418 Text [ en-US ] = "The Y data array." ;
4420 String 4 // Name of Parameter 2
4422 Text [ en-US ] = "data_X" ;
4424 String 5 // Description of Parameter 2
4426 Text [ en-US ] = "The X data array." ;
4428 String 6 // Name of Parameter 3
4430 Text [ en-US ] = "Function_type" ;
4432 String 7 // Description of Parameter 3
4434 Text [ en-US ] = "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x." ;
4436 String 8 // Name of Parameter 4
4438 Text [ en-US ] = "stats" ;
4440 String 9 // Description of Parameter 4
4442 Text [ en-US ] = "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well." ;
4445 // -=*# Resource for function TREND #*=-
4446 Resource SC_OPCODE_TREND
4448 String 1 // Description
4450 Text [ en-US ] = "Calculates points along a regression line." ;
4455 ID_FUNCTION_GRP_MATRIX;
4456 U2S( HID_FUNC_TREND );
4460 String 2 // Name of Parameter 1
4462 Text [ en-US ] = "data_Y" ;
4464 String 3 // Description of Parameter 1
4466 Text [ en-US ] = "The Y data array." ;
4468 String 4 // Name of Parameter 2
4470 Text [ en-US ] = "data_X" ;
4472 String 5 // Description of Parameter 2
4474 Text [ en-US ] = "The X data array as the basis for the regression." ;
4476 String 6 // Name of Parameter 3
4478 Text [ en-US ] = "new data_X" ;
4480 String 7 // Description of Parameter 3
4482 Text [ en-US ] = "The array of X data for recalculating the values." ;
4484 String 8 // Name of Parameter 4
4486 Text [ en-US ] = "Linear_type" ;
4488 String 9 // Description of Parameter 4
4490 Text [ en-US ] = "If type = 0 the linears will be calculated through the zero point, or else moved linears." ;
4493 // -=*# Resource for function VARIATION #*=-
4494 Resource SC_OPCODE_GROWTH
4496 String 1 // Description
4498 Text [ en-US ] = "Calculates points on the exponential regression function." ;
4503 ID_FUNCTION_GRP_MATRIX;
4504 U2S( HID_FUNC_VARIATION );
4508 String 2 // Name of Parameter 1
4510 Text [ en-US ] = "data_Y" ;
4512 String 3 // Description of Parameter 1
4514 Text [ en-US ] = "The Y data array." ;
4516 String 4 // Name of Parameter 2
4518 Text [ en-US ] = "data_X" ;
4520 String 5 // Description of Parameter 2
4522 Text [ en-US ] = "The X data array as the basis for the regression." ;
4524 String 6 // Name of Parameter 3
4526 Text [ en-US ] = "new_data_X" ;
4528 String 7 // Description of Parameter 3
4530 Text [ en-US ] = "The array of X data for recalculating the values." ;
4532 String 8 // Name of Parameter 4
4534 Text [ en-US ] = "Function_type" ;
4536 String 9 // Description of Parameter 4
4538 Text [ en-US ] = "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x." ;
4541 // -=*# Resource for function ANZAHL #*=-
4542 Resource SC_OPCODE_COUNT
4544 String 1 // Description
4546 Text [ en-US ] = "Counts how many numbers are in the list of arguments." ;
4551 ID_FUNCTION_GRP_STATISTIC;
4552 U2S( HID_FUNC_ANZAHL );
4556 String 2 // Name of Parameter 1
4558 Text [ en-US ] = "value " ;
4560 String 3 // Description of Parameter 1
4562 Text [ en-US ] = "Value 1, value 2, ... are 1 to 30 arguments containing different data types but where only numbers are counted." ;
4565 // -=*# Resource for function ANZAHL2 #*=-
4566 Resource SC_OPCODE_COUNT_2
4568 String 1 // Description
4570 Text [ en-US ] = "Counts how many values are in the list of arguments." ;
4575 ID_FUNCTION_GRP_STATISTIC;
4576 U2S( HID_FUNC_ANZAHL2 );
4580 String 2 // Name of Parameter 1
4582 Text [ en-US ] = "value " ;
4584 String 3 // Description of Parameter 1
4586 Text [ en-US ] = "Value 1, value 2, ... are 1 to 30 arguments representing the values to be counted." ;
4589 // -=*# Resource for function MAX #*=-
4590 Resource SC_OPCODE_MAX
4592 String 1 // Description
4594 Text [ en-US ] = "Returns the maximum value in a list of arguments." ;
4599 ID_FUNCTION_GRP_STATISTIC;
4600 U2S( HID_FUNC_MAX );
4604 String 2 // Name of Parameter 1
4606 Text [ en-US ] = "number " ;
4608 String 3 // Description of Parameter 1
4610 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments for which the largest number is to be determined." ;
4613 // -=*# Resource for function MAXA #*=-
4614 Resource SC_OPCODE_MAX_A
4616 String 1 // Description
4618 Text [ en-US ] = "Returns the maximum value in a list of arguments. Text is evaluated as Zero.";
4623 ID_FUNCTION_GRP_STATISTIC;
4624 U2S( HID_FUNC_MAXA );
4628 String 2 // Name of Parameter 1
4630 Text [ en-US ] = "value ";
4632 String 3 // Description of Parameter 1
4634 Text [ en-US ] = "Value 1, value 2, are 1 to 30 arguments whose largest value is to be determined.";
4637 // -=*# Resource for function MIN #*=-
4638 Resource SC_OPCODE_MIN
4640 String 1 // Description
4642 Text [ en-US ] = "Returns the minimum value in a list of arguments." ;
4647 ID_FUNCTION_GRP_STATISTIC;
4648 U2S( HID_FUNC_MIN );
4652 String 2 // Name of Parameter 1
4654 Text [ en-US ] = "number " ;
4656 String 3 // Description of Parameter 1
4658 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments for which the smallest number is to be determined." ;
4661 // -=*# Resource for function MINA #*=-
4662 Resource SC_OPCODE_MIN_A
4664 String 1 // Description
4666 Text [ en-US ] = "Returns the smallest value in a list of arguments. Text is evaluated as zero.";
4671 ID_FUNCTION_GRP_STATISTIC;
4672 U2S( HID_FUNC_MINA );
4676 String 2 // Name of Parameter 1
4678 Text [ en-US ] = "value ";
4680 String 3 // Description of Parameter 1
4682 Text [ en-US ] = "Value 1; value 2;... are 1 to 30 arguments whose smallest number is to be determined.";
4685 // -=*# Resource for function VARIANZ #*=-
4686 Resource SC_OPCODE_VAR
4688 String 1 // Description
4690 Text [ en-US ] = "Calculates the variance based on a sample." ;
4695 ID_FUNCTION_GRP_STATISTIC;
4696 U2S( HID_FUNC_VARIANZ );
4700 String 2 // Name of Parameter 1
4702 Text [ en-US ] = "number " ;
4704 String 3 // Description of Parameter 1
4706 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." ;
4709 // -=*# Resource for function VARIANZ #*=-
4710 Resource SC_OPCODE_VAR_A
4712 String 1 // Description
4714 Text [ en-US ] = "Returns the variance based on a sample. Text is evaluated as zero.";
4719 ID_FUNCTION_GRP_STATISTIC;
4720 U2S( HID_FUNC_VARIANZA );
4724 String 2 // Name of Parameter 1
4726 Text [ en-US ] = "value ";
4728 String 3 // Description of Parameter 1
4730 Text [ en-US ] = "Value 1; value 2;.. .are 1 to 30 arguments representing a sample taken from a basic total population.";
4733 // -=*# Resource for function VARIANZEN #*=-
4734 Resource SC_OPCODE_VAR_P
4736 String 1 // Description
4738 Text [ en-US ] = "Calculates variance based on the entire population." ;
4743 ID_FUNCTION_GRP_STATISTIC;
4744 U2S( HID_FUNC_VARIANZEN );
4748 String 2 // Name of Parameter 1
4750 Text [ en-US ] = "number " ;
4752 String 3 // Description of Parameter 1
4754 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which represent a population." ;
4757 // -=*# Resource for function VARIANZENA #*=-
4758 Resource SC_OPCODE_VAR_P_A
4760 String 1 // Description
4762 Text [ en-US ] = "Returns the variance based on the entire population. Text is evaluated as zero.";
4767 ID_FUNCTION_GRP_STATISTIC;
4768 U2S( HID_FUNC_VARIANZENA );
4772 String 2 // Name of Parameter 1
4774 Text [ en-US ] = "value ";
4776 String 3 // Description of Parameter 1
4778 Text [ en-US ] = "Value 1; value 2;... are 1 to 30 arguments representing a population.";
4781 // -=*# Resource for function STABW #*=-
4782 Resource SC_OPCODE_ST_DEV
4784 String 1 // Description
4786 Text [ en-US ] = "Calculates the standard deviation based on a sample." ;
4791 ID_FUNCTION_GRP_STATISTIC;
4792 U2S( HID_FUNC_STABW );
4796 String 2 // Name of Parameter 1
4798 Text [ en-US ] = "number " ;
4800 String 3 // Description of Parameter 1
4802 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." ;
4805 // -=*# Resource for function STABWA #*=-
4806 Resource SC_OPCODE_ST_DEV_A
4808 String 1 // Description
4810 Text [ en-US ] = "Returns the standard deviation based on a sample. Text is evaluated as zero.";
4815 ID_FUNCTION_GRP_STATISTIC;
4816 U2S( HID_FUNC_STABWA );
4820 String 2 // Name of Parameter 1
4822 Text [ en-US ] = "value ";
4824 String 3 // Description of Parameter 1
4826 Text [ en-US ] = "Value 1; value 2;.. .are 1 to 30 arguments representing a sample taken from a basic total population.";
4829 // -=*# Resource for function STABWN #*=-
4830 Resource SC_OPCODE_ST_DEV_P
4832 String 1 // Description
4834 Text [ en-US ] = "Calculates the standard deviation based on the entire population." ;
4839 ID_FUNCTION_GRP_STATISTIC;
4840 U2S( HID_FUNC_STABWN );
4844 String 2 // Name of Parameter 1
4846 Text [ en-US ] = "number " ;
4848 String 3 // Description of Parameter 1
4850 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." ;
4853 // -=*# Resource for function STABWNA #*=-
4854 Resource SC_OPCODE_ST_DEV_P_A
4856 String 1 // Description
4858 Text [ en-US ] = "Returns the standard deviation based on the entire population. Text is evaluated as zero.";
4863 ID_FUNCTION_GRP_STATISTIC;
4864 U2S( HID_FUNC_STABWNA );
4868 String 2 // Name of Parameter 1
4870 Text [ en-US ] = "value ";
4872 String 3 // Description of Parameter 1
4874 Text [ en-US ] = "Value 1; value 2;... are 1 to 30 arguments corresponding to a population.";
4877 // -=*# Resource for function MITTELWERT #*=-
4878 Resource SC_OPCODE_AVERAGE
4880 String 1 // Description
4882 Text [ en-US ] = "Returns the average of a sample." ;
4887 ID_FUNCTION_GRP_STATISTIC;
4888 U2S( HID_FUNC_MITTELWERT );
4892 String 2 // Name of Parameter 1
4894 Text [ en-US ] = "number " ;
4896 String 3 // Description of Parameter 1
4898 Text [ en-US ] = "Number 1, number 2;...are 1 to 30 numeric arguments representing a population sample." ;
4901 // -=*# Resource for function MITTELWERTA #*=-
4902 Resource SC_OPCODE_AVERAGE_A
4904 String 1 // Description
4906 Text [ en-US ] = "Returns the average value for a sample. Text is evaluated as zero.";
4911 ID_FUNCTION_GRP_STATISTIC;
4912 U2S( HID_FUNC_MITTELWERTA );
4916 String 2 // Name of Parameter 1
4918 Text [ en-US ] = "value ";
4920 String 3 // Description of Parameter 1
4922 Text [ en-US ] = "Value 1; value 2;.. .are 1 to 30 arguments representing a sample taken from a basic total population.";
4925 // -=*# Resource for function SUMQUADABW #*=-
4926 Resource SC_OPCODE_DEV_SQ
4928 String 1 // Description
4930 Text [ en-US ] = "Returns the sum of squares of deviations from the sample mean value" ;
4935 ID_FUNCTION_GRP_STATISTIC;
4936 U2S( HID_FUNC_SUMQUADABW );
4940 String 2 // Name of Parameter 1
4942 Text [ en-US ] = "number " ;
4944 String 3 // Description of Parameter 1
4946 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." ;
4949 // -=*# Resource for function MITTELABW #*=-
4950 Resource SC_OPCODE_AVE_DEV
4952 String 1 // Description
4954 Text [ en-US ] = "Returns the average of the absolute deviations of a sample from the mean." ;
4959 ID_FUNCTION_GRP_STATISTIC;
4960 U2S( HID_FUNC_MITTELABW );
4964 String 2 // Name of Parameter 1
4966 Text [ en-US ] = "number " ;
4968 String 3 // Description of Parameter 1
4970 Text [ en-US ] = "Number 1, number 2;...are 1 to 30 numerical arguments representing a sample." ;
4973 // -=*# Resource for function SCHIEFE #*=-
4974 Resource SC_OPCODE_SCHIEFE
4976 String 1 // Description
4978 Text [ en-US ] = "Returns the skewness of a distribution." ;
4983 ID_FUNCTION_GRP_STATISTIC;
4984 U2S( HID_FUNC_SCHIEFE );
4988 String 2 // Name of Parameter 1
4990 Text [ en-US ] = "number " ;
4992 String 3 // Description of Parameter 1
4994 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments portraying a sample of the distribution." ;
4997 // -=*# Resource for function KURT #*=-
4998 Resource SC_OPCODE_KURT
5000 String 1 // Description
5002 Text [ en-US ] = "Returns the kurtosis of a distribution." ;
5007 ID_FUNCTION_GRP_STATISTIC;
5008 U2S( HID_FUNC_KURT );
5012 String 2 // Name of Parameter 1
5014 Text [ en-US ] = "number " ;
5016 String 3 // Description of Parameter 1
5018 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments, representing a sample of the distribution." ;
5021 // -=*# Resource for function GEOMITTEL #*=-
5022 Resource SC_OPCODE_GEO_MEAN
5024 String 1 // Description
5026 Text [ en-US ] = "Returns the geometric mean of a sample." ;
5031 ID_FUNCTION_GRP_STATISTIC;
5032 U2S( HID_FUNC_GEOMITTEL );
5036 String 2 // Name of Parameter 1
5038 Text [ en-US ] = "number " ;
5040 String 3 // Description of Parameter 1
5042 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." ;
5045 // -=*# Resource for function HARMITTEL #*=-
5046 Resource SC_OPCODE_HAR_MEAN
5048 String 1 // Description
5050 Text [ en-US ] = "Returns the harmonic mean of a sample." ;
5055 ID_FUNCTION_GRP_STATISTIC;
5056 U2S( HID_FUNC_HARMITTEL );
5060 String 2 // Name of Parameter 1
5062 Text [ en-US ] = "number " ;
5064 String 3 // Description of Parameter 1
5066 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." ;
5069 // -=*# Resource for function MODALWERT #*=-
5070 Resource SC_OPCODE_MODAL_VALUE
5072 String 1 // Description
5074 Text [ en-US ] = "Returns the most common value in a sample." ;
5079 ID_FUNCTION_GRP_STATISTIC;
5080 U2S( HID_FUNC_MODALWERT );
5084 String 2 // Name of Parameter 1
5086 Text [ en-US ] = "number " ;
5088 String 3 // Description of Parameter 1
5090 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." ;
5093 // -=*# Resource for function MEDIAN #*=-
5094 Resource SC_OPCODE_MEDIAN
5096 String 1 // Description
5098 Text [ en-US ] = "Returns the median of a given sample." ;
5103 ID_FUNCTION_GRP_STATISTIC;
5104 U2S( HID_FUNC_MEDIAN );
5108 String 2 // Name of Parameter 1
5110 Text [ en-US ] = "number " ;
5112 String 3 // Description of Parameter 1
5114 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." ;
5117 // -=*# Resource for function QUANTIL #*=-
5118 Resource SC_OPCODE_PERCENTILE
5120 String 1 // Description
5122 Text [ en-US ] = "Returns the alpha quantile of a sample." ;
5127 ID_FUNCTION_GRP_STATISTIC;
5128 U2S( HID_FUNC_QUANTIL );
5132 String 2 // Name of Parameter 1
5134 Text [ en-US ] = "data" ;
5136 String 3 // Description of Parameter 1
5138 Text [ en-US ] = "The array of the data in the sample." ;
5140 String 4 // Name of Parameter 2
5142 Text [ en-US ] = "Alpha" ;
5144 String 5 // Description of Parameter 2
5146 Text [ en-US ] = "The percentage rate of the quantile between 0 and 1." ;
5149 // -=*# Resource for function QUARTILE #*=-
5150 Resource SC_OPCODE_QUARTILE
5152 String 1 // Description
5154 Text [ en-US ] = "Returns the quartile of a sample." ;
5159 ID_FUNCTION_GRP_STATISTIC;
5160 U2S( HID_FUNC_QUARTILE );
5164 String 2 // Name of Parameter 1
5166 Text [ en-US ] = "data" ;
5168 String 3 // Description of Parameter 1
5170 Text [ en-US ] = "The array of the data in the sample." ;
5172 String 4 // Name of Parameter 2
5174 Text [ en-US ] = "Type" ;
5176 String 5 // Description of Parameter 2
5178 Text [ en-US ] = "The type of the quartile (0 = MIN, 1 = 25%, 2 = 50 %, 3 = 75 %, 4 =MAX)." ;
5181 // -=*# Resource for function KGRÖSSTE #*=-
5182 Resource SC_OPCODE_LARGE
5184 String 1 // Description
5186 Text [ en-US ] = "Returns the k-th largest value of a sample." ;
5191 ID_FUNCTION_GRP_STATISTIC;
5192 U2S( HID_FUNC_KGROESSTE );
5196 String 2 // Name of Parameter 1
5198 Text [ en-US ] = "data" ;
5200 String 3 // Description of Parameter 1
5202 Text [ en-US ] = "The array of the data in the sample." ;
5204 String 4 // Name of Parameter 2
5206 Text [ en-US ] = "Rank_c" ;
5208 String 5 // Description of Parameter 2
5210 Text [ en-US ] = "The ranking of the value." ;
5213 // -=*# Resource for function KKLEINSTE #*=-
5214 Resource SC_OPCODE_SMALL
5216 String 1 // Description
5218 Text [ en-US ] = "Returns the k-th smallest value of a sample." ;
5223 ID_FUNCTION_GRP_STATISTIC;
5224 U2S( HID_FUNC_KKLEINSTE );
5228 String 2 // Name of Parameter 1
5230 Text [ en-US ] = "data" ;
5232 String 3 // Description of Parameter 1
5234 Text [ en-US ] = "The array of the data in the sample." ;
5236 String 4 // Name of Parameter 2
5238 Text [ en-US ] = "Rank_c" ;
5240 String 5 // Description of Parameter 2
5242 Text [ en-US ] = "The ranking of the value." ;
5245 // -=*# Resource for function QUANTILSRANG #*=-
5246 Resource SC_OPCODE_PERCENT_RANK
5248 String 1 // Description
5250 Text [ en-US ] = "Returns the percentage rank of a value in a sample." ;
5255 ID_FUNCTION_GRP_STATISTIC;
5256 U2S( HID_FUNC_QUANTILSRANG );
5260 String 2 // Name of Parameter 1
5262 Text [ en-US ] = "data" ;
5264 String 3 // Description of Parameter 1
5266 Text [ en-US ] = "The array of the data in the sample." ;
5268 String 4 // Name of Parameter 2
5270 Text [ en-US ] = "value" ;
5272 String 5 // Description of Parameter 2
5274 Text [ en-US ] = "The value for which percentage ranking is to be determined." ;
5277 // -=*# Resource for function RANG #*=-
5278 Resource SC_OPCODE_RANK
5280 String 1 // Description
5282 Text [ en-US ] = "Returns the ranking of a value in a sample." ;
5287 ID_FUNCTION_GRP_STATISTIC;
5288 U2S( HID_FUNC_RANG );
5292 String 2 // Name of Parameter 1
5294 Text [ en-US ] = "value" ;
5296 String 3 // Description of Parameter 1
5298 Text [ en-US ] = "The value for which the rank is to be determined." ;
5300 String 4 // Name of Parameter 2
5302 Text [ en-US ] = "Data" ;
5304 String 5 // Description of Parameter 2
5306 Text [ en-US ] = "The array of the data in the sample." ;
5308 String 6 // Name of Parameter 3
5310 Text [ en-US ] = "Type" ;
5312 String 7 // Description of Parameter 3
5314 Text [ en-US ] = "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." ;
5317 // -=*# Resource for function GESTUTZTMITTEL #*=-
5318 Resource SC_OPCODE_TRIM_MEAN
5320 String 1 // Description
5322 Text [ en-US ] = "Returns the mean of a sample without including the marginal values." ;
5327 ID_FUNCTION_GRP_STATISTIC;
5328 U2S( HID_FUNC_GESTUTZTMITTEL );
5332 String 2 // Name of Parameter 1
5334 Text [ en-US ] = "data" ;
5336 String 3 // Description of Parameter 1
5338 Text [ en-US ] = "The array of the data in the sample." ;
5340 String 4 // Name of Parameter 2
5342 Text [ en-US ] = "Alpha" ;
5344 String 5 // Description of Parameter 2
5346 Text [ en-US ] = "The percentage of marginal data that is not to be taken into account." ;
5349 // -=*# Resource for function WAHRSCHBEREICH #*=-
5350 Resource SC_OPCODE_PROB
5352 String 1 // Description
5354 Text [ en-US ] = "Returns the discreet probability of an interval." ;
5359 ID_FUNCTION_GRP_STATISTIC;
5360 U2S( HID_FUNC_WAHRSCHBEREICH );
5364 String 2 // Name of Parameter 1
5366 Text [ en-US ] = "data" ;
5368 String 3 // Description of Parameter 1
5370 Text [ en-US ] = "The sample data array." ;
5372 String 4 // Name of Parameter 2
5374 Text [ en-US ] = "probability" ;
5376 String 5 // Description of Parameter 2
5378 Text [ en-US ] = "The array of the associated probabilities." ;
5380 String 6 // Name of Parameter 3
5382 Text [ en-US ] = "Start" ;
5384 String 7 // Description of Parameter 3
5386 Text [ en-US ] = "The start of the value interval whose probabilities is to be totalled." ;
5388 String 8 // Name of Parameter 4
5390 Text [ en-US ] = "End" ;
5392 String 9 // Description of Parameter 4
5394 Text [ en-US ] = "The end of the value interval where the probabilities are to be totalled." ;
5397 // -=*# Resource for function B #*=-
5398 Resource SC_OPCODE_B
5400 String 1 // Description
5402 Text [ en-US ] = "Returns the probability of a trial result using binomial distribution." ;
5407 ID_FUNCTION_GRP_STATISTIC;
5412 String 2 // Name of Parameter 1
5414 Text [ en-US ] = "trials" ;
5416 String 3 // Description of Parameter 1
5418 Text [ en-US ] = "The number of trials." ;
5420 String 4 // Name of Parameter 2
5422 Text [ en-US ] = "SP" ;
5424 String 5 // Description of Parameter 2
5426 Text [ en-US ] = "The individual probability of a trial result." ;
5428 String 6 // Name of Parameter 3
5430 Text [ en-US ] = "T_1" ;
5432 String 7 // Description of Parameter 3
5434 Text [ en-US ] = "Lower limit for the number of trials." ;
5436 String 8 // Name of Parameter 4
5438 Text [ en-US ] = "T_2" ;
5440 String 9 // Description of Parameter 4
5442 Text [ en-US ] = "Upper limit for the number of trials." ;
5445 // -=*# Resource for function PHI #*=-
5446 Resource SC_OPCODE_PHI
5448 String 1 // Description
5450 Text [ en-US ] = "Values of the distribution function for a standard normal distribution." ;
5455 ID_FUNCTION_GRP_STATISTIC;
5456 U2S( HID_FUNC_PHI );
5460 String 2 // Name of Parameter 1
5462 Text [ en-US ] = "number" ;
5464 String 3 // Description of Parameter 1
5466 Text [ en-US ] = "The value for which the standard normal distribution is to be calculated." ;
5469 // -=*# Resource for function GAUSS #*=-
5470 Resource SC_OPCODE_GAUSS
5472 String 1 // Description
5474 Text [ en-US ] = "Returns the integral values of the standard normal cumulative distribution." ;
5479 ID_FUNCTION_GRP_STATISTIC;
5480 U2S( HID_FUNC_GAUSS );
5484 String 2 // Name of Parameter 1
5486 Text [ en-US ] = "Number" ;
5488 String 3 // Description of Parameter 1
5490 Text [ en-US ] = "The value for which the integral value of the standard normal distribution is to be calculated." ;
5493 // -=*# Resource for function FISHER #*=-
5494 Resource SC_OPCODE_FISHER
5496 String 1 // Description
5498 Text [ en-US ] = "Returns the Fisher transformation." ;
5503 ID_FUNCTION_GRP_STATISTIC;
5504 U2S( HID_FUNC_FISHER );
5508 String 2 // Name of Parameter 1
5510 Text [ en-US ] = "Number" ;
5512 String 3 // Description of Parameter 1
5514 Text [ en-US ] = "The value to be transformed (-1 < VALUE < 1)." ;
5517 // -=*# Resource for function FISHERINV #*=-
5518 Resource SC_OPCODE_FISHER_INV
5520 String 1 // Description
5522 Text [ en-US ] = "Returns the inverse of the Fisher transformation." ;
5527 ID_FUNCTION_GRP_STATISTIC;
5528 U2S( HID_FUNC_FISHERINV );
5532 String 2 // Name of Parameter 1
5534 Text [ en-US ] = "Number" ;
5536 String 3 // Description of Parameter 1
5538 Text [ en-US ] = "The value that is to be transformed back." ;
5541 // -=*# Resource for function BINOMVERT #*=-
5542 Resource SC_OPCODE_BINOM_DIST
5544 String 1 // Description
5546 Text [ en-US ] = "Values of the binomial distribution." ;
5551 ID_FUNCTION_GRP_STATISTIC;
5552 U2S( HID_FUNC_BINOMVERT );
5556 String 2 // Name of Parameter 1
5558 Text [ en-US ] = "X" ;
5560 String 3 // Description of Parameter 1
5562 Text [ en-US ] = "The number of successes in a series of trials." ;
5564 String 4 // Name of Parameter 2
5566 Text [ en-US ] = "trials" ;
5568 String 5 // Description of Parameter 2
5570 Text [ en-US ] = "The total number of trials." ;
5572 String 6 // Name of Parameter 3
5574 Text [ en-US ] = "SP" ;
5576 String 7 // Description of Parameter 3
5578 Text [ en-US ] = "The success probability of a trial." ;
5580 String 8 // Name of Parameter 4
5582 Text [ en-US ] = "C" ;
5584 String 9 // Description of Parameter 4
5586 Text [ en-US ] = "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability." ;
5589 // -=*# Resource for function NEGBINOMVERT #*=-
5590 Resource SC_OPCODE_NEG_BINOM_VERT
5592 String 1 // Description
5594 Text [ en-US ] = "Values of the negative binomial distribution." ;
5599 ID_FUNCTION_GRP_STATISTIC;
5600 U2S( HID_FUNC_NEGBINOMVERT );
5604 String 2 // Name of Parameter 1
5606 Text [ en-US ] = "X" ;
5608 String 3 // Description of Parameter 1
5610 Text [ en-US ] = "The number of failures in the trial range." ;
5612 String 4 // Name of Parameter 2
5614 Text [ en-US ] = "R" ;
5616 String 5 // Description of Parameter 2
5618 Text [ en-US ] = "The number of successes in the trial sequence." ;
5620 String 6 // Name of Parameter 3
5622 Text [ en-US ] = "SP" ;
5624 String 7 // Description of Parameter 3
5626 Text [ en-US ] = "The success probability of a trial." ;
5629 // -=*# Resource for function KRITBINOM #*=-
5630 Resource SC_OPCODE_KRIT_BINOM
5632 String 1 // Description
5634 Text [ en-US ] = "Border arguments of the binomial distribution." ;
5639 ID_FUNCTION_GRP_STATISTIC;
5640 U2S( HID_FUNC_KRITBINOM );
5644 String 2 // Name of Parameter 1
5646 Text [ en-US ] = "trials" ;
5648 String 3 // Description of Parameter 1
5650 Text [ en-US ] = "The total number of trials." ;
5652 String 4 // Name of Parameter 2
5654 Text [ en-US ] = "SP" ;
5656 String 5 // Description of Parameter 2
5658 Text [ en-US ] = "The success probability of a trial." ;
5660 String 6 // Name of Parameter 3
5662 Text [ en-US ] = "alpha" ;
5664 String 7 // Description of Parameter 3
5666 Text [ en-US ] = "The border probability that is attained or exceeded." ;
5669 // -=*# Resource for function POISSON #*=-
5670 Resource SC_OPCODE_POISSON_DIST
5672 String 1 // Description
5674 Text [ en-US ] = "Returns the Poisson distribution." ;
5679 ID_FUNCTION_GRP_STATISTIC;
5680 U2S( HID_FUNC_POISSON );
5684 String 2 // Name of Parameter 1
5686 Text [ en-US ] = "Number" ;
5688 String 3 // Description of Parameter 1
5690 Text [ en-US ] = "The value for which the Poisson distribution is to be calculated." ;
5692 String 4 // Name of Parameter 2
5694 Text [ en-US ] = "mean" ;
5696 String 5 // Description of Parameter 2
5698 Text [ en-US ] = "Mean. The mean value of the Poisson distribution." ;
5700 String 6 // Name of Parameter 3
5702 Text [ en-US ] = "Cumulative" ;
5704 String 7 // Description of Parameter 3
5706 Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
5709 // -=*# Resource for function NORMVERT #*=-
5710 Resource SC_OPCODE_NORM_DIST
5712 String 1 // Description
5714 Text [ en-US ] = "Values of the normal distribution." ;
5719 ID_FUNCTION_GRP_STATISTIC;
5720 U2S( HID_FUNC_NORMVERT );
5724 String 2 // Name of Parameter 1
5726 Text [ en-US ] = "Number" ;
5728 String 3 // Description of Parameter 1
5730 Text [ en-US ] = "The value for which the normal distribution is to be calculated." ;
5732 String 4 // Name of Parameter 2
5734 Text [ en-US ] = "Mean" ;
5736 String 5 // Description of Parameter 2
5738 Text [ en-US ] = "The mean value. The mean value of the normal distribution." ;
5740 String 6 // Name of Parameter 3
5742 Text [ en-US ] = "STDEV" ;
5744 String 7 // Description of Parameter 3
5746 Text [ en-US ] = "Standard deviation. The standard deviation of the normal distribution." ;
5748 String 8 // Name of Parameter 4
5750 Text [ en-US ] = "C" ;
5752 String 9 // Description of Parameter 4
5754 Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
5757 // -=*# Resource for function NORMINV #*=-
5758 Resource SC_OPCODE_NORM_INV
5760 String 1 // Description
5762 Text [ en-US ] = "Values of the inverse normal distribution." ;
5767 ID_FUNCTION_GRP_STATISTIC;
5768 U2S( HID_FUNC_NORMINV );
5772 String 2 // Name of Parameter 1
5774 Text [ en-US ] = "number" ;
5776 String 3 // Description of Parameter 1
5778 Text [ en-US ] = "The probability value for which the inverse normal distribution is to be calculated." ;
5780 String 4 // Name of Parameter 2
5782 Text [ en-US ] = "mean" ;
5784 String 5 // Description of Parameter 2
5786 Text [ en-US ] = "The mean value. The mean value of the normal distribution." ;
5788 String 6 // Name of Parameter 3
5790 Text [ en-US ] = "STDEV" ;
5792 String 7 // Description of Parameter 3
5794 Text [ en-US ] = "Standard deviation. The standard deviation of the normal distribution." ;
5797 // -=*# Resource for function STANDNORMVERT #*=-
5798 Resource SC_OPCODE_STD_NORM_DIST
5800 String 1 // Description
5802 Text [ en-US ] = "The values of the standard normal cumulative distribution." ;
5807 ID_FUNCTION_GRP_STATISTIC;
5808 U2S( HID_FUNC_STANDNORMVERT );
5812 String 2 // Name of Parameter 1
5814 Text [ en-US ] = "Number" ;
5816 String 3 // Description of Parameter 1
5818 Text [ en-US ] = "The value for which the standard normal distribution is to be calculated." ;
5821 // -=*# Resource for function STANDNORMINV #*=-
5822 Resource SC_OPCODE_S_NORM_INV
5824 String 1 // Description
5826 Text [ en-US ] = "Values of the inverse standard normal distribution." ;
5831 ID_FUNCTION_GRP_STATISTIC;
5832 U2S( HID_FUNC_STANDNORMINV );
5836 String 2 // Name of Parameter 1
5838 Text [ en-US ] = "number" ;
5840 String 3 // Description of Parameter 1
5842 Text [ en-US ] = "The probability value for which the inverse standard normal distribution is to be calculated." ;
5845 // -=*# Resource for function LOGNORMVERT #*=-
5846 Resource SC_OPCODE_LOG_NORM_DIST
5848 String 1 // Description
5850 Text [ en-US ] = "Values of the log normal distribution." ;
5855 ID_FUNCTION_GRP_STATISTIC;
5856 U2S( HID_FUNC_LOGNORMVERT );
5860 String 2 // Name of Parameter 1
5862 Text [ en-US ] = "Number" ;
5864 String 3 // Description of Parameter 1
5866 Text [ en-US ] = "The value for which the log normal distribution is to be calculated." ;
5868 String 4 // Name of Parameter 2
5870 Text [ en-US ] = "mean" ;
5872 String 5 // Description of Parameter 2
5874 Text [ en-US ] = "The mean value of the log normal distribution. It is set to 0 if omitted." ;
5876 String 6 // Name of Parameter 3
5878 Text [ en-US ] = "STDEV" ;
5880 String 7 // Description of Parameter 3
5882 Text [ en-US ] = "The standard deviation of the log normal distribution. It is set to 1 if omitted." ;
5884 String 8 // Name of Parameter 4
5886 Text [ en-US] = "Cumulative";
5888 String 9 // Description of Parameter 4
5890 Text [ en-US] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
5893 // -=*# Resource for function LOGINV #*=-
5894 Resource SC_OPCODE_LOG_INV
5896 String 1 // Description
5898 Text [ en-US ] = "Values of the inverse of the lognormal distribution." ;
5903 ID_FUNCTION_GRP_STATISTIC;
5904 U2S( HID_FUNC_LOGINV );
5908 String 2 // Name of Parameter 1
5910 Text [ en-US ] = "number" ;
5912 String 3 // Description of Parameter 1
5914 Text [ en-US ] = "The probability value for which the inverse log normal distribution is to be calculated." ;
5916 String 4 // Name of Parameter 2
5918 Text [ en-US ] = "mean" ;
5920 String 5 // Description of Parameter 2
5922 Text [ en-US ] = "Mean value. The mean value of the log normal distribution." ;
5924 String 6 // Name of Parameter 3
5926 Text [ en-US ] = "STDEV" ;
5928 String 7 // Description of Parameter 3
5930 Text [ en-US ] = "Standard deviation. The standard deviation of the log normal distribution." ;
5933 // -=*# Resource for function EXPONVERT #*=-
5934 Resource SC_OPCODE_EXP_DIST
5936 String 1 // Description
5938 Text [ en-US ] = "Values of the exponential distribution." ;
5943 ID_FUNCTION_GRP_STATISTIC;
5944 U2S( HID_FUNC_EXPONVERT );
5948 String 2 // Name of Parameter 1
5950 Text [ en-US ] = "Number" ;
5952 String 3 // Description of Parameter 1
5954 Text [ en-US ] = "The value to which the exponential distribution is to be calculated." ;
5956 String 4 // Name of Parameter 2
5958 Text [ en-US ] = "lambda" ;
5960 String 5 // Description of Parameter 2
5962 Text [ en-US ] = "The parameters of the exponential distribution." ;
5964 String 6 // Name of Parameter 3
5966 Text [ en-US ] = "C" ;
5968 String 7 // Description of Parameter 3
5970 Text [ en-US ] = "Cumulated. C=0 calculates the density function, C=1 the distribution." ;
5973 // -=*# Resource for function GAMMAVERT #*=-
5974 Resource SC_OPCODE_GAMMA_DIST
5976 String 1 // Description
5978 Text [ en-US ] = "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution." ;
5983 ID_FUNCTION_GRP_STATISTIC;
5984 U2S( HID_FUNC_GAMMAVERT );
5988 String 2 // Name of Parameter 1
5990 Text [ en-US ] = "Number" ;
5992 String 3 // Description of Parameter 1
5994 Text [ en-US ] = "The value for which the gamma distribution is to be calculated." ;
5996 String 4 // Name of Parameter 2
5998 Text [ en-US ] = "alpha" ;
6000 String 5 // Description of Parameter 2
6002 Text [ en-US ] = "The Alpha parameter of the Gamma distribution." ;
6004 String 6 // Name of Parameter 3
6006 Text [ en-US ] = "beta" ;
6008 String 7 // Description of Parameter 3
6010 Text [ en-US ] = "The Beta parameter of the Gamma distribution." ;
6012 String 8 // Name of Parameter 4
6014 Text [ en-US ] = "Cumulative" ;
6016 String 9 // Description of Parameter 4
6018 Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
6021 // -=*# Resource for function GAMMAINV #*=-
6022 Resource SC_OPCODE_GAMMA_INV
6024 String 1 // Description
6026 Text [ en-US ] = "Values of the inverse gamma distribution." ;
6031 ID_FUNCTION_GRP_STATISTIC;
6032 U2S( HID_FUNC_GAMMAINV );
6036 String 2 // Name of Parameter 1
6038 Text [ en-US ] = "Number" ;
6040 String 3 // Description of Parameter 1
6042 Text [ en-US ] = "The probability value for which the inverse gamma distribution is to be calculated." ;
6044 String 4 // Name of Parameter 2
6046 Text [ en-US ] = "alpha" ;
6048 String 5 // Description of Parameter 2
6050 Text [ en-US ] = "The Alpha (shape) parameter of the Gamma distribution." ;
6052 String 6 // Name of Parameter 3
6054 Text [ en-US ] = "beta" ;
6056 String 7 // Description of Parameter 3
6058 Text [ en-US ] = "The Beta (scale) parameter of the Gamma distribution." ;
6061 // -=*# Resource for function GAMMALN #*=-
6062 Resource SC_OPCODE_GAMMA_LN
6064 String 1 // Description
6066 Text [ en-US ] = "Returns the natural logarithm of the gamma function." ;
6071 ID_FUNCTION_GRP_STATISTIC;
6072 U2S( HID_FUNC_GAMMALN );
6076 String 2 // Name of Parameter 1
6078 Text [ en-US ] = "Number" ;
6080 String 3 // Description of Parameter 1
6082 Text [ en-US ] = "The value for which the natural logarithm of the gamma function is to be calculated." ;
6086 // -=*# Resource for function GAMMA #*=-
6087 Resource SC_OPCODE_GAMMA
6089 String 1 // Description
6091 Text [ en-US ] = "Returns the value of the Gamma function." ;
6096 ID_FUNCTION_GRP_STATISTIC;
6097 U2S( HID_FUNC_GAMMA );
6101 String 2 // Name of Parameter 1
6103 Text [ en-US ] = "Number" ;
6105 String 3 // Description of Parameter 1
6107 Text [ en-US ] = "The value for which the Gamma function is to be calculated." ;
6111 // -=*# Resource for function BETAVERT #*=-
6112 Resource SC_OPCODE_BETA_DIST
6114 String 1 // Description
6116 Text [ en-US ] = "Values of the beta distribution." ;
6121 ID_FUNCTION_GRP_STATISTIC;
6122 U2S( HID_FUNC_BETAVERT );
6123 6; 0; 0; 0; 1; 1; 1;
6126 String 2 // Name of Parameter 1
6128 Text [ en-US ] = "number" ;
6130 String 3 // Description of Parameter 1
6132 Text [ en-US ] = "The value for which the beta distribution is to be calculated." ;
6134 String 4 // Name of Parameter 2
6136 Text [ en-US ] = "alpha" ;
6138 String 5 // Description of Parameter 2
6140 Text [ en-US ] = "The Alpha parameter of the Beta distribution." ;
6142 String 6 // Name of Parameter 3
6144 Text [ en-US ] = "beta" ;
6146 String 7 // Description of Parameter 3
6148 Text [ en-US ] = "The Beta parameter of the Beta distribution." ;
6150 String 8 // Name of Parameter 4
6152 Text [ en-US ] = "Start" ;
6154 String 9 // Description of Parameter 4
6156 Text [ en-US ] = "The starting value for the value interval of the distribution." ;
6158 String 10 // Name of Parameter 5
6160 Text [ en-US ] = "End" ;
6162 String 11 // Description of Parameter 5
6164 Text [ en-US ] = "The final value for the value interval of the distribution." ;
6166 String 12 // Name of Parameter 6
6168 Text [en-US ] = "Cumulative" ;
6170 String 13 // Description of Parameter 6
6172 Text [ en-US ] = "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function.";
6175 // -=*# Resource for function BETAINV #*=-
6176 Resource SC_OPCODE_BETA_INV
6178 String 1 // Description
6180 Text [ en-US ] = "Values of the inverse beta distribution." ;
6185 ID_FUNCTION_GRP_STATISTIC;
6186 U2S( HID_FUNC_BETAINV );
6190 String 2 // Name of Parameter 1
6192 Text [ en-US ] = "number" ;
6194 String 3 // Description of Parameter 1
6196 Text [ en-US ] = "The probability value for which the inverse beta distribution is to be calculated." ;
6198 String 4 // Name of Parameter 2
6200 Text [ en-US ] = "alpha" ;
6202 String 5 // Description of Parameter 2
6204 Text [ en-US ] = "The Alpha parameter of the Beta distribution." ;
6206 String 6 // Name of Parameter 3
6208 Text [ en-US ] = "beta" ;
6210 String 7 // Description of Parameter 3
6212 Text [ en-US ] = "The Beta parameter of the Beta distribution." ;
6214 String 8 // Name of Parameter 4
6216 Text [ en-US ] = "Start" ;
6218 String 9 // Description of Parameter 4
6220 Text [ en-US ] = "The starting value for the value interval of the distribution." ;
6222 String 10 // Name of Parameter 5
6224 Text [ en-US ] = "End" ;
6226 String 11 // Description of Parameter 5
6228 Text [ en-US ] = "The final value for the value interval of the distribution." ;
6231 // -=*# Resource for function WEIBULL #*=-
6232 Resource SC_OPCODE_WEIBULL
6234 String 1 // Description
6236 Text [ en-US ] = "Returns the values of the Weibull distribution." ;
6241 ID_FUNCTION_GRP_STATISTIC;
6242 U2S( HID_FUNC_WEIBULL );
6246 String 2 // Name of Parameter 1
6248 Text [ en-US ] = "Number" ;
6250 String 3 // Description of Parameter 1
6252 Text [ en-US ] = "The value for which the Weibull distribution is to be calculated." ;
6254 String 4 // Name of Parameter 2
6256 Text [ en-US ] = "Alpha" ;
6258 String 5 // Description of Parameter 2
6260 Text [ en-US ] = "The Alpha parameter of the Weibull distribution." ;
6262 String 6 // Name of Parameter 3
6264 Text [ en-US ] = "beta" ;
6266 String 7 // Description of Parameter 3
6268 Text [ en-US ] = "The Beta parameter of the Weibull distribution." ;
6270 String 8 // Name of Parameter 4
6272 Text [ en-US ] = "C" ;
6274 String 9 // Description of Parameter 4
6276 Text [ en-US ] = "Cumulated. C=0 calculates the density function, C=1 the distribution." ;
6279 // -=*# Resource for function HYPGEOMVERT #*=-
6280 Resource SC_OPCODE_HYP_GEOM_DIST
6282 String 1 // Description
6284 Text [ en-US ] = "Values of the hypergeometric distribution." ;
6289 ID_FUNCTION_GRP_STATISTIC;
6290 U2S( HID_FUNC_HYPGEOMVERT );
6294 String 2 // Name of Parameter 1
6296 Text [ en-US ] = "X" ;
6298 String 3 // Description of Parameter 1
6300 Text [ en-US ] = "The number of successes in the sample." ;
6302 String 4 // Name of Parameter 2
6304 Text [ en-US ] = "n_sample" ;
6306 String 5 // Description of Parameter 2
6308 Text [ en-US ] = "The size of the sample." ;
6310 String 6 // Name of Parameter 3
6312 Text [ en-US ] = "successes" ;
6314 String 7 // Description of Parameter 3
6316 Text [ en-US ] = "The number of successes in the population." ;
6318 String 8 // Name of Parameter 4
6320 Text [ en-US ] = "n_population" ;
6322 String 9 // Description of Parameter 4
6324 Text [ en-US ] = "The population size." ;
6327 // -=*# Resource for function TVERT #*=-
6328 Resource SC_OPCODE_T_DIST
6330 String 1 // Description
6332 Text [ en-US ] = "Returns the t-distribution." ;
6337 ID_FUNCTION_GRP_STATISTIC;
6338 U2S( HID_FUNC_TVERT );
6342 String 2 // Name of Parameter 1
6344 Text [ en-US ] = "Number" ;
6346 String 3 // Description of Parameter 1
6348 Text [ en-US ] = "The value for which the T distribution is to be calculated." ;
6350 String 4 // Name of Parameter 2
6352 Text [ en-US ] = "degrees_freedom" ;
6354 String 5 // Description of Parameter 2
6356 Text [ en-US ] = "The degrees of freedom of the T distribution." ;
6358 String 6 // Name of Parameter 3
6360 Text [ en-US ] = "mode" ;
6362 String 7 // Description of Parameter 3
6364 Text [ en-US ] = "Mode = 1calculates the one-tailed test, 2 = two-tailed distribution." ;
6367 // -=*# Resource for function TINV #*=-
6368 Resource SC_OPCODE_T_INV
6370 String 1 // Description
6372 Text [ en-US ] = "Values of the inverse t-distribution." ;
6377 ID_FUNCTION_GRP_STATISTIC;
6378 U2S( HID_FUNC_TINV );
6382 String 2 // Name of Parameter 1
6384 Text [ en-US ] = "number" ;
6386 String 3 // Description of Parameter 1
6388 Text [ en-US ] = "The probability value for which the inverse T distribution is to be calculated." ;
6390 String 4 // Name of Parameter 2
6392 Text [ en-US ] = "degrees_freedom" ;
6394 String 5 // Description of Parameter 2
6396 Text [ en-US ] = "The degrees of freedom of the T distribution." ;
6399 // -=*# Resource for function FVERT #*=-
6400 Resource SC_OPCODE_F_DIST
6402 String 1 // Description
6404 Text [ en-US ] = "Values of the F probability distribution." ;
6409 ID_FUNCTION_GRP_STATISTIC;
6410 U2S( HID_FUNC_FVERT );
6414 String 2 // Name of Parameter 1
6416 Text [ en-US ] = "Number" ;
6418 String 3 // Description of Parameter 1
6420 Text [ en-US ] = "The value for which the F distribution is to be calculated." ;
6422 String 4 // Name of Parameter 2
6424 Text [ en-US ] = "degrees_freedom_1" ;
6426 String 5 // Description of Parameter 2
6428 Text [ en-US ] = "The degrees of freedom in the numerator of the F distribution." ;
6430 String 6 // Name of Parameter 3
6432 Text [ en-US ] = "degrees_freedom_2" ;
6434 String 7 // Description of Parameter 3
6436 Text [ en-US ] = "The degrees of freedom in the denominator of the F distribution." ;
6439 // -=*# Resource for function FINV #*=-
6440 Resource SC_OPCODE_F_INV
6442 String 1 // Description
6444 Text [ en-US ] = "Values of the inverse F distribution." ;
6449 ID_FUNCTION_GRP_STATISTIC;
6450 U2S( HID_FUNC_FINV );
6454 String 2 // Name of Parameter 1
6456 Text [ en-US ] = "number" ;
6458 String 3 // Description of Parameter 1
6460 Text [ en-US ] = "The probability value for which the inverse F distribution is to be calculated." ;
6462 String 4 // Name of Parameter 2
6464 Text [ en-US ] = "degrees_freedom_1" ;
6466 String 5 // Description of Parameter 2
6468 Text [ en-US ] = "The degrees of freedom in the numerator of the F distribution." ;
6470 String 6 // Name of Parameter 3
6472 Text [ en-US ] = "degrees_freedom_2" ;
6474 String 7 // Description of Parameter 3
6476 Text [ en-US ] = "The degrees of freedom in the denominator of the F distribution." ;
6479 // -=*# Resource for function CHIVERT #*=-
6480 Resource SC_OPCODE_CHI_DIST
6482 String 1 // Description
6484 Text [ en-US ] = "Returns the right-tail probability of the chi-square distribution." ;
6489 ID_FUNCTION_GRP_STATISTIC;
6490 U2S( HID_FUNC_CHIVERT );
6494 String 2 // Name of Parameter 1
6496 Text [ en-US ] = "Number" ;
6498 String 3 // Description of Parameter 1
6500 Text [ en-US ] = "The value for which the chi square distribution is to be calculated." ;
6502 String 4 // Name of Parameter 2
6504 Text [ en-US ] = "degrees_freedom" ;
6506 String 5 // Description of Parameter 2
6508 Text [ en-US ] = "The degrees of freedom of the chi square distribution." ;
6512 // -=*# Resource for function CHISQDIST #*=-
6513 Resource SC_OPCODE_CHISQ_DIST
6515 String 1 // Description
6517 Text [ en-US ] = "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." ;
6522 ID_FUNCTION_GRP_STATISTIC;
6523 U2S( HID_FUNC_CHISQDIST );
6527 String 2 // Name of Parameter 1
6529 Text [ en-US ] = "Number" ;
6531 String 3 // Description of Parameter 1
6533 Text [ en-US ] = "The value for which the probability density function or cumulative distribution function is to be calculated." ;
6535 String 4 // Name of Parameter 2
6537 Text [ en-US ] = "Degrees of Freedom" ;
6539 String 5 // Description of Parameter 2
6541 Text [ en-US ] = "The degrees of freedom of the chi-square distribution." ;
6543 String 6 // Name of Parameter 3
6545 Text [ en-US ] = "Cumulative" ;
6547 String 7 // Description of Parameter 3
6549 Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
6554 // -=*# Resource for function CHIINV #*=-
6555 Resource SC_OPCODE_CHI_INV
6557 String 1 // Description
6559 Text [ en-US ] = "Values of the inverse of CHIDIST(x; DegreesOfFreedom)." ;
6564 ID_FUNCTION_GRP_STATISTIC;
6565 U2S( HID_FUNC_CHIINV );
6569 String 2 // Name of Parameter 1
6571 Text [ en-US ] = "number" ;
6573 String 3 // Description of Parameter 1
6575 Text [ en-US ] = "The probability value for which the inverse chi square distribution is to be calculated." ;
6577 String 4 // Name of Parameter 2
6579 Text [ en-US ] = "degrees_freedom" ;
6581 String 5 // Description of Parameter 2
6583 Text [ en-US ] = "The degrees of freedom of the chi square distribution." ;
6587 // -=*# Resource for function CHISQINV #*=-
6588 Resource SC_OPCODE_CHISQ_INV
6590 String 1 // Description
6592 Text [ en-US ] = "Values of the inverse of CHISQDIST(x;DegreesOfFreedom;TRUE())." ;
6597 ID_FUNCTION_GRP_STATISTIC;
6598 U2S( HID_FUNC_CHISQINV );
6602 String 2 // Name of Parameter 1
6604 Text [ en-US ] = "Probability" ;
6606 String 3 // Description of Parameter 1
6608 Text [ en-US ] = "The probability value for which the inverse of the chi square distribution is to be calculated." ;
6610 String 4 // Name of Parameter 2
6612 Text [ en-US ] = "Degrees of Freedom" ;
6614 String 5 // Description of Parameter 2
6616 Text [ en-US ] = "The degrees of freedom of the chi square distribution." ;
6620 // -=*# Resource for function STANDARDISIERUNG #*=-
6621 Resource SC_OPCODE_STANDARD
6623 String 1 // Description
6625 Text [ en-US ] = "Converts a random variable to a normalized value." ;
6630 ID_FUNCTION_GRP_STATISTIC;
6631 U2S( HID_FUNC_STANDARDISIERUNG );
6635 String 2 // Name of Parameter 1
6637 Text [ en-US ] = "Number" ;
6639 String 3 // Description of Parameter 1
6641 Text [ en-US ] = "The value to be standardized." ;
6643 String 4 // Name of Parameter 2
6645 Text [ en-US ] = "mean" ;
6647 String 5 // Description of Parameter 2
6649 Text [ en-US ] = "The mean value used for moving." ;
6651 String 6 // Name of Parameter 3
6653 Text [ en-US ] = "STDEV" ;
6655 String 7 // Description of Parameter 3
6657 Text [ en-US ] = "The standard deviation used for scaling." ;
6660 // -=*# Resource for function VARIATIONEN #*=-
6661 Resource SC_OPCODE_VARIATIONEN
6663 String 1 // Description
6665 Text [ en-US ] = "Returns the number of permutations for a given number of elements without repetition." ;
6670 ID_FUNCTION_GRP_STATISTIC;
6671 U2S( HID_FUNC_VARIATIONEN );
6675 String 2 // Name of Parameter 1
6677 Text [ en-US ] = "Count_1" ;
6679 String 3 // Description of Parameter 1
6681 Text [ en-US ] = "The total number of elements." ;
6683 String 4 // Name of Parameter 2
6685 Text [ en-US ] = "Count_2" ;
6687 String 5 // Description of Parameter 2
6689 Text [ en-US ] = "The selection number taken from the elements." ;
6692 // -=*# Resource for function VARIATIONEN2 #*=-
6693 Resource SC_OPCODE_VARIATIONEN_2
6695 String 1 // Description
6697 Text [ en-US ] = "Returns the number of permutations for a given number of objects (repetition allowed)." ;
6702 ID_FUNCTION_GRP_STATISTIC;
6703 U2S( HID_FUNC_VARIATIONEN2 );
6707 String 2 // Name of Parameter 1
6709 Text [ en-US ] = "Count_1" ;
6711 String 3 // Description of Parameter 1
6713 Text [ en-US ] = "The total number of elements." ;
6715 String 4 // Name of Parameter 2
6717 Text [ en-US ] = "Count_2" ;
6719 String 5 // Description of Parameter 2
6721 Text [ en-US ] = "The selection number taken from the elements." ;
6724 // -=*# Resource for function KONFIDENZ #*=-
6725 Resource SC_OPCODE_CONFIDENCE
6727 String 1 // Description
6729 Text [ en-US ] = "Returns a (1 alpha) confidence interval for a normal distribution." ;
6734 ID_FUNCTION_GRP_STATISTIC;
6735 U2S( HID_FUNC_KONFIDENZ );
6739 String 2 // Name of Parameter 1
6741 Text [ en-US ] = "alpha" ;
6743 String 3 // Description of Parameter 1
6745 Text [ en-US ] = "The level of the confidence interval." ;
6747 String 4 // Name of Parameter 2
6749 Text [ en-US ] = "STDEV" ;
6751 String 5 // Description of Parameter 2
6753 Text [ en-US ] = "The standard deviation of the population." ;
6755 String 6 // Name of Parameter 3
6757 Text [ en-US ] = "size" ;
6759 String 7 // Description of Parameter 3
6761 Text [ en-US ] = "The size of the population." ;
6764 // -=*# Resource for function GTEST #*=-
6765 Resource SC_OPCODE_Z_TEST
6767 String 1 // Description
6769 Text [ en-US ] = "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." ;
6774 ID_FUNCTION_GRP_STATISTIC;
6775 U2S( HID_FUNC_GTEST );
6779 String 2 // Name of Parameter 1
6781 Text [ en-US ] = "data" ;
6783 String 3 // Description of Parameter 1
6785 Text [ en-US ] = "The given sample, drawn from a normally distributed population." ;
6787 String 4 // Name of Parameter 2
6789 Text [ en-US ] = "mu" ;
6791 String 5 // Description of Parameter 2
6793 Text [ en-US ] = "The known mean of the population." ;
6795 String 6 // Name of Parameter 3
6797 Text [ en-US ] = "sigma" ;
6799 String 7 // Description of Parameter 3
6801 Text [ en-US ] = "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used." ;
6804 // -=*# Resource for function CHITEST #*=-
6805 Resource SC_OPCODE_CHI_TEST
6807 String 1 // Description
6809 Text [ en-US ] = "Returns the chi square independence test." ;
6814 ID_FUNCTION_GRP_STATISTIC;
6815 U2S( HID_FUNC_CHITEST );
6819 String 2 // Name of Parameter 1
6821 Text [ en-US ] = "Data_B" ;
6823 String 3 // Description of Parameter 1
6825 Text [ en-US ] = "The observed data array." ;
6827 String 4 // Name of Parameter 2
6829 Text [ en-US ] = "data_E" ;
6831 String 5 // Description of Parameter 2
6833 Text [ en-US ] = "The expected data array." ;
6836 // -=*# Resource for function FTEST #*=-
6837 Resource SC_OPCODE_F_TEST
6839 String 1 // Description
6841 Text [ en-US ] = "Calculates the F test." ;
6846 ID_FUNCTION_GRP_STATISTIC;
6847 U2S( HID_FUNC_FTEST );
6851 String 2 // Name of Parameter 1
6853 Text [ en-US ] = "data_1" ;
6855 String 3 // Description of Parameter 1
6857 Text [ en-US ] = "The first record array." ;
6859 String 4 // Name of Parameter 2
6861 Text [ en-US ] = "data_2" ;
6863 String 5 // Description of Parameter 2
6865 Text [ en-US ] = "The second record array." ;
6868 // -=*# Resource for function TTEST #*=-
6869 Resource SC_OPCODE_T_TEST
6871 String 1 // Description
6873 Text [ en-US ] = "Calculates the T test." ;
6878 ID_FUNCTION_GRP_STATISTIC;
6879 U2S( HID_FUNC_TTEST );
6883 String 2 // Name of Parameter 1
6885 Text [ en-US ] = "data_1" ;
6887 String 3 // Description of Parameter 1
6889 Text [ en-US ] = "The first record array." ;
6891 String 4 // Name of Parameter 2
6893 Text [ en-US ] = "data_2" ;
6895 String 5 // Description of Parameter 2
6897 Text [ en-US ] = "The second record array." ;
6899 String 6 // Name of Parameter 3
6901 Text [ en-US ] = "mode" ;
6903 String 7 // Description of Parameter 3
6905 Text [ en-US ] = "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution" ;
6907 String 8 // Name of Parameter 4
6909 Text [ en-US ] = "Type" ;
6911 String 9 // Description of Parameter 4
6913 Text [ en-US ] = "The type of the T test." ;
6916 // -=*# Resource for function BESTIMMTHEITSMASS #*=-
6917 Resource SC_OPCODE_RSQ
6919 String 1 // Description
6921 Text [ en-US ] = "Returns the square of the Pearson product moment correlation coefficient." ;
6926 ID_FUNCTION_GRP_STATISTIC;
6927 U2S( HID_FUNC_BESTIMMTHEITSMASS );
6931 String 2 // Name of Parameter 1
6933 Text [ en-US ] = "data_Y" ;
6935 String 3 // Description of Parameter 1
6937 Text [ en-US ] = "The Y data array." ;
6939 String 4 // Name of Parameter 2
6941 Text [ en-US ] = "data_X" ;
6943 String 5 // Description of Parameter 2
6945 Text [ en-US ] = "The X data array." ;
6948 // -=*# Resource for function ACHSENABSCHNITT #*=-
6949 Resource SC_OPCODE_INTERCEPT
6951 String 1 // Description
6953 Text [ en-US ] = "Returns the intercept of the linear regression line and the Y axis." ;
6958 ID_FUNCTION_GRP_STATISTIC;
6959 U2S( HID_FUNC_ACHSENABSCHNITT );
6963 String 2 // Name of Parameter 1
6965 Text [ en-US ] = "data_Y" ;
6967 String 3 // Description of Parameter 1
6969 Text [ en-US ] = "The Y data array." ;
6971 String 4 // Name of Parameter 2
6973 Text [ en-US ] = "data_X" ;
6975 String 5 // Description of Parameter 2
6977 Text [ en-US ] = "The X data array." ;
6980 // -=*# Resource for function STEIGUNG #*=-
6981 Resource SC_OPCODE_SLOPE
6983 String 1 // Description
6985 Text [ en-US ] = "Returns the slope of the linear regression line." ;
6990 ID_FUNCTION_GRP_STATISTIC;
6991 U2S( HID_FUNC_STEIGUNG );
6995 String 2 // Name of Parameter 1
6997 Text [ en-US ] = "data_Y" ;
6999 String 3 // Description of Parameter 1
7001 Text [ en-US ] = "The Y data array." ;
7003 String 4 // Name of Parameter 2
7005 Text [ en-US ] = "data_X" ;
7007 String 5 // Description of Parameter 2
7009 Text [ en-US ] = "The X data array." ;
7012 // -=*# Resource for function STFEHLERYX #*=-
7013 Resource SC_OPCODE_STEYX
7015 String 1 // Description
7017 Text [ en-US ] = "Returns the standard error of the linear regression." ;
7022 ID_FUNCTION_GRP_STATISTIC;
7023 U2S( HID_FUNC_STFEHLERYX );
7027 String 2 // Name of Parameter 1
7029 Text [ en-US ] = "data_Y" ;
7031 String 3 // Description of Parameter 1
7033 Text [ en-US ] = "The Y data array." ;
7035 String 4 // Name of Parameter 2
7037 Text [ en-US ] = "data_X" ;
7039 String 5 // Description of Parameter 2
7041 Text [ en-US ] = "The X data array." ;
7044 // -=*# Resource for function PEARSON #*=-
7045 Resource SC_OPCODE_PEARSON
7047 String 1 // Description
7049 Text [ en-US ] = "Returns the Pearson product moment correlation coefficient." ;
7054 ID_FUNCTION_GRP_STATISTIC;
7055 U2S( HID_FUNC_PEARSON );
7059 String 2 // Name of Parameter 1
7061 Text [ en-US ] = "Data_1" ;
7063 String 3 // Description of Parameter 1
7065 Text [ en-US ] = "The first record array." ;
7067 String 4 // Name of Parameter 2
7069 Text [ en-US ] = "Data_2" ;
7071 String 5 // Description of Parameter 2
7073 Text [ en-US ] = "The second record array." ;
7076 // -=*# Resource for function KORREL #*=-
7077 Resource SC_OPCODE_CORREL
7079 String 1 // Description
7081 Text [ en-US ] = "Returns the correlation coefficient." ;
7086 ID_FUNCTION_GRP_STATISTIC;
7087 U2S( HID_FUNC_KORREL );
7091 String 2 // Name of Parameter 1
7093 Text [ en-US ] = "Data_1" ;
7095 String 3 // Description of Parameter 1
7097 Text [ en-US ] = "The first record array." ;
7099 String 4 // Name of Parameter 2
7101 Text [ en-US ] = "Data_2" ;
7103 String 5 // Description of Parameter 2
7105 Text [ en-US ] = "The second record array." ;
7108 // -=*# Resource for function KOVAR #*=-
7109 Resource SC_OPCODE_COVAR
7111 String 1 // Description
7113 Text [ en-US ] = "Calculates the covariance." ;
7118 ID_FUNCTION_GRP_STATISTIC;
7119 U2S( HID_FUNC_KOVAR );
7123 String 2 // Name of Parameter 1
7125 Text [ en-US ] = "Data_1" ;
7127 String 3 // Description of Parameter 1
7129 Text [ en-US ] = "The first record array." ;
7131 String 4 // Name of Parameter 2
7133 Text [ en-US ] = "Data_2" ;
7135 String 5 // Description of Parameter 2
7137 Text [ en-US ] = "The second record array." ;
7140 // -=*# Resource for function SCHÄTZER #*=-
7141 Resource SC_OPCODE_FORECAST
7143 String 1 // Description
7145 Text [ en-US ] = "Returns a value along a linear regression" ;
7150 ID_FUNCTION_GRP_STATISTIC;
7151 U2S( HID_FUNC_SCHAETZER );
7155 String 2 // Name of Parameter 1
7157 Text [ en-US ] = "value" ;
7159 String 3 // Description of Parameter 1
7161 Text [ en-US ] = "The X value for which the Y value on the regression linear is to be calculated." ;
7163 String 4 // Name of Parameter 2
7165 Text [ en-US ] = "data_Y" ;
7167 String 5 // Description of Parameter 2
7169 Text [ en-US ] = "The Y data array." ;
7171 String 6 // Name of Parameter 3
7173 Text [ en-US ] = "data_X" ;
7175 String 7 // Description of Parameter 3
7177 Text [ en-US ] = "The X data array." ;
7180 // -=*# Resource for function ADRESSE #*=-
7181 Resource SC_OPCODE_ADDRESS
7183 String 1 // Description
7185 Text [ en-US ] = "Returns the reference to a cell as text." ;
7190 ID_FUNCTION_GRP_TABLE;
7191 U2S( HID_FUNC_ADRESSE );
7195 String 2 // Name of Parameter 1
7197 Text [ en-US ] = "row" ;
7199 String 3 // Description of Parameter 1
7201 Text [ en-US ] = "The row number of the cell." ;
7203 String 4 // Name of Parameter 2
7205 Text [ en-US ] = "column" ;
7207 String 5 // Description of Parameter 2
7209 Text [ en-US ] = "The column number of the cell." ;
7211 String 6 // Name of Parameter 3
7213 Text [ en-US ] = "ABS" ;
7215 String 7 // Description of Parameter 3
7217 Text [ en-US ] = "Specifies whether absolute or relative referencing is to be used." ;
7219 String 8 // Name of Parameter 4
7221 Text [ en-US ] = "A1" ;
7223 String 9 // Description of Parameter 4
7225 Text [ en-US ] = "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style." ;
7227 String 10 // Name of Parameter 5
7229 Text [ en-US ] = "sheet" ;
7230 Text [ x-comment ] = "previously to OOo3.0 this was String resource RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ADDRESS 8" ;
7232 String 11 // Description of Parameter 5
7234 Text [ en-US ] = "The spreadsheet name of the cell reference." ;
7235 Text [ x-comment ] = "previously to OOo3.0 this was String resource RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ADDRESS 9" ;
7238 // -=*# Resource for function BEREICHE #*=-
7239 Resource SC_OPCODE_AREAS
7241 String 1 // Description
7243 Text [ en-US ] = "Returns the number of individual ranges that belong to a (multiple) range." ;
7248 ID_FUNCTION_GRP_TABLE;
7249 U2S( HID_FUNC_BEREICHE );
7253 String 2 // Name of Parameter 1
7255 Text [ en-US ] = "reference" ;
7257 String 3 // Description of Parameter 1
7259 Text [ en-US ] = "The reference to a (multiple) range." ;
7262 // -=*# Resource for function WAHL #*=-
7263 Resource SC_OPCODE_CHOSE
7265 String 1 // Description
7267 Text [ en-US ] = "Selects a value from a list of up to 30 value arguments." ;
7272 ID_FUNCTION_GRP_TABLE;
7273 U2S( HID_FUNC_WAHL );
7277 String 2 // Name of Parameter 1
7279 Text [ en-US ] = "Index" ;
7281 String 3 // Description of Parameter 1
7283 Text [ en-US ] = "The index of the value (1..30) selected." ;
7285 String 4 // Name of Parameter 2
7287 Text [ en-US ] = "value " ;
7289 String 5 // Description of Parameter 2
7291 Text [ en-US ] = "Value 1, value 2,... The list of arguments from which a value is chosen." ;
7294 // -=*# Resource for function SPALTE #*=-
7295 Resource SC_OPCODE_COLUMN
7297 String 1 // Description
7299 Text [ en-US ] = "Returns the internal column number of a reference." ;
7304 ID_FUNCTION_GRP_TABLE;
7305 U2S( HID_FUNC_SPALTE );
7309 String 2 // Name of Parameter 1
7311 Text [ en-US ] = "reference" ;
7313 String 3 // Description of Parameter 1
7315 Text [ en-US ] = "The reference to a cell or a range." ;
7318 // -=*# Resource for function ZEILE #*=-
7319 Resource SC_OPCODE_ROW
7321 String 1 // Description
7323 Text [ en-US ] = "Defines the internal row number of a reference." ;
7328 ID_FUNCTION_GRP_TABLE;
7329 U2S( HID_FUNC_ZEILE );
7333 String 2 // Name of Parameter 1
7335 Text [ en-US ] = "reference" ;
7337 String 3 // Description of Parameter 1
7339 Text [ en-US ] = "The reference to a cell or a range." ;
7342 // -=*# Resource for function TABELLE #*=-
7343 Resource SC_OPCODE_TABLE
7345 String 1 // Description
7347 Text [ en-US ] = "Returns the internal sheet number of a reference or a string." ;
7352 ID_FUNCTION_GRP_TABLE;
7353 U2S( HID_FUNC_TABELLE );
7357 String 2 // Name of Parameter 1
7359 Text [ en-US ] = "reference" ;
7361 String 3 // Description of Parameter 1
7363 Text [ en-US ] = "The reference to a cell or a range or the character string of a sheet name." ;
7366 // -=*# Resource for function SPALTEN #*=-
7367 Resource SC_OPCODE_COLUMNS
7369 String 1 // Description
7371 Text [ en-US ] = "Returns the number of columns in an array or reference." ;
7376 ID_FUNCTION_GRP_TABLE;
7377 U2S( HID_FUNC_SPALTEN );
7381 String 2 // Name of Parameter 1
7383 Text [ en-US ] = "array" ;
7385 String 3 // Description of Parameter 1
7387 Text [ en-US ] = "The array (reference) for which the number of columns is to be determined." ;
7390 // -=*# Resource for function ZEILEN #*=-
7391 Resource SC_OPCODE_ROWS
7393 String 1 // Description
7395 Text [ en-US ] = "Returns the number of rows in a reference or array." ;
7400 ID_FUNCTION_GRP_TABLE;
7401 U2S( HID_FUNC_ZEILEN );
7405 String 2 // Name of Parameter 1
7407 Text [ en-US ] = "array" ;
7409 String 3 // Description of Parameter 1
7411 Text [ en-US ] = "The array (reference) for which the number of rows is to be determined." ;
7414 // -=*# Resource for function TABELLEN #*=-
7415 Resource SC_OPCODE_TABLES
7417 String 1 // Description
7419 Text [ en-US ] = "Returns the number of sheets of a given reference. If no parameter has been entered, the total number of sheets in the document is returned." ;
7424 ID_FUNCTION_GRP_TABLE;
7425 U2S( HID_FUNC_TABELLEN );
7429 String 2 // Name of Parameter 1
7431 Text [ en-US ] = "reference" ;
7433 String 3 // Description of Parameter 1
7435 Text [ en-US ] = "The reference to a cell or a range." ;
7438 // -=*# Resource for function WVERWEIS #*=-
7439 Resource SC_OPCODE_H_LOOKUP
7441 String 1 // Description
7443 Text [ en-US ] = "Horizontal search and reference to the cells located below." ;
7448 ID_FUNCTION_GRP_TABLE;
7449 U2S( HID_FUNC_WVERWEIS );
7453 String 2 // Name of Parameter 1
7455 Text [ en-US ] = "search_criteria" ;
7457 String 3 // Description of Parameter 1
7459 Text [ en-US ] = "The value to be found in the first row." ;
7461 String 4 // Name of Parameter 2
7463 Text [ en-US ] = "array" ;
7465 String 5 // Description of Parameter 2
7467 Text [ en-US ] = "The array or the range for the reference." ;
7469 String 6 // Name of Parameter 3
7471 Text [ en-US ] = "Index" ;
7473 String 7 // Description of Parameter 3
7475 Text [ en-US ] = "The row index in the array." ;
7477 String 8 // Name of Parameter 4
7479 Text [ en-US ] = "sorted" ;
7481 String 9 // Description of Parameter 4
7483 Text [ en-US ] = "If the value is TRUE or not given, the search row of the array must be sorted in ascending order." ;
7486 // -=*# Resource for function SVERWEIS #*=-
7487 Resource SC_OPCODE_V_LOOKUP
7489 String 1 // Description
7491 Text [ en-US ] = "Vertical search and reference to indicated cells." ;
7496 ID_FUNCTION_GRP_TABLE;
7497 U2S( HID_FUNC_SVERWEIS );
7501 String 2 // Name of Parameter 1
7503 Text [ en-US ] = "Search criterion" ;
7505 String 3 // Description of Parameter 1
7507 Text [ en-US ] = "The value to be found in the first column." ;
7509 String 4 // Name of Parameter 2
7511 Text [ en-US ] = "array" ;
7513 String 5 // Description of Parameter 2
7515 Text [ en-US ] = "The array or range for referencing." ;
7517 String 6 // Name of Parameter 3
7519 Text [ en-US ] = "Index" ;
7521 String 7 // Description of Parameter 3
7523 Text [ en-US ] = "Column index number in the array." ;
7525 String 8 // Name of Parameter 4
7527 Text [ en-US ] = "sort order" ;
7529 String 9 // Description of Parameter 4
7531 Text [ en-US ] = "if the value is TRUE or not given, the search column of the array must be sorted in ascending order." ;
7534 // -=*# Resource for function INDEX #*=-
7535 Resource SC_OPCODE_INDEX
7537 String 1 // Description
7539 Text [ en-US ] = "Returns a reference to a cell from a defined range." ;
7544 ID_FUNCTION_GRP_TABLE;
7545 U2S( HID_FUNC_INDEX );
7549 String 2 // Name of Parameter 1
7551 Text [ en-US ] = "reference" ;
7553 String 3 // Description of Parameter 1
7555 Text [ en-US ] = "The reference to a (multiple) range." ;
7557 String 4 // Name of Parameter 2
7559 Text [ en-US ] = "row" ;
7561 String 5 // Description of Parameter 2
7563 Text [ en-US ] = "The row in the range." ;
7565 String 6 // Name of Parameter 3
7567 Text [ en-US ] = "column" ;
7569 String 7 // Description of Parameter 3
7571 Text [ en-US ] = "The column in the range." ;
7573 String 8 // Name of Parameter 4
7575 Text [ en-US ] = "range" ;
7577 String 9 // Description of Parameter 4
7579 Text [ en-US ] = "The index of the subrange if referring to a multiple range." ;
7582 // -=*# Resource for function INDIREKT #*=-
7583 Resource SC_OPCODE_INDIRECT
7585 String 1 // Description
7587 Text [ en-US ] = "Returns the contents of a cell that is referenced in text form." ;
7592 ID_FUNCTION_GRP_TABLE;
7593 U2S( HID_FUNC_INDIREKT );
7597 String 2 // Name of Parameter 1
7599 Text [ en-US ] = "ref " ;
7601 String 3 // Description of Parameter 1
7603 Text [ en-US ] = "The cell whose contents are to be evaluated is to be referenced in text form (e.g. \"A1\")." ;
7605 String 4 // Name of Parameter 2
7607 Text [ en-US ] = "A1" ;
7609 String 5 // Description of Parameter 2
7611 Text [ en-US ] = "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style." ;
7614 // -=*# Resource for function VERWEIS #*=-
7615 Resource SC_OPCODE_LOOKUP
7617 String 1 // Description
7619 Text [ en-US ] = "Determines a value in a vector by comparison to values in another vector." ;
7624 ID_FUNCTION_GRP_TABLE;
7625 U2S( HID_FUNC_VERWEIS );
7629 String 2 // Name of Parameter 1
7631 Text [ en-US ] = "Search criterion" ;
7633 String 3 // Description of Parameter 1
7635 Text [ en-US ] = "The value to be used for comparison." ;
7637 String 4 // Name of Parameter 2
7639 Text [ en-US ] = "Search vector" ;
7641 String 5 // Description of Parameter 2
7643 Text [ en-US ] = "The vector (row or column) in which to search." ;
7645 String 6 // Name of Parameter 3
7647 Text [ en-US ] = "result_vector" ;
7649 String 7 // Description of Parameter 3
7651 Text [ en-US ] = "The vector (row or range) from which the value is to be determined." ;
7654 // -=*# Resource for function VERGLEICH #*=-
7655 Resource SC_OPCODE_MATCH
7657 String 1 // Description
7659 Text [ en-US ] = "Defines a position in a array after comparing values." ;
7664 ID_FUNCTION_GRP_TABLE;
7665 U2S( HID_FUNC_VERGLEICH );
7669 String 2 // Name of Parameter 1
7671 Text [ en-US ] = "Search criterion" ;
7673 String 3 // Description of Parameter 1
7675 Text [ en-US ] = "The value to be used for comparison." ;
7677 String 4 // Name of Parameter 2
7679 Text [ en-US ] = "lookup_array" ;
7681 String 5 // Description of Parameter 2
7683 Text [ en-US ] = "The array (range) in which the search is made." ;
7685 String 6 // Name of Parameter 3
7687 Text [ en-US ] = "Type" ;
7689 String 7 // Description of Parameter 3
7691 Text [ en-US ] = "Type can take the value 1, 0 or -1 and determines the criteria are to be used for comparison purposes." ;
7694 // -=*# Resource for function VERSCHIEBUNG #*=-
7695 Resource SC_OPCODE_OFFSET
7697 String 1 // Description
7699 Text [ en-US ] = "Returns a reference which has been moved in relation to the starting point." ;
7704 ID_FUNCTION_GRP_TABLE;
7705 U2S( HID_FUNC_VERSCHIEBUNG );
7709 String 2 // Name of Parameter 1
7711 Text [ en-US ] = "reference" ;
7713 String 3 // Description of Parameter 1
7715 Text [ en-US ] = "The reference (cell) from which to base the movement." ;
7717 String 4 // Name of Parameter 2
7719 Text [ en-US ] = "rows" ;
7721 String 5 // Description of Parameter 2
7723 Text [ en-US ] = "The number of rows to be moved either up or down." ;
7725 String 6 // Name of Parameter 3
7727 Text [ en-US ] = "columns" ;
7729 String 7 // Description of Parameter 3
7731 Text [ en-US ] = "The number of columns that are to be moved to the left or to the right." ;
7733 String 8 // Name of Parameter 4
7735 Text [ en-US ] = "height" ;
7737 String 9 // Description of Parameter 4
7739 Text [ en-US ] = "The number of rows of the moved reference." ;
7741 String 10 // Name of Parameter 5
7743 Text [ en-US ] = "width" ;
7745 String 11 // Description of Parameter 5
7747 Text [ en-US ] = "The number of columns in the moved reference." ;
7750 // -=*# Resource for function FEHLERTYP #*=-
7751 Resource SC_OPCODE_ERROR_TYPE
7753 String 1 // Description
7755 Text [ en-US ] = "Returns a number corresponding to an error type" ;
7760 ID_FUNCTION_GRP_TABLE;
7761 U2S( HID_FUNC_FEHLERTYP );
7765 String 2 // Name of Parameter 1
7767 Text [ en-US ] = "reference" ;
7769 String 3 // Description of Parameter 1
7771 Text [ en-US ] = "The reference (cell) in which the error occurred." ;
7774 // -=*# Resource for function VORLAGE #*=-
7775 Resource SC_OPCODE_STYLE
7777 String 1 // Description
7779 Text [ en-US ] = "Applies a Style to the formula cell." ;
7784 ID_FUNCTION_GRP_TABLE;
7785 U2S( HID_FUNC_VORLAGE );
7789 String 2 // Name of Parameter 1
7791 Text [ en-US ] = "Style" ;
7793 String 3 // Description of Parameter 1
7795 Text [ en-US ] = "The name of the Style to be applied." ;
7797 String 4 // Name of Parameter 2
7799 Text [ en-US ] = "Time" ;
7801 String 5 // Description of Parameter 2
7803 Text [ en-US ] = "The time (in seconds) that the Style is to remain valid." ;
7805 String 6 // Name of Parameter 3
7807 Text [ en-US ] = "Style2" ;
7809 String 7 // Description of Parameter 3
7811 Text [ en-US ] = "The Style to be applied after time expires." ;
7814 // -=*# Resource for function DDE #*=-
7815 Resource SC_OPCODE_DDE
7817 String 1 // Description
7819 Text [ en-US ] = "Result of a DDE link." ;
7824 ID_FUNCTION_GRP_TABLE;
7825 U2S( HID_FUNC_DDE );
7829 String 2 // Name of Parameter 1
7831 Text [ en-US ] = "server" ;
7833 String 3 // Description of Parameter 1
7835 Text [ en-US ] = "The name of the server application." ;
7837 String 4 // Name of Parameter 2
7839 Text [ en-US ] = "File" ;
7841 String 5 // Description of Parameter 2
7843 Text [ en-US ] = "The name of the file." ;
7845 String 6 // Name of Parameter 3
7847 Text [ en-US ] = "range" ;
7849 String 7 // Description of Parameter 3
7851 Text [ en-US ] = "The range from which data is to be taken." ;
7853 String 8 // Name of Parameter 4
7855 Text [ en-US ] = "mode" ;
7857 String 9 // Description of Parameter 4
7859 Text [ en-US ] = "Defines how data is to be converted to numbers." ;
7862 // -=*# Resource for function HYPERLINK #*=-
7863 Resource SC_OPCODE_HYPERLINK
7865 String 1 // Description
7867 Text [ en-US ] = "Hyperlink." ;
7872 ID_FUNCTION_GRP_TABLE;
7873 U2S( HID_FUNC_HYPERLINK );
7877 String 2 // Name of Parameter 1
7879 Text [ en-US ] = "URL " ;
7881 String 3 // Description of Parameter 1
7883 Text [ en-US ] = "URL";
7885 String 4 // Name of Parameter 2
7887 Text [ en-US ] = "CellText " ;
7889 String 5 // Description of Parameter 2
7891 Text [ en-US ] = "Cell Text";
7894 // -=*# Resource for function GETPIVOTDATA #*=-
7895 Resource SC_OPCODE_GET_PIVOT_DATA
7897 String 1 // Description
7899 Text [ en-US ] = "Extracts value(s) from a DataPilot table.";
7904 ID_FUNCTION_GRP_TABLE;
7905 U2S( HID_FUNC_GETPIVOTDATA );
7906 VAR_ARGS+2; 0; 0; 1;
7909 String 2 // Name of Parameter 1
7911 Text [ en-US ] = "Data Field";
7913 String 3 // Description of Parameter 1
7915 Text [ en-US ] = "The name of the data pilot field to extract.";
7917 String 4 // Name of Parameter 2
7919 Text [ en-US ] = "DataPilot";
7921 String 5 // Description of Parameter 2
7923 Text [ en-US ] = "A reference to a cell or range in the DataPilot table.";
7925 String 6 // Name of Parameter 3
7927 Text [ en-US ] = "Field Name / Item";
7929 String 7 // Description of Parameter 3
7931 Text [ en-US ] = "Field name/value pair to filter the target data.";
7934 // -=*# Resource for function BAHTTEXT #*=-
7935 Resource SC_OPCODE_BAHTTEXT
7937 String 1 // Description
7939 Text [ en-US ] = "Converts a number to text (Baht)." ;
7944 ID_FUNCTION_GRP_TEXT;
7945 U2S( HID_FUNC_BAHTTEXT );
7949 String 2 // Name of Parameter 1
7951 Text [ en-US ] = "Number" ;
7953 String 3 // Description of Parameter 1
7955 Text [ en-US ] = "The number to convert.";
7958 // -=*# Resource for function JIS #*=-
7959 Resource SC_OPCODE_JIS
7961 String 1 // Description
7963 Text [ en-US ] = "Converts half-width ASCII and katakana characters to full-width." ;
7968 ID_FUNCTION_GRP_TEXT;
7969 U2S( HID_FUNC_JIS );
7973 String 2 // Name of Parameter 1
7975 Text [ en-US ] = "text" ;
7977 String 3 // Description of Parameter 1
7979 Text [ en-US ] = "The text to convert.";
7982 // -=*# Resource for function ASC #*=-
7983 Resource SC_OPCODE_ASC
7985 String 1 // Description
7987 Text [ en-US ] = "Converts full-width ASCII and katakana characters to half-width." ;
7992 ID_FUNCTION_GRP_TEXT;
7993 U2S( HID_FUNC_ASC );
7997 String 2 // Name of Parameter 1
7999 Text [ en-US ] = "text" ;
8001 String 3 // Description of Parameter 1
8003 Text [ en-US ] = "The text to convert.";
8006 // -=*# Resource for function CODE #*=-
8007 Resource SC_OPCODE_CODE
8009 String 1 // Description
8011 Text [ en-US ] = "Returns a numeric code for the first character in a text string." ;
8016 ID_FUNCTION_GRP_TEXT;
8017 U2S( HID_FUNC_CODE );
8021 String 2 // Name of Parameter 1
8023 Text [ en-US ] = "text" ;
8025 String 3 // Description of Parameter 1
8027 Text [ en-US ] = "This is the text for which the code of the first character is to be found." ;
8030 // -=*# Resource for function DM #*=-
8031 Resource SC_OPCODE_CURRENCY
8033 String 1 // Description
8035 Text [ en-US ] = "Converts a number to text in currency format." ;
8040 ID_FUNCTION_GRP_TEXT;
8045 String 2 // Name of Parameter 1
8047 Text [ en-US ] = "value" ;
8049 String 3 // Description of Parameter 1
8051 Text [ en-US ] = "Value is a number, a reference to a cell containing a number or a formula that results in a number." ;
8053 String 4 // Name of Parameter 2
8055 Text [ en-US ] = "decimals" ;
8057 String 5 // Description of Parameter 2
8059 Text [ en-US ] = "Decimal places. Denotes the number of digits to the right of the decimal point." ;
8062 // -=*# Resource for function ZEICHEN #*=-
8063 Resource SC_OPCODE_CHAR
8065 String 1 // Description
8067 Text [ en-US ] = "Converts a code number into a character or letter." ;
8072 ID_FUNCTION_GRP_TEXT;
8073 U2S( HID_FUNC_ZEICHEN );
8077 String 2 // Name of Parameter 1
8079 Text [ en-US ] = "number" ;
8081 String 3 // Description of Parameter 1
8083 Text [ en-US ] = "The code value for the character." ;
8086 // -=*# Resource for function SÄUBERN #*=-
8087 Resource SC_OPCODE_CLEAN
8089 String 1 // Description
8091 Text [ en-US ] = "Removes all nonprintable characters from text." ;
8096 ID_FUNCTION_GRP_TEXT;
8097 U2S( HID_FUNC_SAEUBERN );
8101 String 2 // Name of Parameter 1
8103 Text [ en-US ] = "text" ;
8105 String 3 // Description of Parameter 1
8107 Text [ en-US ] = "The text from which nonprintable characters are to be removed." ;
8110 // -=*# Resource for function VERKETTEN #*=-
8111 Resource SC_OPCODE_CONCAT
8113 String 1 // Description
8115 Text [ en-US ] = "Combines several text items into one." ;
8120 ID_FUNCTION_GRP_TEXT;
8121 U2S( HID_FUNC_VERKETTEN );
8125 String 2 // Name of Parameter 1
8127 Text [ en-US ] = "text " ;
8129 String 3 // Description of Parameter 1
8131 Text [ en-US ] = "Text for the concatentation." ;
8134 // -=*# Resource for function IDENTISCH #*=-
8135 Resource SC_OPCODE_EXACT
8137 String 1 // Description
8139 Text [ en-US ] = "Specifies whether two texts are identical." ;
8144 ID_FUNCTION_GRP_TEXT;
8145 U2S( HID_FUNC_IDENTISCH );
8149 String 2 // Name of Parameter 1
8151 Text [ en-US ] = "text_1" ;
8153 String 3 // Description of Parameter 1
8155 Text [ en-US ] = "The first text to be used for comparing texts." ;
8157 String 4 // Name of Parameter 2
8159 Text [ en-US ] = "text_2" ;
8161 String 5 // Description of Parameter 2
8163 Text [ en-US ] = "The second text for comparing texts." ;
8166 // -=*# Resource for function FINDEN #*=-
8167 Resource SC_OPCODE_FIND
8169 String 1 // Description
8171 Text [ en-US ] = "Looks for a string of text within another (case sensitive)" ;
8176 ID_FUNCTION_GRP_TEXT;
8177 U2S( HID_FUNC_FINDEN );
8181 String 2 // Name of Parameter 1
8183 Text [ en-US ] = "find_text" ;
8185 String 3 // Description of Parameter 1
8187 Text [ en-US ] = "The text to be found." ;
8189 String 4 // Name of Parameter 2
8191 Text [ en-US ] = "text" ;
8193 String 5 // Description of Parameter 2
8195 Text [ en-US ] = "The text in which a search is to be made." ;
8197 String 6 // Name of Parameter 3
8199 Text [ en-US ] = "position" ;
8201 String 7 // Description of Parameter 3
8203 Text [ en-US ] = "The position in the text from which the search starts." ;
8206 // -=*# Resource for function SUCHEN #*=-
8207 Resource SC_OPCODE_SEARCH
8209 String 1 // Description
8211 Text [ en-US ] = "Looks for one text value within another (not case-sensitive)." ;
8216 ID_FUNCTION_GRP_TEXT;
8217 U2S( HID_FUNC_SUCHEN );
8221 String 2 // Name of Parameter 1
8223 Text [ en-US ] = "find_text" ;
8225 String 3 // Description of Parameter 1
8227 Text [ en-US ] = "The text to be found." ;
8229 String 4 // Name of Parameter 2
8231 Text [ en-US ] = "text" ;
8233 String 5 // Description of Parameter 2
8235 Text [ en-US ] = "The text in which a search is to be made." ;
8237 String 6 // Name of Parameter 3
8239 Text [ en-US ] = "position" ;
8241 String 7 // Description of Parameter 3
8243 Text [ en-US ] = "The position in the text where the search is started." ;
8246 // -=*# Resource for function GLÄTTEN #*=-
8247 Resource SC_OPCODE_TRIM
8249 String 1 // Description
8251 Text [ en-US ] = "Removes extra spaces from text." ;
8256 ID_FUNCTION_GRP_TEXT;
8257 U2S( HID_FUNC_GLAETTEN );
8261 String 2 // Name of Parameter 1
8263 Text [ en-US ] = "text" ;
8265 String 3 // Description of Parameter 1
8267 Text [ en-US ] = "The text in which extra spaces between words are to be deleted." ;
8270 // -=*# Resource for function GROSS2 #*=-
8271 Resource SC_OPCODE_PROPPER
8273 String 1 // Description
8275 Text [ en-US ] = "Capitalizes the first letter in all words." ;
8280 ID_FUNCTION_GRP_TEXT;
8281 U2S( HID_FUNC_GROSS2 );
8285 String 2 // Name of Parameter 1
8287 Text [ en-US ] = "text" ;
8289 String 3 // Description of Parameter 1
8291 Text [ en-US ] = "The text in which the beginning of words are to be replaced by capital letters." ;
8294 // -=*# Resource for function GROSS #*=-
8295 Resource SC_OPCODE_UPPER
8297 String 1 // Description
8299 Text [ en-US ] = "Converts text to uppercase." ;
8304 ID_FUNCTION_GRP_TEXT;
8305 U2S( HID_FUNC_GROSS );
8309 String 2 // Name of Parameter 1
8311 Text [ en-US ] = "text" ;
8313 String 3 // Description of Parameter 1
8315 Text [ en-US ] = "The text in which lower case letters are to be converted to capitals." ;
8318 // -=*# Resource for function KLEIN #*=-
8319 Resource SC_OPCODE_LOWER
8321 String 1 // Description
8323 Text [ en-US ] = "Converts text to lowercase." ;
8328 ID_FUNCTION_GRP_TEXT;
8329 U2S( HID_FUNC_KLEIN );
8333 String 2 // Name of Parameter 1
8335 Text [ en-US ] = "text" ;
8337 String 3 // Description of Parameter 1
8339 Text [ en-US ] = "The text in which capitals are converted to lower case letters." ;
8342 // -=*# Resource for function WERT #*=-
8343 Resource SC_OPCODE_VALUE
8345 String 1 // Description
8347 Text [ en-US ] = "Converts text to a number." ;
8352 ID_FUNCTION_GRP_TEXT;
8353 U2S( HID_FUNC_WERT );
8357 String 2 // Name of Parameter 1
8359 Text [ en-US ] = "text" ;
8361 String 3 // Description of Parameter 1
8363 Text [ en-US ] = "The text to be converted to a number." ;
8366 // -=*# Resource for function TEXT #*=-
8367 Resource SC_OPCODE_TEXT
8369 String 1 // Description
8371 Text [ en-US ] = "Converts a number to text according to a given format." ;
8376 ID_FUNCTION_GRP_TEXT;
8377 U2S( HID_FUNC_TEXT );
8381 String 2 // Name of Parameter 1
8383 Text [ en-US ] = "number" ;
8385 String 3 // Description of Parameter 1
8387 Text [ en-US ] = "The numeric value to be converted." ;
8389 String 4 // Name of Parameter 2
8391 Text [ en-US ] = "Format" ;
8393 String 5 // Description of Parameter 2
8395 Text [ en-US ] = "The text that describes the format." ;
8398 // -=*# Resource for function T #*=-
8399 Resource SC_OPCODE_T
8401 String 1 // Description
8403 Text [ en-US ] = "Converts a value into text." ;
8408 ID_FUNCTION_GRP_TEXT;
8413 String 2 // Name of Parameter 1
8415 Text [ en-US ] = "value" ;
8417 String 3 // Description of Parameter 1
8419 Text [ en-US ] = "The value to be converted." ;
8422 // -=*# Resource for function ERSETZEN #*=-
8423 Resource SC_OPCODE_REPLACE
8425 String 1 // Description
8427 Text [ en-US ] = "Replaces characters within a text string with a different text string." ;
8432 ID_FUNCTION_GRP_TEXT;
8433 U2S( HID_FUNC_ERSETZEN );
8437 String 2 // Name of Parameter 1
8439 Text [ en-US ] = "Text" ;
8441 String 3 // Description of Parameter 1
8443 Text [ en-US ] = "The text in which some characters are to be replaced." ;
8445 String 4 // Name of Parameter 2
8447 Text [ en-US ] = "position" ;
8449 String 5 // Description of Parameter 2
8451 Text [ en-US ] = "The character position from which text is to be replaced." ;
8453 String 6 // Name of Parameter 3
8455 Text [ en-US ] = "length" ;
8457 String 7 // Description of Parameter 3
8459 Text [ en-US ] = "The number of characters to be replaced." ;
8461 String 8 // Name of Parameter 4
8463 Text [ en-US ] = "new text" ;
8465 String 9 // Description of Parameter 4
8467 Text [ en-US ] = "The text to be inserted." ;
8470 // -=*# Resource for function FEST #*=-
8471 Resource SC_OPCODE_FIXED
8473 String 1 // Description
8475 Text [ en-US ] = "Formats a number with a fixed number of places after the decimal point and thousands separator." ;
8480 ID_FUNCTION_GRP_TEXT;
8481 U2S( HID_FUNC_FEST );
8485 String 2 // Name of Parameter 1
8487 Text [ en-US ] = "number" ;
8489 String 3 // Description of Parameter 1
8491 Text [ en-US ] = "The number to be formatted." ;
8493 String 4 // Name of Parameter 2
8495 Text [ en-US ] = "Decimals" ;
8497 String 5 // Description of Parameter 2
8499 Text [ en-US ] = "Decimal places. The number of fixed decimal places that are to be displayed." ;
8501 String 6 // Name of Parameter 3
8503 Text [ en-US ] = "No thousands separators" ;
8505 String 7 // Description of Parameter 3
8507 Text [ en-US ] = "No thousands separator. True value, if existing and TRUE (unequal to 0), no thousands separators are set." ;
8510 // -=*# Resource for function LÄNGE #*=-
8511 Resource SC_OPCODE_LEN
8513 String 1 // Description
8515 Text [ en-US ] = "Calculates length of a text string." ;
8520 ID_FUNCTION_GRP_TEXT;
8521 U2S( HID_FUNC_LAENGE );
8525 String 2 // Name of Parameter 1
8527 Text [ en-US ] = "text" ;
8529 String 3 // Description of Parameter 1
8531 Text [ en-US ] = "The text in which the length is to be determined." ;
8534 // -=*# Resource for function LINKS #*=-
8535 Resource SC_OPCODE_LEFT
8537 String 1 // Description
8539 Text [ en-US ] = "Returns the first character or characters of a text." ;
8544 ID_FUNCTION_GRP_TEXT;
8545 U2S( HID_FUNC_LINKS );
8549 String 2 // Name of Parameter 1
8551 Text [ en-US ] = "text" ;
8553 String 3 // Description of Parameter 1
8555 Text [ en-US ] = "The text where the initial partial words are to be determined." ;
8557 String 4 // Name of Parameter 2
8559 Text [ en-US ] = "number" ;
8561 String 5 // Description of Parameter 2
8563 Text [ en-US ] = "The number of characters for the start text." ;
8566 // -=*# Resource for function RECHTS #*=-
8567 Resource SC_OPCODE_RIGHT
8569 String 1 // Description
8571 Text [ en-US ] = "Returns the last character or characters of a text." ;
8576 ID_FUNCTION_GRP_TEXT;
8577 U2S( HID_FUNC_RECHTS );
8581 String 2 // Name of Parameter 1
8583 Text [ en-US ] = "text" ;
8585 String 3 // Description of Parameter 1
8587 Text [ en-US ] = "The text in which the end partial words are to be determined." ;
8589 String 4 // Name of Parameter 2
8591 Text [ en-US ] = "number" ;
8593 String 5 // Description of Parameter 2
8595 Text [ en-US ] = "The number of characters for the end text." ;
8598 // -=*# Resource for function TEIL #*=-
8599 Resource SC_OPCODE_MID
8601 String 1 // Description
8603 Text [ en-US ] = "Returns a partial text string of a text." ;
8608 ID_FUNCTION_GRP_TEXT;
8609 U2S( HID_FUNC_TEIL );
8613 String 2 // Name of Parameter 1
8615 Text [ en-US ] = "text" ;
8617 String 3 // Description of Parameter 1
8619 Text [ en-US ] = "The text in which partial words are to be determined." ;
8621 String 4 // Name of Parameter 2
8623 Text [ en-US ] = "start" ;
8625 String 5 // Description of Parameter 2
8627 Text [ en-US ] = "The position from which the part word is to be determined." ;
8629 String 6 // Name of Parameter 3
8631 Text [ en-US ] = "number" ;
8633 String 7 // Description of Parameter 3
8635 Text [ en-US ] = "The number of characters for the text." ;
8638 // -=*# Resource for function WIEDERHOLEN #*=-
8639 Resource SC_OPCODE_REPT
8641 String 1 // Description
8643 Text [ en-US ] = "Repeats text a given number of times." ;
8648 ID_FUNCTION_GRP_TEXT;
8649 U2S( HID_FUNC_WIEDERHOLEN );
8653 String 2 // Name of Parameter 1
8655 Text [ en-US ] = "text" ;
8657 String 3 // Description of Parameter 1
8659 Text [ en-US ] = "The text to be repeated." ;
8661 String 4 // Name of Parameter 2
8663 Text [ en-US ] = "number" ;
8665 String 5 // Description of Parameter 2
8667 Text [ en-US ] = "The number of times the text is to be repeated." ;
8670 // -=*# Resource for function WECHSELN #*=-
8671 Resource SC_OPCODE_SUBSTITUTE
8673 String 1 // Description
8675 Text [ en-US ] = "Substitutes new text for old text in a string." ;
8680 ID_FUNCTION_GRP_TEXT;
8681 U2S( HID_FUNC_WECHSELN );
8685 String 2 // Name of Parameter 1
8687 Text [ en-US ] = "text" ;
8689 String 3 // Description of Parameter 1
8691 Text [ en-US ] = "The text in which partial words are to be replaced." ;
8693 String 4 // Name of Parameter 2
8695 Text [ en-US ] = "search_text" ;
8697 String 5 // Description of Parameter 2
8699 Text [ en-US ] = "The partial string to be (repeatedly) replaced." ;
8701 String 6 // Name of Parameter 3
8703 Text [ en-US ] = "new text" ;
8705 String 7 // Description of Parameter 3
8707 Text [ en-US ] = "The text which is to replace the text string." ;
8709 String 8 // Name of Parameter 4
8711 Text [ en-US ] = "occurrence" ;
8713 String 9 // Description of Parameter 4
8715 Text [ en-US ] = "Which occurence of the old text is to be replaced." ;
8718 // -=*# Resource for function BASIS #*=-
8719 Resource SC_OPCODE_BASE
8721 String 1 // Description
8723 Text [ en-US ] = "Converts a positive integer to text from a number system to the base defined." ;
8728 ID_FUNCTION_GRP_TEXT;
8729 U2S( HID_FUNC_BASIS );
8733 String 2 // Name of Parameter 1
8735 Text [ en-US ] = "number" ;
8737 String 3 // Description of Parameter 1
8739 Text [ en-US ] = "The number to be converted." ;
8741 String 4 // Name of Parameter 2
8743 Text [ en-US ] = "radix" ;
8745 String 5 // Description of Parameter 2
8747 Text [ en-US ] = "The base number for conversion must be in the range 2 - 36." ;
8749 String 6 // Name of Parameter 3
8751 Text [ en-US ] = "Minimum length" ;
8753 String 7 // Description of Parameter 3
8755 Text [ en-US ] = "If the text is shorter than the specified length, zeros are added to the left of the string." ;
8758 // -=*# Resource for function DEZIMAL #*=-
8759 Resource SC_OPCODE_DECIMAL
8761 String 1 // Description
8763 Text [ en-US ] = "Converts a text of a specified number system to a positive integer in the base given." ;
8768 ID_FUNCTION_GRP_TEXT;
8769 U2S( HID_FUNC_DEZIMAL );
8773 String 2 // Name of Parameter 1
8775 Text [ en-US ] = "text" ;
8777 String 3 // Description of Parameter 1
8779 Text [ en-US ] = "The text to be converted." ;
8781 String 4 // Name of Parameter 2
8783 Text [ en-US ] = "radix" ;
8785 String 5 // Description of Parameter 2
8787 Text [ en-US ] = "The base number for conversion must be in the range 2 - 36." ;
8790 // -=*# Resource for function CONVERT #*=-
8791 Resource SC_OPCODE_CONVERT
8793 String 1 // Description
8795 Text [ en-US ] = "Converts a value according to a conversion table in the configuration (calc.xcu).";
8800 ID_FUNCTION_GRP_MATH;
8801 U2S( HID_FUNC_UMRECHNEN );
8805 String 2 // Name of Parameter 1
8807 Text [ en-US ] = "value" ;
8809 String 3 // Description of Parameter 1
8811 Text [ en-US ] = "The value to be converted.";
8813 String 4 // Name of Parameter 2
8815 Text [ en-US ] = "text" ;
8817 String 5 // Description of Parameter 2
8819 Text [ en-US ] = "Unit from which something is converted, case-sensitive.";
8821 String 6 // Name of Parameter 3
8823 Text [ en-US ] = "text" ;
8825 String 7 // Description of Parameter 3
8827 Text [ en-US ] = "Unit into which something is converted, case-sensitive.";
8830 // -=*# Resource for function ROEMISCH #*=-
8831 Resource SC_OPCODE_ROMAN
8833 String 1 // Description
8835 Text [ en-US ] = "Converts a number to a Roman numeral.";
8840 ID_FUNCTION_GRP_TEXT;
8841 U2S( HID_FUNC_ROEMISCH );
8845 String 2 // Name of Parameter 1
8847 Text [ en-US ] = "Number";
8849 String 3 // Description of Parameter 1
8851 Text [ en-US ] = "The number to be converted to a Roman numeral must be in the 0 - 3999 range.";
8853 String 4 // Name of Parameter 2
8855 Text [ en-US ] = "Mode";
8857 String 5 // Description of Parameter 2
8859 Text [ en-US ] = "The more this value increases, the more the Roman numeral is simplified. The value must be in the 0 - 4 range.";
8862 // -=*# Resource for function ARABISCH #*=-
8863 Resource SC_OPCODE_ARABIC
8865 String 1 // Description
8867 Text [ en-US ] = "Calculates the value of a Roman numeral.";
8872 ID_FUNCTION_GRP_TEXT;
8873 U2S( HID_FUNC_ARABISCH );
8877 String 2 // Name of Parameter 1
8879 Text [ en-US ] = "Text";
8881 String 3 // Description of Parameter 1
8883 Text [ en-US ] = "The text that represents a Roman numeral.";
8886 Resource SC_OPCODE_INFO
8890 Text [ en-US ] = "Returns information about the environment.";
8895 ID_FUNCTION_GRP_INFO;
8896 U2S( HID_FUNC_INFO );
8902 Text [ en-US ] = "Text";
8906 Text [ en-US ] = "Can be \"osversion\", \"system\", \"release\", \"numfile\", and \"recalc\".";
8909 Resource SC_OPCODE_UNICODE
8911 String 1 // Description
8913 Text [ en-US ] = "Returns the numeric code for the first Unicode character in a text string." ;
8918 ID_FUNCTION_GRP_TEXT;
8919 U2S( HID_FUNC_UNICODE );
8923 String 2 // Name of Parameter 1
8925 Text [ en-US ] = "text" ;
8927 String 3 // Description of Parameter 1
8929 Text [ en-US ] = "This is the text for which the code of the first character is to be found." ;
8932 Resource SC_OPCODE_UNICHAR
8934 String 1 // Description
8936 Text [ en-US ] = "Converts a code number into a Unicode character or letter." ;
8941 ID_FUNCTION_GRP_TEXT;
8942 U2S( HID_FUNC_UNICHAR );
8946 String 2 // Name of Parameter 1
8948 Text [ en-US ] = "number" ;
8950 String 3 // Description of Parameter 1
8952 Text [ en-US ] = "The code value for the character." ;
8955 Resource SC_OPCODE_EUROCONVERT
8957 String 1 // Description
8959 Text [ en-US ] = "Converts a value from one to another Euro currency.";
8964 ID_FUNCTION_GRP_MATH;
8965 U2S( HID_FUNC_EUROCONVERT );
8969 String 2 // Name of Parameter 1
8971 Text [ en-US ] = "value" ;
8973 String 3 // Description of Parameter 1
8975 Text [ en-US ] = "The value to be converted.";
8977 String 4 // Name of Parameter 2
8979 Text [ en-US ] = "from_currency" ;
8981 String 5 // Description of Parameter 2
8983 Text [ en-US ] = "ISO 4217 code of the currency from which is converted, case-sensitive.";
8985 String 6 // Name of Parameter 3
8987 Text [ en-US ] = "to_currency" ;
8989 String 7 // Description of Parameter 3
8991 Text [ en-US ] = "ISO 4217 code of the currency into which is converted, case-sensitive.";
8993 String 8 // Name of Parameter 4
8995 Text [ en-US ] = "full_precision" ;
8997 String 9 // Description of Parameter 4
8999 Text [ en-US ] = "If omitted or 0 or FALSE, the result is rounded to the decimals of to_currency. Else the result is not rounded.";
9001 String 10 // Name of Parameter 5
9003 Text [ en-US ] = "triangulation_precision" ;
9005 String 11 // Description of Parameter 5
9007 Text [ en-US ] = "If given and >=3, the intermediate result of a triangular conversion is rounded to that precision. If omitted, the result is not rounded.";
9008 Text [ x-comment ] = "This description uses almost all available space in the dialog, make sure translations fit in size." ;
9011 Resource SC_OPCODE_NUMBERVALUE
9013 String 1 // Description
9015 Text [ en-US ] = "Converts text to a number, in a locale-independent way." ;
9019 1; // TODO: implementation and unsuppress
9020 ID_FUNCTION_GRP_TEXT;
9021 U2S( HID_FUNC_NUMBERVALUE );
9025 String 2 // Name of Parameter 1
9027 Text [ en-US ] = "text" ;
9029 String 3 // Description of Parameter 1
9031 Text [ en-US ] = "The text to be converted to a number." ;
9033 String 4 // Name of Parameter 2
9035 Text [ en-US ] = "decimal_point" ;
9037 String 5 // Description of Parameter 2
9039 Text [ en-US ] = "Defines the character used as the decimal point." ;