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 ] = "Raises a number to the power of another." ;
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 number that is to be raised to the power of another." ;
2712 String 4 // Name of Parameter 2
2714 Text [ en-US ] = "Power" ;
2716 String 5 // Description of Parameter 2
2718 Text [ en-US ] = "The power by which the number is to be raised." ;
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 ] = "Cumulated. C=0 calculates the density function, C=1 the distribution." ;
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 ] = "Mean value. The mean value of the log normal distribution." ;
5876 String 6 // Name of Parameter 3
5878 Text [ en-US ] = "STDEV" ;
5880 String 7 // Description of Parameter 3
5882 Text [ en-US ] = "Standard deviation. The standard deviation of the log normal distribution." ;
5885 // -=*# Resource for function LOGINV #*=-
5886 Resource SC_OPCODE_LOG_INV
5888 String 1 // Description
5890 Text [ en-US ] = "Values of the inverse of the lognormal distribution." ;
5895 ID_FUNCTION_GRP_STATISTIC;
5896 U2S( HID_FUNC_LOGINV );
5900 String 2 // Name of Parameter 1
5902 Text [ en-US ] = "number" ;
5904 String 3 // Description of Parameter 1
5906 Text [ en-US ] = "The probability value for which the inverse log normal distribution is to be calculated." ;
5908 String 4 // Name of Parameter 2
5910 Text [ en-US ] = "mean" ;
5912 String 5 // Description of Parameter 2
5914 Text [ en-US ] = "Mean value. The mean value of the log normal distribution." ;
5916 String 6 // Name of Parameter 3
5918 Text [ en-US ] = "STDEV" ;
5920 String 7 // Description of Parameter 3
5922 Text [ en-US ] = "Standard deviation. The standard deviation of the log normal distribution." ;
5925 // -=*# Resource for function EXPONVERT #*=-
5926 Resource SC_OPCODE_EXP_DIST
5928 String 1 // Description
5930 Text [ en-US ] = "Values of the exponential distribution." ;
5935 ID_FUNCTION_GRP_STATISTIC;
5936 U2S( HID_FUNC_EXPONVERT );
5940 String 2 // Name of Parameter 1
5942 Text [ en-US ] = "Number" ;
5944 String 3 // Description of Parameter 1
5946 Text [ en-US ] = "The value to which the exponential distribution is to be calculated." ;
5948 String 4 // Name of Parameter 2
5950 Text [ en-US ] = "lambda" ;
5952 String 5 // Description of Parameter 2
5954 Text [ en-US ] = "The parameters of the exponential distribution." ;
5956 String 6 // Name of Parameter 3
5958 Text [ en-US ] = "C" ;
5960 String 7 // Description of Parameter 3
5962 Text [ en-US ] = "Cumulated. C=0 calculates the density function, C=1 the distribution." ;
5965 // -=*# Resource for function GAMMAVERT #*=-
5966 Resource SC_OPCODE_GAMMA_DIST
5968 String 1 // Description
5970 Text [ en-US ] = "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution." ;
5975 ID_FUNCTION_GRP_STATISTIC;
5976 U2S( HID_FUNC_GAMMAVERT );
5980 String 2 // Name of Parameter 1
5982 Text [ en-US ] = "Number" ;
5984 String 3 // Description of Parameter 1
5986 Text [ en-US ] = "The value for which the gamma distribution is to be calculated." ;
5988 String 4 // Name of Parameter 2
5990 Text [ en-US ] = "alpha" ;
5992 String 5 // Description of Parameter 2
5994 Text [ en-US ] = "The Alpha parameter of the Gamma distribution." ;
5996 String 6 // Name of Parameter 3
5998 Text [ en-US ] = "beta" ;
6000 String 7 // Description of Parameter 3
6002 Text [ en-US ] = "The Beta parameter of the Gamma distribution." ;
6004 String 8 // Name of Parameter 4
6006 Text [ en-US ] = "Cumulative" ;
6008 String 9 // Description of Parameter 4
6010 Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
6013 // -=*# Resource for function GAMMAINV #*=-
6014 Resource SC_OPCODE_GAMMA_INV
6016 String 1 // Description
6018 Text [ en-US ] = "Values of the inverse gamma distribution." ;
6023 ID_FUNCTION_GRP_STATISTIC;
6024 U2S( HID_FUNC_GAMMAINV );
6028 String 2 // Name of Parameter 1
6030 Text [ en-US ] = "Number" ;
6032 String 3 // Description of Parameter 1
6034 Text [ en-US ] = "The probability value for which the inverse gamma distribution is to be calculated." ;
6036 String 4 // Name of Parameter 2
6038 Text [ en-US ] = "alpha" ;
6040 String 5 // Description of Parameter 2
6042 Text [ en-US ] = "The Alpha (shape) parameter of the Gamma distribution." ;
6044 String 6 // Name of Parameter 3
6046 Text [ en-US ] = "beta" ;
6048 String 7 // Description of Parameter 3
6050 Text [ en-US ] = "The Beta (scale) parameter of the Gamma distribution." ;
6053 // -=*# Resource for function GAMMALN #*=-
6054 Resource SC_OPCODE_GAMMA_LN
6056 String 1 // Description
6058 Text [ en-US ] = "Returns the natural logarithm of the gamma function." ;
6063 ID_FUNCTION_GRP_STATISTIC;
6064 U2S( HID_FUNC_GAMMALN );
6068 String 2 // Name of Parameter 1
6070 Text [ en-US ] = "Number" ;
6072 String 3 // Description of Parameter 1
6074 Text [ en-US ] = "The value for which the natural logarithm of the gamma function is to be calculated." ;
6078 // -=*# Resource for function GAMMA #*=-
6079 Resource SC_OPCODE_GAMMA
6081 String 1 // Description
6083 Text [ en-US ] = "Returns the value of the Gamma function." ;
6088 ID_FUNCTION_GRP_STATISTIC;
6089 U2S( HID_FUNC_GAMMA );
6093 String 2 // Name of Parameter 1
6095 Text [ en-US ] = "Number" ;
6097 String 3 // Description of Parameter 1
6099 Text [ en-US ] = "The value for which the Gamma function is to be calculated." ;
6103 // -=*# Resource for function BETAVERT #*=-
6104 Resource SC_OPCODE_BETA_DIST
6106 String 1 // Description
6108 Text [ en-US ] = "Values of the beta distribution." ;
6113 ID_FUNCTION_GRP_STATISTIC;
6114 U2S( HID_FUNC_BETAVERT );
6115 6; 0; 0; 0; 1; 1; 1;
6118 String 2 // Name of Parameter 1
6120 Text [ en-US ] = "number" ;
6122 String 3 // Description of Parameter 1
6124 Text [ en-US ] = "The value for which the beta distribution is to be calculated." ;
6126 String 4 // Name of Parameter 2
6128 Text [ en-US ] = "alpha" ;
6130 String 5 // Description of Parameter 2
6132 Text [ en-US ] = "The Alpha parameter of the Beta distribution." ;
6134 String 6 // Name of Parameter 3
6136 Text [ en-US ] = "beta" ;
6138 String 7 // Description of Parameter 3
6140 Text [ en-US ] = "The Beta parameter of the Beta distribution." ;
6142 String 8 // Name of Parameter 4
6144 Text [ en-US ] = "Start" ;
6146 String 9 // Description of Parameter 4
6148 Text [ en-US ] = "The starting value for the value interval of the distribution." ;
6150 String 10 // Name of Parameter 5
6152 Text [ en-US ] = "End" ;
6154 String 11 // Description of Parameter 5
6156 Text [ en-US ] = "The final value for the value interval of the distribution." ;
6158 String 12 // Name of Parameter 6
6160 Text [en-US ] = "Cumulative" ;
6162 String 13 // Description of Parameter 6
6164 Text [ en-US ] = "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function.";
6167 // -=*# Resource for function BETAINV #*=-
6168 Resource SC_OPCODE_BETA_INV
6170 String 1 // Description
6172 Text [ en-US ] = "Values of the inverse beta distribution." ;
6177 ID_FUNCTION_GRP_STATISTIC;
6178 U2S( HID_FUNC_BETAINV );
6182 String 2 // Name of Parameter 1
6184 Text [ en-US ] = "number" ;
6186 String 3 // Description of Parameter 1
6188 Text [ en-US ] = "The probability value for which the inverse beta distribution is to be calculated." ;
6190 String 4 // Name of Parameter 2
6192 Text [ en-US ] = "alpha" ;
6194 String 5 // Description of Parameter 2
6196 Text [ en-US ] = "The Alpha parameter of the Beta distribution." ;
6198 String 6 // Name of Parameter 3
6200 Text [ en-US ] = "beta" ;
6202 String 7 // Description of Parameter 3
6204 Text [ en-US ] = "The Beta parameter of the Beta distribution." ;
6206 String 8 // Name of Parameter 4
6208 Text [ en-US ] = "Start" ;
6210 String 9 // Description of Parameter 4
6212 Text [ en-US ] = "The starting value for the value interval of the distribution." ;
6214 String 10 // Name of Parameter 5
6216 Text [ en-US ] = "End" ;
6218 String 11 // Description of Parameter 5
6220 Text [ en-US ] = "The final value for the value interval of the distribution." ;
6223 // -=*# Resource for function WEIBULL #*=-
6224 Resource SC_OPCODE_WEIBULL
6226 String 1 // Description
6228 Text [ en-US ] = "Returns the values of the Weibull distribution." ;
6233 ID_FUNCTION_GRP_STATISTIC;
6234 U2S( HID_FUNC_WEIBULL );
6238 String 2 // Name of Parameter 1
6240 Text [ en-US ] = "Number" ;
6242 String 3 // Description of Parameter 1
6244 Text [ en-US ] = "The value for which the Weibull distribution is to be calculated." ;
6246 String 4 // Name of Parameter 2
6248 Text [ en-US ] = "Alpha" ;
6250 String 5 // Description of Parameter 2
6252 Text [ en-US ] = "The Alpha parameter of the Weibull distribution." ;
6254 String 6 // Name of Parameter 3
6256 Text [ en-US ] = "beta" ;
6258 String 7 // Description of Parameter 3
6260 Text [ en-US ] = "The Beta parameter of the Weibull distribution." ;
6262 String 8 // Name of Parameter 4
6264 Text [ en-US ] = "C" ;
6266 String 9 // Description of Parameter 4
6268 Text [ en-US ] = "Cumulated. C=0 calculates the density function, C=1 the distribution." ;
6271 // -=*# Resource for function HYPGEOMVERT #*=-
6272 Resource SC_OPCODE_HYP_GEOM_DIST
6274 String 1 // Description
6276 Text [ en-US ] = "Values of the hypergeometric distribution." ;
6281 ID_FUNCTION_GRP_STATISTIC;
6282 U2S( HID_FUNC_HYPGEOMVERT );
6286 String 2 // Name of Parameter 1
6288 Text [ en-US ] = "X" ;
6290 String 3 // Description of Parameter 1
6292 Text [ en-US ] = "The number of successes in the sample." ;
6294 String 4 // Name of Parameter 2
6296 Text [ en-US ] = "n_sample" ;
6298 String 5 // Description of Parameter 2
6300 Text [ en-US ] = "The size of the sample." ;
6302 String 6 // Name of Parameter 3
6304 Text [ en-US ] = "successes" ;
6306 String 7 // Description of Parameter 3
6308 Text [ en-US ] = "The number of successes in the population." ;
6310 String 8 // Name of Parameter 4
6312 Text [ en-US ] = "n_population" ;
6314 String 9 // Description of Parameter 4
6316 Text [ en-US ] = "The population size." ;
6319 // -=*# Resource for function TVERT #*=-
6320 Resource SC_OPCODE_T_DIST
6322 String 1 // Description
6324 Text [ en-US ] = "Returns the t-distribution." ;
6329 ID_FUNCTION_GRP_STATISTIC;
6330 U2S( HID_FUNC_TVERT );
6334 String 2 // Name of Parameter 1
6336 Text [ en-US ] = "Number" ;
6338 String 3 // Description of Parameter 1
6340 Text [ en-US ] = "The value for which the T distribution is to be calculated." ;
6342 String 4 // Name of Parameter 2
6344 Text [ en-US ] = "degrees_freedom" ;
6346 String 5 // Description of Parameter 2
6348 Text [ en-US ] = "The degrees of freedom of the T distribution." ;
6350 String 6 // Name of Parameter 3
6352 Text [ en-US ] = "mode" ;
6354 String 7 // Description of Parameter 3
6356 Text [ en-US ] = "Mode = 1calculates the one-tailed test, 2 = two-tailed distribution." ;
6359 // -=*# Resource for function TINV #*=-
6360 Resource SC_OPCODE_T_INV
6362 String 1 // Description
6364 Text [ en-US ] = "Values of the inverse t-distribution." ;
6369 ID_FUNCTION_GRP_STATISTIC;
6370 U2S( HID_FUNC_TINV );
6374 String 2 // Name of Parameter 1
6376 Text [ en-US ] = "number" ;
6378 String 3 // Description of Parameter 1
6380 Text [ en-US ] = "The probability value for which the inverse T distribution is to be calculated." ;
6382 String 4 // Name of Parameter 2
6384 Text [ en-US ] = "degrees_freedom" ;
6386 String 5 // Description of Parameter 2
6388 Text [ en-US ] = "The degrees of freedom of the T distribution." ;
6391 // -=*# Resource for function FVERT #*=-
6392 Resource SC_OPCODE_F_DIST
6394 String 1 // Description
6396 Text [ en-US ] = "Values of the F probability distribution." ;
6401 ID_FUNCTION_GRP_STATISTIC;
6402 U2S( HID_FUNC_FVERT );
6406 String 2 // Name of Parameter 1
6408 Text [ en-US ] = "Number" ;
6410 String 3 // Description of Parameter 1
6412 Text [ en-US ] = "The value for which the F distribution is to be calculated." ;
6414 String 4 // Name of Parameter 2
6416 Text [ en-US ] = "degrees_freedom_1" ;
6418 String 5 // Description of Parameter 2
6420 Text [ en-US ] = "The degrees of freedom in the numerator of the F distribution." ;
6422 String 6 // Name of Parameter 3
6424 Text [ en-US ] = "degrees_freedom_2" ;
6426 String 7 // Description of Parameter 3
6428 Text [ en-US ] = "The degrees of freedom in the denominator of the F distribution." ;
6431 // -=*# Resource for function FINV #*=-
6432 Resource SC_OPCODE_F_INV
6434 String 1 // Description
6436 Text [ en-US ] = "Values of the inverse F distribution." ;
6441 ID_FUNCTION_GRP_STATISTIC;
6442 U2S( HID_FUNC_FINV );
6446 String 2 // Name of Parameter 1
6448 Text [ en-US ] = "number" ;
6450 String 3 // Description of Parameter 1
6452 Text [ en-US ] = "The probability value for which the inverse F distribution is to be calculated." ;
6454 String 4 // Name of Parameter 2
6456 Text [ en-US ] = "degrees_freedom_1" ;
6458 String 5 // Description of Parameter 2
6460 Text [ en-US ] = "The degrees of freedom in the numerator of the F distribution." ;
6462 String 6 // Name of Parameter 3
6464 Text [ en-US ] = "degrees_freedom_2" ;
6466 String 7 // Description of Parameter 3
6468 Text [ en-US ] = "The degrees of freedom in the denominator of the F distribution." ;
6471 // -=*# Resource for function CHIVERT #*=-
6472 Resource SC_OPCODE_CHI_DIST
6474 String 1 // Description
6476 Text [ en-US ] = "Returns the right-tail probability of the chi-square distribution." ;
6481 ID_FUNCTION_GRP_STATISTIC;
6482 U2S( HID_FUNC_CHIVERT );
6486 String 2 // Name of Parameter 1
6488 Text [ en-US ] = "Number" ;
6490 String 3 // Description of Parameter 1
6492 Text [ en-US ] = "The value for which the chi square distribution is to be calculated." ;
6494 String 4 // Name of Parameter 2
6496 Text [ en-US ] = "degrees_freedom" ;
6498 String 5 // Description of Parameter 2
6500 Text [ en-US ] = "The degrees of freedom of the chi square distribution." ;
6504 // -=*# Resource for function CHISQDIST #*=-
6505 Resource SC_OPCODE_CHISQ_DIST
6507 String 1 // Description
6509 Text [ en-US ] = "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." ;
6514 ID_FUNCTION_GRP_STATISTIC;
6515 U2S( HID_FUNC_CHISQDIST );
6519 String 2 // Name of Parameter 1
6521 Text [ en-US ] = "Number" ;
6523 String 3 // Description of Parameter 1
6525 Text [ en-US ] = "The value for which the probability density function or cumulative distribution function is to be calculated." ;
6527 String 4 // Name of Parameter 2
6529 Text [ en-US ] = "Degrees of Freedom" ;
6531 String 5 // Description of Parameter 2
6533 Text [ en-US ] = "The degrees of freedom of the chi-square distribution." ;
6535 String 6 // Name of Parameter 3
6537 Text [ en-US ] = "Cumulative" ;
6539 String 7 // Description of Parameter 3
6541 Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
6546 // -=*# Resource for function CHIINV #*=-
6547 Resource SC_OPCODE_CHI_INV
6549 String 1 // Description
6551 Text [ en-US ] = "Values of the inverse of CHIDIST(x; DegreesOfFreedom)." ;
6556 ID_FUNCTION_GRP_STATISTIC;
6557 U2S( HID_FUNC_CHIINV );
6561 String 2 // Name of Parameter 1
6563 Text [ en-US ] = "number" ;
6565 String 3 // Description of Parameter 1
6567 Text [ en-US ] = "The probability value for which the inverse chi square distribution is to be calculated." ;
6569 String 4 // Name of Parameter 2
6571 Text [ en-US ] = "degrees_freedom" ;
6573 String 5 // Description of Parameter 2
6575 Text [ en-US ] = "The degrees of freedom of the chi square distribution." ;
6579 // -=*# Resource for function CHISQINV #*=-
6580 Resource SC_OPCODE_CHISQ_INV
6582 String 1 // Description
6584 Text [ en-US ] = "Values of the inverse of CHISQDIST(x;DegreesOfFreedom;TRUE())." ;
6589 ID_FUNCTION_GRP_STATISTIC;
6590 U2S( HID_FUNC_CHISQINV );
6594 String 2 // Name of Parameter 1
6596 Text [ en-US ] = "Probability" ;
6598 String 3 // Description of Parameter 1
6600 Text [ en-US ] = "The probability value for which the inverse of the chi square distribution is to be calculated." ;
6602 String 4 // Name of Parameter 2
6604 Text [ en-US ] = "Degrees of Freedom" ;
6606 String 5 // Description of Parameter 2
6608 Text [ en-US ] = "The degrees of freedom of the chi square distribution." ;
6612 // -=*# Resource for function STANDARDISIERUNG #*=-
6613 Resource SC_OPCODE_STANDARD
6615 String 1 // Description
6617 Text [ en-US ] = "Converts a random variable to a normalized value." ;
6622 ID_FUNCTION_GRP_STATISTIC;
6623 U2S( HID_FUNC_STANDARDISIERUNG );
6627 String 2 // Name of Parameter 1
6629 Text [ en-US ] = "Number" ;
6631 String 3 // Description of Parameter 1
6633 Text [ en-US ] = "The value to be standardized." ;
6635 String 4 // Name of Parameter 2
6637 Text [ en-US ] = "mean" ;
6639 String 5 // Description of Parameter 2
6641 Text [ en-US ] = "The mean value used for moving." ;
6643 String 6 // Name of Parameter 3
6645 Text [ en-US ] = "STDEV" ;
6647 String 7 // Description of Parameter 3
6649 Text [ en-US ] = "The standard deviation used for scaling." ;
6652 // -=*# Resource for function VARIATIONEN #*=-
6653 Resource SC_OPCODE_VARIATIONEN
6655 String 1 // Description
6657 Text [ en-US ] = "Returns the number of permutations for a given number of elements without repetition." ;
6662 ID_FUNCTION_GRP_STATISTIC;
6663 U2S( HID_FUNC_VARIATIONEN );
6667 String 2 // Name of Parameter 1
6669 Text [ en-US ] = "Count_1" ;
6671 String 3 // Description of Parameter 1
6673 Text [ en-US ] = "The total number of elements." ;
6675 String 4 // Name of Parameter 2
6677 Text [ en-US ] = "Count_2" ;
6679 String 5 // Description of Parameter 2
6681 Text [ en-US ] = "The selection number taken from the elements." ;
6684 // -=*# Resource for function VARIATIONEN2 #*=-
6685 Resource SC_OPCODE_VARIATIONEN_2
6687 String 1 // Description
6689 Text [ en-US ] = "Returns the number of permutations for a given number of objects (repetition allowed)." ;
6694 ID_FUNCTION_GRP_STATISTIC;
6695 U2S( HID_FUNC_VARIATIONEN2 );
6699 String 2 // Name of Parameter 1
6701 Text [ en-US ] = "Count_1" ;
6703 String 3 // Description of Parameter 1
6705 Text [ en-US ] = "The total number of elements." ;
6707 String 4 // Name of Parameter 2
6709 Text [ en-US ] = "Count_2" ;
6711 String 5 // Description of Parameter 2
6713 Text [ en-US ] = "The selection number taken from the elements." ;
6716 // -=*# Resource for function KONFIDENZ #*=-
6717 Resource SC_OPCODE_CONFIDENCE
6719 String 1 // Description
6721 Text [ en-US ] = "Returns a (1 alpha) confidence interval for a normal distribution." ;
6726 ID_FUNCTION_GRP_STATISTIC;
6727 U2S( HID_FUNC_KONFIDENZ );
6731 String 2 // Name of Parameter 1
6733 Text [ en-US ] = "alpha" ;
6735 String 3 // Description of Parameter 1
6737 Text [ en-US ] = "The level of the confidence interval." ;
6739 String 4 // Name of Parameter 2
6741 Text [ en-US ] = "STDEV" ;
6743 String 5 // Description of Parameter 2
6745 Text [ en-US ] = "The standard deviation of the population." ;
6747 String 6 // Name of Parameter 3
6749 Text [ en-US ] = "size" ;
6751 String 7 // Description of Parameter 3
6753 Text [ en-US ] = "The size of the population." ;
6756 // -=*# Resource for function GTEST #*=-
6757 Resource SC_OPCODE_Z_TEST
6759 String 1 // Description
6761 Text [ en-US ] = "Returns the two-tailed P value of a z test." ;
6766 ID_FUNCTION_GRP_STATISTIC;
6767 U2S( HID_FUNC_GTEST );
6771 String 2 // Name of Parameter 1
6773 Text [ en-US ] = "data" ;
6775 String 3 // Description of Parameter 1
6777 Text [ en-US ] = "The data array." ;
6779 String 4 // Name of Parameter 2
6781 Text [ en-US ] = "Number" ;
6783 String 5 // Description of Parameter 2
6785 Text [ en-US ] = "The value to be tested." ;
6787 String 6 // Name of Parameter 3
6789 Text [ en-US ] = "sigma" ;
6791 String 7 // Description of Parameter 3
6793 Text [ en-US ] = "The standard deviation of the population." ;
6796 // -=*# Resource for function CHITEST #*=-
6797 Resource SC_OPCODE_CHI_TEST
6799 String 1 // Description
6801 Text [ en-US ] = "Returns the chi square independence test." ;
6806 ID_FUNCTION_GRP_STATISTIC;
6807 U2S( HID_FUNC_CHITEST );
6811 String 2 // Name of Parameter 1
6813 Text [ en-US ] = "Data_B" ;
6815 String 3 // Description of Parameter 1
6817 Text [ en-US ] = "The observed data array." ;
6819 String 4 // Name of Parameter 2
6821 Text [ en-US ] = "data_E" ;
6823 String 5 // Description of Parameter 2
6825 Text [ en-US ] = "The expected data array." ;
6828 // -=*# Resource for function FTEST #*=-
6829 Resource SC_OPCODE_F_TEST
6831 String 1 // Description
6833 Text [ en-US ] = "Calculates the F test." ;
6838 ID_FUNCTION_GRP_STATISTIC;
6839 U2S( HID_FUNC_FTEST );
6843 String 2 // Name of Parameter 1
6845 Text [ en-US ] = "data_1" ;
6847 String 3 // Description of Parameter 1
6849 Text [ en-US ] = "The first record array." ;
6851 String 4 // Name of Parameter 2
6853 Text [ en-US ] = "data_2" ;
6855 String 5 // Description of Parameter 2
6857 Text [ en-US ] = "The second record array." ;
6860 // -=*# Resource for function TTEST #*=-
6861 Resource SC_OPCODE_T_TEST
6863 String 1 // Description
6865 Text [ en-US ] = "Calculates the T test." ;
6870 ID_FUNCTION_GRP_STATISTIC;
6871 U2S( HID_FUNC_TTEST );
6875 String 2 // Name of Parameter 1
6877 Text [ en-US ] = "data_1" ;
6879 String 3 // Description of Parameter 1
6881 Text [ en-US ] = "The first record array." ;
6883 String 4 // Name of Parameter 2
6885 Text [ en-US ] = "data_2" ;
6887 String 5 // Description of Parameter 2
6889 Text [ en-US ] = "The second record array." ;
6891 String 6 // Name of Parameter 3
6893 Text [ en-US ] = "mode" ;
6895 String 7 // Description of Parameter 3
6897 Text [ en-US ] = "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution" ;
6899 String 8 // Name of Parameter 4
6901 Text [ en-US ] = "Type" ;
6903 String 9 // Description of Parameter 4
6905 Text [ en-US ] = "The type of the T test." ;
6908 // -=*# Resource for function BESTIMMTHEITSMASS #*=-
6909 Resource SC_OPCODE_RSQ
6911 String 1 // Description
6913 Text [ en-US ] = "Returns the square of the Pearson product moment correlation coefficient." ;
6918 ID_FUNCTION_GRP_STATISTIC;
6919 U2S( HID_FUNC_BESTIMMTHEITSMASS );
6923 String 2 // Name of Parameter 1
6925 Text [ en-US ] = "data_Y" ;
6927 String 3 // Description of Parameter 1
6929 Text [ en-US ] = "The Y data array." ;
6931 String 4 // Name of Parameter 2
6933 Text [ en-US ] = "data_X" ;
6935 String 5 // Description of Parameter 2
6937 Text [ en-US ] = "The X data array." ;
6940 // -=*# Resource for function ACHSENABSCHNITT #*=-
6941 Resource SC_OPCODE_INTERCEPT
6943 String 1 // Description
6945 Text [ en-US ] = "Returns the intercept of the linear regression line and the Y axis." ;
6950 ID_FUNCTION_GRP_STATISTIC;
6951 U2S( HID_FUNC_ACHSENABSCHNITT );
6955 String 2 // Name of Parameter 1
6957 Text [ en-US ] = "data_Y" ;
6959 String 3 // Description of Parameter 1
6961 Text [ en-US ] = "The Y data array." ;
6963 String 4 // Name of Parameter 2
6965 Text [ en-US ] = "data_X" ;
6967 String 5 // Description of Parameter 2
6969 Text [ en-US ] = "The X data array." ;
6972 // -=*# Resource for function STEIGUNG #*=-
6973 Resource SC_OPCODE_SLOPE
6975 String 1 // Description
6977 Text [ en-US ] = "Returns the slope of the linear regression line." ;
6982 ID_FUNCTION_GRP_STATISTIC;
6983 U2S( HID_FUNC_STEIGUNG );
6987 String 2 // Name of Parameter 1
6989 Text [ en-US ] = "data_Y" ;
6991 String 3 // Description of Parameter 1
6993 Text [ en-US ] = "The Y data array." ;
6995 String 4 // Name of Parameter 2
6997 Text [ en-US ] = "data_X" ;
6999 String 5 // Description of Parameter 2
7001 Text [ en-US ] = "The X data array." ;
7004 // -=*# Resource for function STFEHLERYX #*=-
7005 Resource SC_OPCODE_STEYX
7007 String 1 // Description
7009 Text [ en-US ] = "Returns the standard error of the linear regression." ;
7014 ID_FUNCTION_GRP_STATISTIC;
7015 U2S( HID_FUNC_STFEHLERYX );
7019 String 2 // Name of Parameter 1
7021 Text [ en-US ] = "data_Y" ;
7023 String 3 // Description of Parameter 1
7025 Text [ en-US ] = "The Y data array." ;
7027 String 4 // Name of Parameter 2
7029 Text [ en-US ] = "data_X" ;
7031 String 5 // Description of Parameter 2
7033 Text [ en-US ] = "The X data array." ;
7036 // -=*# Resource for function PEARSON #*=-
7037 Resource SC_OPCODE_PEARSON
7039 String 1 // Description
7041 Text [ en-US ] = "Returns the Pearson product moment correlation coefficient." ;
7046 ID_FUNCTION_GRP_STATISTIC;
7047 U2S( HID_FUNC_PEARSON );
7051 String 2 // Name of Parameter 1
7053 Text [ en-US ] = "Data_1" ;
7055 String 3 // Description of Parameter 1
7057 Text [ en-US ] = "The first record array." ;
7059 String 4 // Name of Parameter 2
7061 Text [ en-US ] = "Data_2" ;
7063 String 5 // Description of Parameter 2
7065 Text [ en-US ] = "The second record array." ;
7068 // -=*# Resource for function KORREL #*=-
7069 Resource SC_OPCODE_CORREL
7071 String 1 // Description
7073 Text [ en-US ] = "Returns the correlation coefficient." ;
7078 ID_FUNCTION_GRP_STATISTIC;
7079 U2S( HID_FUNC_KORREL );
7083 String 2 // Name of Parameter 1
7085 Text [ en-US ] = "Data_1" ;
7087 String 3 // Description of Parameter 1
7089 Text [ en-US ] = "The first record array." ;
7091 String 4 // Name of Parameter 2
7093 Text [ en-US ] = "Data_2" ;
7095 String 5 // Description of Parameter 2
7097 Text [ en-US ] = "The second record array." ;
7100 // -=*# Resource for function KOVAR #*=-
7101 Resource SC_OPCODE_COVAR
7103 String 1 // Description
7105 Text [ en-US ] = "Calculates the covariance." ;
7110 ID_FUNCTION_GRP_STATISTIC;
7111 U2S( HID_FUNC_KOVAR );
7115 String 2 // Name of Parameter 1
7117 Text [ en-US ] = "Data_1" ;
7119 String 3 // Description of Parameter 1
7121 Text [ en-US ] = "The first record array." ;
7123 String 4 // Name of Parameter 2
7125 Text [ en-US ] = "Data_2" ;
7127 String 5 // Description of Parameter 2
7129 Text [ en-US ] = "The second record array." ;
7132 // -=*# Resource for function SCHÄTZER #*=-
7133 Resource SC_OPCODE_FORECAST
7135 String 1 // Description
7137 Text [ en-US ] = "Returns a value along a linear regression" ;
7142 ID_FUNCTION_GRP_STATISTIC;
7143 U2S( HID_FUNC_SCHAETZER );
7147 String 2 // Name of Parameter 1
7149 Text [ en-US ] = "value" ;
7151 String 3 // Description of Parameter 1
7153 Text [ en-US ] = "The X value for which the Y value on the regression linear is to be calculated." ;
7155 String 4 // Name of Parameter 2
7157 Text [ en-US ] = "data_Y" ;
7159 String 5 // Description of Parameter 2
7161 Text [ en-US ] = "The Y data array." ;
7163 String 6 // Name of Parameter 3
7165 Text [ en-US ] = "data_X" ;
7167 String 7 // Description of Parameter 3
7169 Text [ en-US ] = "The X data array." ;
7172 // -=*# Resource for function ADRESSE #*=-
7173 Resource SC_OPCODE_ADDRESS
7175 String 1 // Description
7177 Text [ en-US ] = "Returns the reference to a cell as text." ;
7182 ID_FUNCTION_GRP_TABLE;
7183 U2S( HID_FUNC_ADRESSE );
7187 String 2 // Name of Parameter 1
7189 Text [ en-US ] = "row" ;
7191 String 3 // Description of Parameter 1
7193 Text [ en-US ] = "The row number of the cell." ;
7195 String 4 // Name of Parameter 2
7197 Text [ en-US ] = "column" ;
7199 String 5 // Description of Parameter 2
7201 Text [ en-US ] = "The column number of the cell." ;
7203 String 6 // Name of Parameter 3
7205 Text [ en-US ] = "ABS" ;
7207 String 7 // Description of Parameter 3
7209 Text [ en-US ] = "Specifies whether absolute or relative referencing is to be used." ;
7211 String 8 // Name of Parameter 4
7213 Text [ en-US ] = "A1" ;
7215 String 9 // Description of Parameter 4
7217 Text [ en-US ] = "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style." ;
7219 String 10 // Name of Parameter 5
7221 Text [ en-US ] = "sheet" ;
7222 Text [ x-comment ] = "previously to OOo3.0 this was String resource RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ADDRESS 8" ;
7224 String 11 // Description of Parameter 5
7226 Text [ en-US ] = "The spreadsheet name of the cell reference." ;
7227 Text [ x-comment ] = "previously to OOo3.0 this was String resource RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ADDRESS 9" ;
7230 // -=*# Resource for function BEREICHE #*=-
7231 Resource SC_OPCODE_AREAS
7233 String 1 // Description
7235 Text [ en-US ] = "Returns the number of individual ranges that belong to a (multiple) range." ;
7240 ID_FUNCTION_GRP_TABLE;
7241 U2S( HID_FUNC_BEREICHE );
7245 String 2 // Name of Parameter 1
7247 Text [ en-US ] = "reference" ;
7249 String 3 // Description of Parameter 1
7251 Text [ en-US ] = "The reference to a (multiple) range." ;
7254 // -=*# Resource for function WAHL #*=-
7255 Resource SC_OPCODE_CHOSE
7257 String 1 // Description
7259 Text [ en-US ] = "Selects a value from a list of up to 30 value arguments." ;
7264 ID_FUNCTION_GRP_TABLE;
7265 U2S( HID_FUNC_WAHL );
7269 String 2 // Name of Parameter 1
7271 Text [ en-US ] = "Index" ;
7273 String 3 // Description of Parameter 1
7275 Text [ en-US ] = "The index of the value (1..30) selected." ;
7277 String 4 // Name of Parameter 2
7279 Text [ en-US ] = "value " ;
7281 String 5 // Description of Parameter 2
7283 Text [ en-US ] = "Value 1, value 2,... The list of arguments from which a value is chosen." ;
7286 // -=*# Resource for function SPALTE #*=-
7287 Resource SC_OPCODE_COLUMN
7289 String 1 // Description
7291 Text [ en-US ] = "Returns the internal column number of a reference." ;
7296 ID_FUNCTION_GRP_TABLE;
7297 U2S( HID_FUNC_SPALTE );
7301 String 2 // Name of Parameter 1
7303 Text [ en-US ] = "reference" ;
7305 String 3 // Description of Parameter 1
7307 Text [ en-US ] = "The reference to a cell or a range." ;
7310 // -=*# Resource for function ZEILE #*=-
7311 Resource SC_OPCODE_ROW
7313 String 1 // Description
7315 Text [ en-US ] = "Defines the internal row number of a reference." ;
7320 ID_FUNCTION_GRP_TABLE;
7321 U2S( HID_FUNC_ZEILE );
7325 String 2 // Name of Parameter 1
7327 Text [ en-US ] = "reference" ;
7329 String 3 // Description of Parameter 1
7331 Text [ en-US ] = "The reference to a cell or a range." ;
7334 // -=*# Resource for function TABELLE #*=-
7335 Resource SC_OPCODE_TABLE
7337 String 1 // Description
7339 Text [ en-US ] = "Returns the internal sheet number of a reference or a string." ;
7344 ID_FUNCTION_GRP_TABLE;
7345 U2S( HID_FUNC_TABELLE );
7349 String 2 // Name of Parameter 1
7351 Text [ en-US ] = "reference" ;
7353 String 3 // Description of Parameter 1
7355 Text [ en-US ] = "The reference to a cell or a range or the character string of a sheet name." ;
7358 // -=*# Resource for function SPALTEN #*=-
7359 Resource SC_OPCODE_COLUMNS
7361 String 1 // Description
7363 Text [ en-US ] = "Returns the number of columns in an array or reference." ;
7368 ID_FUNCTION_GRP_TABLE;
7369 U2S( HID_FUNC_SPALTEN );
7373 String 2 // Name of Parameter 1
7375 Text [ en-US ] = "array" ;
7377 String 3 // Description of Parameter 1
7379 Text [ en-US ] = "The array (reference) for which the number of columns is to be determined." ;
7382 // -=*# Resource for function ZEILEN #*=-
7383 Resource SC_OPCODE_ROWS
7385 String 1 // Description
7387 Text [ en-US ] = "Returns the number of rows in a reference or array." ;
7392 ID_FUNCTION_GRP_TABLE;
7393 U2S( HID_FUNC_ZEILEN );
7397 String 2 // Name of Parameter 1
7399 Text [ en-US ] = "array" ;
7401 String 3 // Description of Parameter 1
7403 Text [ en-US ] = "The array (reference) for which the number of rows is to be determined." ;
7406 // -=*# Resource for function TABELLEN #*=-
7407 Resource SC_OPCODE_TABLES
7409 String 1 // Description
7411 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." ;
7416 ID_FUNCTION_GRP_TABLE;
7417 U2S( HID_FUNC_TABELLEN );
7421 String 2 // Name of Parameter 1
7423 Text [ en-US ] = "reference" ;
7425 String 3 // Description of Parameter 1
7427 Text [ en-US ] = "The reference to a cell or a range." ;
7430 // -=*# Resource for function WVERWEIS #*=-
7431 Resource SC_OPCODE_H_LOOKUP
7433 String 1 // Description
7435 Text [ en-US ] = "Horizontal search and reference to the cells located below." ;
7440 ID_FUNCTION_GRP_TABLE;
7441 U2S( HID_FUNC_WVERWEIS );
7445 String 2 // Name of Parameter 1
7447 Text [ en-US ] = "search_criteria" ;
7449 String 3 // Description of Parameter 1
7451 Text [ en-US ] = "The value to be found in the first row." ;
7453 String 4 // Name of Parameter 2
7455 Text [ en-US ] = "array" ;
7457 String 5 // Description of Parameter 2
7459 Text [ en-US ] = "The array or the range for the reference." ;
7461 String 6 // Name of Parameter 3
7463 Text [ en-US ] = "Index" ;
7465 String 7 // Description of Parameter 3
7467 Text [ en-US ] = "The row index in the array." ;
7469 String 8 // Name of Parameter 4
7471 Text [ en-US ] = "sorted" ;
7473 String 9 // Description of Parameter 4
7475 Text [ en-US ] = "If the value is TRUE or not given, the search row of the array must be sorted in ascending order." ;
7478 // -=*# Resource for function SVERWEIS #*=-
7479 Resource SC_OPCODE_V_LOOKUP
7481 String 1 // Description
7483 Text [ en-US ] = "Vertical search and reference to indicated cells." ;
7488 ID_FUNCTION_GRP_TABLE;
7489 U2S( HID_FUNC_SVERWEIS );
7493 String 2 // Name of Parameter 1
7495 Text [ en-US ] = "Search criterion" ;
7497 String 3 // Description of Parameter 1
7499 Text [ en-US ] = "The value to be found in the first column." ;
7501 String 4 // Name of Parameter 2
7503 Text [ en-US ] = "array" ;
7505 String 5 // Description of Parameter 2
7507 Text [ en-US ] = "The array or range for referencing." ;
7509 String 6 // Name of Parameter 3
7511 Text [ en-US ] = "Index" ;
7513 String 7 // Description of Parameter 3
7515 Text [ en-US ] = "Column index number in the array." ;
7517 String 8 // Name of Parameter 4
7519 Text [ en-US ] = "sort order" ;
7521 String 9 // Description of Parameter 4
7523 Text [ en-US ] = "if the value is TRUE or not given, the search column of the array must be sorted in ascending order." ;
7526 // -=*# Resource for function INDEX #*=-
7527 Resource SC_OPCODE_INDEX
7529 String 1 // Description
7531 Text [ en-US ] = "Returns a reference to a cell from a defined range." ;
7536 ID_FUNCTION_GRP_TABLE;
7537 U2S( HID_FUNC_INDEX );
7541 String 2 // Name of Parameter 1
7543 Text [ en-US ] = "reference" ;
7545 String 3 // Description of Parameter 1
7547 Text [ en-US ] = "The reference to a (multiple) range." ;
7549 String 4 // Name of Parameter 2
7551 Text [ en-US ] = "row" ;
7553 String 5 // Description of Parameter 2
7555 Text [ en-US ] = "The row in the range." ;
7557 String 6 // Name of Parameter 3
7559 Text [ en-US ] = "column" ;
7561 String 7 // Description of Parameter 3
7563 Text [ en-US ] = "The column in the range." ;
7565 String 8 // Name of Parameter 4
7567 Text [ en-US ] = "range" ;
7569 String 9 // Description of Parameter 4
7571 Text [ en-US ] = "The index of the subrange if referring to a multiple range." ;
7574 // -=*# Resource for function INDIREKT #*=-
7575 Resource SC_OPCODE_INDIRECT
7577 String 1 // Description
7579 Text [ en-US ] = "Returns the contents of a cell that is referenced in text form." ;
7584 ID_FUNCTION_GRP_TABLE;
7585 U2S( HID_FUNC_INDIREKT );
7589 String 2 // Name of Parameter 1
7591 Text [ en-US ] = "ref " ;
7593 String 3 // Description of Parameter 1
7595 Text [ en-US ] = "The cell whose contents are to be evaluated is to be referenced in text form (e.g. \"A1\")." ;
7597 String 4 // Name of Parameter 2
7599 Text [ en-US ] = "A1" ;
7601 String 5 // Description of Parameter 2
7603 Text [ en-US ] = "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style." ;
7606 // -=*# Resource for function VERWEIS #*=-
7607 Resource SC_OPCODE_LOOKUP
7609 String 1 // Description
7611 Text [ en-US ] = "Determines a value in a vector by comparison to values in another vector." ;
7616 ID_FUNCTION_GRP_TABLE;
7617 U2S( HID_FUNC_VERWEIS );
7621 String 2 // Name of Parameter 1
7623 Text [ en-US ] = "Search criterion" ;
7625 String 3 // Description of Parameter 1
7627 Text [ en-US ] = "The value to be used for comparison." ;
7629 String 4 // Name of Parameter 2
7631 Text [ en-US ] = "Search vector" ;
7633 String 5 // Description of Parameter 2
7635 Text [ en-US ] = "The vector (row or column) in which to search." ;
7637 String 6 // Name of Parameter 3
7639 Text [ en-US ] = "result_vector" ;
7641 String 7 // Description of Parameter 3
7643 Text [ en-US ] = "The vector (row or range) from which the value is to be determined." ;
7646 // -=*# Resource for function VERGLEICH #*=-
7647 Resource SC_OPCODE_MATCH
7649 String 1 // Description
7651 Text [ en-US ] = "Defines a position in a array after comparing values." ;
7656 ID_FUNCTION_GRP_TABLE;
7657 U2S( HID_FUNC_VERGLEICH );
7661 String 2 // Name of Parameter 1
7663 Text [ en-US ] = "Search criterion" ;
7665 String 3 // Description of Parameter 1
7667 Text [ en-US ] = "The value to be used for comparison." ;
7669 String 4 // Name of Parameter 2
7671 Text [ en-US ] = "lookup_array" ;
7673 String 5 // Description of Parameter 2
7675 Text [ en-US ] = "The array (range) in which the search is made." ;
7677 String 6 // Name of Parameter 3
7679 Text [ en-US ] = "Type" ;
7681 String 7 // Description of Parameter 3
7683 Text [ en-US ] = "Type can take the value 1, 0 or -1 and determines the criteria are to be used for comparison purposes." ;
7686 // -=*# Resource for function VERSCHIEBUNG #*=-
7687 Resource SC_OPCODE_OFFSET
7689 String 1 // Description
7691 Text [ en-US ] = "Returns a reference which has been moved in relation to the starting point." ;
7696 ID_FUNCTION_GRP_TABLE;
7697 U2S( HID_FUNC_VERSCHIEBUNG );
7701 String 2 // Name of Parameter 1
7703 Text [ en-US ] = "reference" ;
7705 String 3 // Description of Parameter 1
7707 Text [ en-US ] = "The reference (cell) from which to base the movement." ;
7709 String 4 // Name of Parameter 2
7711 Text [ en-US ] = "rows" ;
7713 String 5 // Description of Parameter 2
7715 Text [ en-US ] = "The number of rows to be moved either up or down." ;
7717 String 6 // Name of Parameter 3
7719 Text [ en-US ] = "columns" ;
7721 String 7 // Description of Parameter 3
7723 Text [ en-US ] = "The number of columns that are to be moved to the left or to the right." ;
7725 String 8 // Name of Parameter 4
7727 Text [ en-US ] = "height" ;
7729 String 9 // Description of Parameter 4
7731 Text [ en-US ] = "The number of rows of the moved reference." ;
7733 String 10 // Name of Parameter 5
7735 Text [ en-US ] = "width" ;
7737 String 11 // Description of Parameter 5
7739 Text [ en-US ] = "The number of columns in the moved reference." ;
7742 // -=*# Resource for function FEHLERTYP #*=-
7743 Resource SC_OPCODE_ERROR_TYPE
7745 String 1 // Description
7747 Text [ en-US ] = "Returns a number corresponding to an error type" ;
7752 ID_FUNCTION_GRP_TABLE;
7753 U2S( HID_FUNC_FEHLERTYP );
7757 String 2 // Name of Parameter 1
7759 Text [ en-US ] = "reference" ;
7761 String 3 // Description of Parameter 1
7763 Text [ en-US ] = "The reference (cell) in which the error occurred." ;
7766 // -=*# Resource for function VORLAGE #*=-
7767 Resource SC_OPCODE_STYLE
7769 String 1 // Description
7771 Text [ en-US ] = "Applies a Style to the formula cell." ;
7776 ID_FUNCTION_GRP_TABLE;
7777 U2S( HID_FUNC_VORLAGE );
7781 String 2 // Name of Parameter 1
7783 Text [ en-US ] = "Style" ;
7785 String 3 // Description of Parameter 1
7787 Text [ en-US ] = "The name of the Style to be applied." ;
7789 String 4 // Name of Parameter 2
7791 Text [ en-US ] = "Time" ;
7793 String 5 // Description of Parameter 2
7795 Text [ en-US ] = "The time (in seconds) that the Style is to remain valid." ;
7797 String 6 // Name of Parameter 3
7799 Text [ en-US ] = "Style2" ;
7801 String 7 // Description of Parameter 3
7803 Text [ en-US ] = "The Style to be applied after time expires." ;
7806 // -=*# Resource for function DDE #*=-
7807 Resource SC_OPCODE_DDE
7809 String 1 // Description
7811 Text [ en-US ] = "Result of a DDE link." ;
7816 ID_FUNCTION_GRP_TABLE;
7817 U2S( HID_FUNC_DDE );
7821 String 2 // Name of Parameter 1
7823 Text [ en-US ] = "server" ;
7825 String 3 // Description of Parameter 1
7827 Text [ en-US ] = "The name of the server application." ;
7829 String 4 // Name of Parameter 2
7831 Text [ en-US ] = "File" ;
7833 String 5 // Description of Parameter 2
7835 Text [ en-US ] = "The name of the file." ;
7837 String 6 // Name of Parameter 3
7839 Text [ en-US ] = "range" ;
7841 String 7 // Description of Parameter 3
7843 Text [ en-US ] = "The range from which data is to be taken." ;
7845 String 8 // Name of Parameter 4
7847 Text [ en-US ] = "mode" ;
7849 String 9 // Description of Parameter 4
7851 Text [ en-US ] = "Defines how data is to be converted to numbers." ;
7854 // -=*# Resource for function HYPERLINK #*=-
7855 Resource SC_OPCODE_HYPERLINK
7857 String 1 // Description
7859 Text [ en-US ] = "Hyperlink." ;
7864 ID_FUNCTION_GRP_TABLE;
7865 U2S( HID_FUNC_HYPERLINK );
7869 String 2 // Name of Parameter 1
7871 Text [ en-US ] = "URL " ;
7873 String 3 // Description of Parameter 1
7875 Text [ en-US ] = "URL";
7877 String 4 // Name of Parameter 2
7879 Text [ en-US ] = "CellText " ;
7881 String 5 // Description of Parameter 2
7883 Text [ en-US ] = "Cell Text";
7886 // -=*# Resource for function GETPIVOTDATA #*=-
7887 Resource SC_OPCODE_GET_PIVOT_DATA
7889 String 1 // Description
7891 Text [ en-US ] = "Extracts value(s) from a DataPilot table.";
7896 ID_FUNCTION_GRP_TABLE;
7897 U2S( HID_FUNC_GETPIVOTDATA );
7898 VAR_ARGS+2; 0; 0; 1;
7901 String 2 // Name of Parameter 1
7903 Text [ en-US ] = "Data Field";
7905 String 3 // Description of Parameter 1
7907 Text [ en-US ] = "The name of the data pilot field to extract.";
7909 String 4 // Name of Parameter 2
7911 Text [ en-US ] = "DataPilot";
7913 String 5 // Description of Parameter 2
7915 Text [ en-US ] = "A reference to a cell or range in the DataPilot table.";
7917 String 6 // Name of Parameter 3
7919 Text [ en-US ] = "Field Name / Item";
7921 String 7 // Description of Parameter 3
7923 Text [ en-US ] = "Field name/value pair to filter the target data.";
7926 // -=*# Resource for function BAHTTEXT #*=-
7927 Resource SC_OPCODE_BAHTTEXT
7929 String 1 // Description
7931 Text [ en-US ] = "Converts a number to text (Baht)." ;
7936 ID_FUNCTION_GRP_TEXT;
7937 U2S( HID_FUNC_BAHTTEXT );
7941 String 2 // Name of Parameter 1
7943 Text [ en-US ] = "Number" ;
7945 String 3 // Description of Parameter 1
7947 Text [ en-US ] = "The number to convert.";
7950 // -=*# Resource for function JIS #*=-
7951 Resource SC_OPCODE_JIS
7953 String 1 // Description
7955 Text [ en-US ] = "Converts half-width ASCII and katakana characters to full-width." ;
7960 ID_FUNCTION_GRP_TEXT;
7961 U2S( HID_FUNC_JIS );
7965 String 2 // Name of Parameter 1
7967 Text [ en-US ] = "text" ;
7969 String 3 // Description of Parameter 1
7971 Text [ en-US ] = "The text to convert.";
7974 // -=*# Resource for function ASC #*=-
7975 Resource SC_OPCODE_ASC
7977 String 1 // Description
7979 Text [ en-US ] = "Converts full-width ASCII and katakana characters to half-width." ;
7984 ID_FUNCTION_GRP_TEXT;
7985 U2S( HID_FUNC_ASC );
7989 String 2 // Name of Parameter 1
7991 Text [ en-US ] = "text" ;
7993 String 3 // Description of Parameter 1
7995 Text [ en-US ] = "The text to convert.";
7998 // -=*# Resource for function CODE #*=-
7999 Resource SC_OPCODE_CODE
8001 String 1 // Description
8003 Text [ en-US ] = "Returns a numeric code for the first character in a text string." ;
8008 ID_FUNCTION_GRP_TEXT;
8009 U2S( HID_FUNC_CODE );
8013 String 2 // Name of Parameter 1
8015 Text [ en-US ] = "text" ;
8017 String 3 // Description of Parameter 1
8019 Text [ en-US ] = "This is the text for which the code of the first character is to be found." ;
8022 // -=*# Resource for function DM #*=-
8023 Resource SC_OPCODE_CURRENCY
8025 String 1 // Description
8027 Text [ en-US ] = "Converts a number to text in currency format." ;
8032 ID_FUNCTION_GRP_TEXT;
8037 String 2 // Name of Parameter 1
8039 Text [ en-US ] = "value" ;
8041 String 3 // Description of Parameter 1
8043 Text [ en-US ] = "Value is a number, a reference to a cell containing a number or a formula that results in a number." ;
8045 String 4 // Name of Parameter 2
8047 Text [ en-US ] = "decimals" ;
8049 String 5 // Description of Parameter 2
8051 Text [ en-US ] = "Decimal places. Denotes the number of digits to the right of the decimal point." ;
8054 // -=*# Resource for function ZEICHEN #*=-
8055 Resource SC_OPCODE_CHAR
8057 String 1 // Description
8059 Text [ en-US ] = "Converts a code number into a character or letter." ;
8064 ID_FUNCTION_GRP_TEXT;
8065 U2S( HID_FUNC_ZEICHEN );
8069 String 2 // Name of Parameter 1
8071 Text [ en-US ] = "number" ;
8073 String 3 // Description of Parameter 1
8075 Text [ en-US ] = "The code value for the character." ;
8078 // -=*# Resource for function SÄUBERN #*=-
8079 Resource SC_OPCODE_CLEAN
8081 String 1 // Description
8083 Text [ en-US ] = "Removes all nonprintable characters from text." ;
8088 ID_FUNCTION_GRP_TEXT;
8089 U2S( HID_FUNC_SAEUBERN );
8093 String 2 // Name of Parameter 1
8095 Text [ en-US ] = "text" ;
8097 String 3 // Description of Parameter 1
8099 Text [ en-US ] = "The text from which nonprintable characters are to be removed." ;
8102 // -=*# Resource for function VERKETTEN #*=-
8103 Resource SC_OPCODE_CONCAT
8105 String 1 // Description
8107 Text [ en-US ] = "Combines several text items into one." ;
8112 ID_FUNCTION_GRP_TEXT;
8113 U2S( HID_FUNC_VERKETTEN );
8117 String 2 // Name of Parameter 1
8119 Text [ en-US ] = "text " ;
8121 String 3 // Description of Parameter 1
8123 Text [ en-US ] = "Text for the concatentation." ;
8126 // -=*# Resource for function IDENTISCH #*=-
8127 Resource SC_OPCODE_EXACT
8129 String 1 // Description
8131 Text [ en-US ] = "Specifies whether two texts are identical." ;
8136 ID_FUNCTION_GRP_TEXT;
8137 U2S( HID_FUNC_IDENTISCH );
8141 String 2 // Name of Parameter 1
8143 Text [ en-US ] = "text_1" ;
8145 String 3 // Description of Parameter 1
8147 Text [ en-US ] = "The first text to be used for comparing texts." ;
8149 String 4 // Name of Parameter 2
8151 Text [ en-US ] = "text_2" ;
8153 String 5 // Description of Parameter 2
8155 Text [ en-US ] = "The second text for comparing texts." ;
8158 // -=*# Resource for function FINDEN #*=-
8159 Resource SC_OPCODE_FIND
8161 String 1 // Description
8163 Text [ en-US ] = "Looks for a string of text within another (case sensitive)" ;
8168 ID_FUNCTION_GRP_TEXT;
8169 U2S( HID_FUNC_FINDEN );
8173 String 2 // Name of Parameter 1
8175 Text [ en-US ] = "find_text" ;
8177 String 3 // Description of Parameter 1
8179 Text [ en-US ] = "The text to be found." ;
8181 String 4 // Name of Parameter 2
8183 Text [ en-US ] = "text" ;
8185 String 5 // Description of Parameter 2
8187 Text [ en-US ] = "The text in which a search is to be made." ;
8189 String 6 // Name of Parameter 3
8191 Text [ en-US ] = "position" ;
8193 String 7 // Description of Parameter 3
8195 Text [ en-US ] = "The position in the text from which the search starts." ;
8198 // -=*# Resource for function SUCHEN #*=-
8199 Resource SC_OPCODE_SEARCH
8201 String 1 // Description
8203 Text [ en-US ] = "Looks for one text value within another (not case-sensitive)." ;
8208 ID_FUNCTION_GRP_TEXT;
8209 U2S( HID_FUNC_SUCHEN );
8213 String 2 // Name of Parameter 1
8215 Text [ en-US ] = "find_text" ;
8217 String 3 // Description of Parameter 1
8219 Text [ en-US ] = "The text to be found." ;
8221 String 4 // Name of Parameter 2
8223 Text [ en-US ] = "text" ;
8225 String 5 // Description of Parameter 2
8227 Text [ en-US ] = "The text in which a search is to be made." ;
8229 String 6 // Name of Parameter 3
8231 Text [ en-US ] = "position" ;
8233 String 7 // Description of Parameter 3
8235 Text [ en-US ] = "The position in the text where the search is started." ;
8238 // -=*# Resource for function GLÄTTEN #*=-
8239 Resource SC_OPCODE_TRIM
8241 String 1 // Description
8243 Text [ en-US ] = "Removes extra spaces from text." ;
8248 ID_FUNCTION_GRP_TEXT;
8249 U2S( HID_FUNC_GLAETTEN );
8253 String 2 // Name of Parameter 1
8255 Text [ en-US ] = "text" ;
8257 String 3 // Description of Parameter 1
8259 Text [ en-US ] = "The text in which extra spaces between words are to be deleted." ;
8262 // -=*# Resource for function GROSS2 #*=-
8263 Resource SC_OPCODE_PROPPER
8265 String 1 // Description
8267 Text [ en-US ] = "Capitalizes the first letter in all words." ;
8272 ID_FUNCTION_GRP_TEXT;
8273 U2S( HID_FUNC_GROSS2 );
8277 String 2 // Name of Parameter 1
8279 Text [ en-US ] = "text" ;
8281 String 3 // Description of Parameter 1
8283 Text [ en-US ] = "The text in which the beginning of words are to be replaced by capital letters." ;
8286 // -=*# Resource for function GROSS #*=-
8287 Resource SC_OPCODE_UPPER
8289 String 1 // Description
8291 Text [ en-US ] = "Converts text to uppercase." ;
8296 ID_FUNCTION_GRP_TEXT;
8297 U2S( HID_FUNC_GROSS );
8301 String 2 // Name of Parameter 1
8303 Text [ en-US ] = "text" ;
8305 String 3 // Description of Parameter 1
8307 Text [ en-US ] = "The text in which lower case letters are to be converted to capitals." ;
8310 // -=*# Resource for function KLEIN #*=-
8311 Resource SC_OPCODE_LOWER
8313 String 1 // Description
8315 Text [ en-US ] = "Converts text to lowercase." ;
8320 ID_FUNCTION_GRP_TEXT;
8321 U2S( HID_FUNC_KLEIN );
8325 String 2 // Name of Parameter 1
8327 Text [ en-US ] = "text" ;
8329 String 3 // Description of Parameter 1
8331 Text [ en-US ] = "The text in which capitals are converted to lower case letters." ;
8334 // -=*# Resource for function WERT #*=-
8335 Resource SC_OPCODE_VALUE
8337 String 1 // Description
8339 Text [ en-US ] = "Converts text to a number." ;
8344 ID_FUNCTION_GRP_TEXT;
8345 U2S( HID_FUNC_WERT );
8349 String 2 // Name of Parameter 1
8351 Text [ en-US ] = "text" ;
8353 String 3 // Description of Parameter 1
8355 Text [ en-US ] = "The text to be converted to a number." ;
8358 // -=*# Resource for function TEXT #*=-
8359 Resource SC_OPCODE_TEXT
8361 String 1 // Description
8363 Text [ en-US ] = "Converts a number to text according to a given format." ;
8368 ID_FUNCTION_GRP_TEXT;
8369 U2S( HID_FUNC_TEXT );
8373 String 2 // Name of Parameter 1
8375 Text [ en-US ] = "number" ;
8377 String 3 // Description of Parameter 1
8379 Text [ en-US ] = "The numeric value to be converted." ;
8381 String 4 // Name of Parameter 2
8383 Text [ en-US ] = "Format" ;
8385 String 5 // Description of Parameter 2
8387 Text [ en-US ] = "The text that describes the format." ;
8390 // -=*# Resource for function T #*=-
8391 Resource SC_OPCODE_T
8393 String 1 // Description
8395 Text [ en-US ] = "Converts a value into text." ;
8400 ID_FUNCTION_GRP_TEXT;
8405 String 2 // Name of Parameter 1
8407 Text [ en-US ] = "value" ;
8409 String 3 // Description of Parameter 1
8411 Text [ en-US ] = "The value to be converted." ;
8414 // -=*# Resource for function ERSETZEN #*=-
8415 Resource SC_OPCODE_REPLACE
8417 String 1 // Description
8419 Text [ en-US ] = "Replaces characters within a text string with a different text string." ;
8424 ID_FUNCTION_GRP_TEXT;
8425 U2S( HID_FUNC_ERSETZEN );
8429 String 2 // Name of Parameter 1
8431 Text [ en-US ] = "Text" ;
8433 String 3 // Description of Parameter 1
8435 Text [ en-US ] = "The text in which some characters are to be replaced." ;
8437 String 4 // Name of Parameter 2
8439 Text [ en-US ] = "position" ;
8441 String 5 // Description of Parameter 2
8443 Text [ en-US ] = "The character position from which text is to be replaced." ;
8445 String 6 // Name of Parameter 3
8447 Text [ en-US ] = "length" ;
8449 String 7 // Description of Parameter 3
8451 Text [ en-US ] = "The number of characters to be replaced." ;
8453 String 8 // Name of Parameter 4
8455 Text [ en-US ] = "new text" ;
8457 String 9 // Description of Parameter 4
8459 Text [ en-US ] = "The text to be inserted." ;
8462 // -=*# Resource for function FEST #*=-
8463 Resource SC_OPCODE_FIXED
8465 String 1 // Description
8467 Text [ en-US ] = "Formats a number with a fixed number of places after the decimal point and thousands separator." ;
8472 ID_FUNCTION_GRP_TEXT;
8473 U2S( HID_FUNC_FEST );
8477 String 2 // Name of Parameter 1
8479 Text [ en-US ] = "number" ;
8481 String 3 // Description of Parameter 1
8483 Text [ en-US ] = "The number to be formatted." ;
8485 String 4 // Name of Parameter 2
8487 Text [ en-US ] = "Decimals" ;
8489 String 5 // Description of Parameter 2
8491 Text [ en-US ] = "Decimal places. The number of fixed decimal places that are to be displayed." ;
8493 String 6 // Name of Parameter 3
8495 Text [ en-US ] = "No thousands separators" ;
8497 String 7 // Description of Parameter 3
8499 Text [ en-US ] = "No thousands separator. True value, if existing and TRUE (unequal to 0), no thousands separators are set." ;
8502 // -=*# Resource for function LÄNGE #*=-
8503 Resource SC_OPCODE_LEN
8505 String 1 // Description
8507 Text [ en-US ] = "Calculates length of a text string." ;
8512 ID_FUNCTION_GRP_TEXT;
8513 U2S( HID_FUNC_LAENGE );
8517 String 2 // Name of Parameter 1
8519 Text [ en-US ] = "text" ;
8521 String 3 // Description of Parameter 1
8523 Text [ en-US ] = "The text in which the length is to be determined." ;
8526 // -=*# Resource for function LINKS #*=-
8527 Resource SC_OPCODE_LEFT
8529 String 1 // Description
8531 Text [ en-US ] = "Returns the first character or characters of a text." ;
8536 ID_FUNCTION_GRP_TEXT;
8537 U2S( HID_FUNC_LINKS );
8541 String 2 // Name of Parameter 1
8543 Text [ en-US ] = "text" ;
8545 String 3 // Description of Parameter 1
8547 Text [ en-US ] = "The text where the initial partial words are to be determined." ;
8549 String 4 // Name of Parameter 2
8551 Text [ en-US ] = "number" ;
8553 String 5 // Description of Parameter 2
8555 Text [ en-US ] = "The number of characters for the start text." ;
8558 // -=*# Resource for function RECHTS #*=-
8559 Resource SC_OPCODE_RIGHT
8561 String 1 // Description
8563 Text [ en-US ] = "Returns the last character or characters of a text." ;
8568 ID_FUNCTION_GRP_TEXT;
8569 U2S( HID_FUNC_RECHTS );
8573 String 2 // Name of Parameter 1
8575 Text [ en-US ] = "text" ;
8577 String 3 // Description of Parameter 1
8579 Text [ en-US ] = "The text in which the end partial words are to be determined." ;
8581 String 4 // Name of Parameter 2
8583 Text [ en-US ] = "number" ;
8585 String 5 // Description of Parameter 2
8587 Text [ en-US ] = "The number of characters for the end text." ;
8590 // -=*# Resource for function TEIL #*=-
8591 Resource SC_OPCODE_MID
8593 String 1 // Description
8595 Text [ en-US ] = "Returns a partial text string of a text." ;
8600 ID_FUNCTION_GRP_TEXT;
8601 U2S( HID_FUNC_TEIL );
8605 String 2 // Name of Parameter 1
8607 Text [ en-US ] = "text" ;
8609 String 3 // Description of Parameter 1
8611 Text [ en-US ] = "The text in which partial words are to be determined." ;
8613 String 4 // Name of Parameter 2
8615 Text [ en-US ] = "start" ;
8617 String 5 // Description of Parameter 2
8619 Text [ en-US ] = "The position from which the part word is to be determined." ;
8621 String 6 // Name of Parameter 3
8623 Text [ en-US ] = "number" ;
8625 String 7 // Description of Parameter 3
8627 Text [ en-US ] = "The number of characters for the text." ;
8630 // -=*# Resource for function WIEDERHOLEN #*=-
8631 Resource SC_OPCODE_REPT
8633 String 1 // Description
8635 Text [ en-US ] = "Repeats text a given number of times." ;
8640 ID_FUNCTION_GRP_TEXT;
8641 U2S( HID_FUNC_WIEDERHOLEN );
8645 String 2 // Name of Parameter 1
8647 Text [ en-US ] = "text" ;
8649 String 3 // Description of Parameter 1
8651 Text [ en-US ] = "The text to be repeated." ;
8653 String 4 // Name of Parameter 2
8655 Text [ en-US ] = "number" ;
8657 String 5 // Description of Parameter 2
8659 Text [ en-US ] = "The number of times the text is to be repeated." ;
8662 // -=*# Resource for function WECHSELN #*=-
8663 Resource SC_OPCODE_SUBSTITUTE
8665 String 1 // Description
8667 Text [ en-US ] = "Substitutes new text for old text in a string." ;
8672 ID_FUNCTION_GRP_TEXT;
8673 U2S( HID_FUNC_WECHSELN );
8677 String 2 // Name of Parameter 1
8679 Text [ en-US ] = "text" ;
8681 String 3 // Description of Parameter 1
8683 Text [ en-US ] = "The text in which partial words are to be replaced." ;
8685 String 4 // Name of Parameter 2
8687 Text [ en-US ] = "search_text" ;
8689 String 5 // Description of Parameter 2
8691 Text [ en-US ] = "The partial string to be (repeatedly) replaced." ;
8693 String 6 // Name of Parameter 3
8695 Text [ en-US ] = "new text" ;
8697 String 7 // Description of Parameter 3
8699 Text [ en-US ] = "The text which is to replace the text string." ;
8701 String 8 // Name of Parameter 4
8703 Text [ en-US ] = "occurrence" ;
8705 String 9 // Description of Parameter 4
8707 Text [ en-US ] = "Which occurence of the old text is to be replaced." ;
8710 // -=*# Resource for function BASIS #*=-
8711 Resource SC_OPCODE_BASE
8713 String 1 // Description
8715 Text [ en-US ] = "Converts a positive integer to text from a number system to the base defined." ;
8720 ID_FUNCTION_GRP_TEXT;
8721 U2S( HID_FUNC_BASIS );
8725 String 2 // Name of Parameter 1
8727 Text [ en-US ] = "number" ;
8729 String 3 // Description of Parameter 1
8731 Text [ en-US ] = "The number to be converted." ;
8733 String 4 // Name of Parameter 2
8735 Text [ en-US ] = "radix" ;
8737 String 5 // Description of Parameter 2
8739 Text [ en-US ] = "The base number for conversion must be in the range 2 - 36." ;
8741 String 6 // Name of Parameter 3
8743 Text [ en-US ] = "Minimum length" ;
8745 String 7 // Description of Parameter 3
8747 Text [ en-US ] = "If the text is shorter than the specified length, zeros are added to the left of the string." ;
8750 // -=*# Resource for function DEZIMAL #*=-
8751 Resource SC_OPCODE_DECIMAL
8753 String 1 // Description
8755 Text [ en-US ] = "Converts a text of a specified number system to a positive integer in the base given." ;
8760 ID_FUNCTION_GRP_TEXT;
8761 U2S( HID_FUNC_DEZIMAL );
8765 String 2 // Name of Parameter 1
8767 Text [ en-US ] = "text" ;
8769 String 3 // Description of Parameter 1
8771 Text [ en-US ] = "The text to be converted." ;
8773 String 4 // Name of Parameter 2
8775 Text [ en-US ] = "radix" ;
8777 String 5 // Description of Parameter 2
8779 Text [ en-US ] = "The base number for conversion must be in the range 2 - 36." ;
8782 // -=*# Resource for function CONVERT #*=-
8783 Resource SC_OPCODE_CONVERT
8785 String 1 // Description
8787 Text [ en-US ] = "Converts a value according to a conversion table in the configuration (calc.xcu).";
8792 ID_FUNCTION_GRP_MATH;
8793 U2S( HID_FUNC_UMRECHNEN );
8797 String 2 // Name of Parameter 1
8799 Text [ en-US ] = "value" ;
8801 String 3 // Description of Parameter 1
8803 Text [ en-US ] = "The value to be converted.";
8805 String 4 // Name of Parameter 2
8807 Text [ en-US ] = "text" ;
8809 String 5 // Description of Parameter 2
8811 Text [ en-US ] = "Unit from which something is converted, case-sensitive.";
8813 String 6 // Name of Parameter 3
8815 Text [ en-US ] = "text" ;
8817 String 7 // Description of Parameter 3
8819 Text [ en-US ] = "Unit into which something is converted, case-sensitive.";
8822 // -=*# Resource for function ROEMISCH #*=-
8823 Resource SC_OPCODE_ROMAN
8825 String 1 // Description
8827 Text [ en-US ] = "Converts a number to a Roman numeral.";
8832 ID_FUNCTION_GRP_TEXT;
8833 U2S( HID_FUNC_ROEMISCH );
8837 String 2 // Name of Parameter 1
8839 Text [ en-US ] = "Number";
8841 String 3 // Description of Parameter 1
8843 Text [ en-US ] = "The number to be converted to a Roman numeral must be in the 0 - 3999 range.";
8845 String 4 // Name of Parameter 2
8847 Text [ en-US ] = "Mode";
8849 String 5 // Description of Parameter 2
8851 Text [ en-US ] = "The more this value increases, the more the Roman numeral is simplified. The value must be in the 0 - 4 range.";
8854 // -=*# Resource for function ARABISCH #*=-
8855 Resource SC_OPCODE_ARABIC
8857 String 1 // Description
8859 Text [ en-US ] = "Calculates the value of a Roman numeral.";
8864 ID_FUNCTION_GRP_TEXT;
8865 U2S( HID_FUNC_ARABISCH );
8869 String 2 // Name of Parameter 1
8871 Text [ en-US ] = "Text";
8873 String 3 // Description of Parameter 1
8875 Text [ en-US ] = "The text that represents a Roman numeral.";
8878 Resource SC_OPCODE_INFO
8882 Text [ en-US ] = "Returns information about the environment.";
8887 ID_FUNCTION_GRP_INFO;
8888 U2S( HID_FUNC_INFO );
8894 Text [ en-US ] = "Text";
8898 Text [ en-US ] = "Can be \"osversion\", \"system\", \"release\", \"numfile\", and \"recalc\".";
8901 Resource SC_OPCODE_UNICODE
8903 String 1 // Description
8905 Text [ en-US ] = "Returns the numeric code for the first Unicode character in a text string." ;
8909 1; // TODO: implementation and unsuppress
8910 ID_FUNCTION_GRP_TEXT;
8911 U2S( HID_FUNC_UNICODE );
8915 String 2 // Name of Parameter 1
8917 Text [ en-US ] = "text" ;
8919 String 3 // Description of Parameter 1
8921 Text [ en-US ] = "This is the text for which the code of the first character is to be found." ;
8924 Resource SC_OPCODE_UNICHAR
8926 String 1 // Description
8928 Text [ en-US ] = "Converts a code number into a Unicode character or letter." ;
8932 1; // TODO: implementation and unsuppress
8933 ID_FUNCTION_GRP_TEXT;
8934 U2S( HID_FUNC_UNICHAR );
8938 String 2 // Name of Parameter 1
8940 Text [ en-US ] = "number" ;
8942 String 3 // Description of Parameter 1
8944 Text [ en-US ] = "The code value for the character." ;
8947 Resource SC_OPCODE_EUROCONVERT
8949 String 1 // Description
8951 Text [ en-US ] = "Converts a value from one to another Euro currency.";
8956 ID_FUNCTION_GRP_MATH;
8957 U2S( HID_FUNC_EUROCONVERT );
8961 String 2 // Name of Parameter 1
8963 Text [ en-US ] = "value" ;
8965 String 3 // Description of Parameter 1
8967 Text [ en-US ] = "The value to be converted.";
8969 String 4 // Name of Parameter 2
8971 Text [ en-US ] = "from_currency" ;
8973 String 5 // Description of Parameter 2
8975 Text [ en-US ] = "ISO 4217 code of the currency from which is converted, case-sensitive.";
8977 String 6 // Name of Parameter 3
8979 Text [ en-US ] = "to_currency" ;
8981 String 7 // Description of Parameter 3
8983 Text [ en-US ] = "ISO 4217 code of the currency into which is converted, case-sensitive.";
8985 String 8 // Name of Parameter 4
8987 Text [ en-US ] = "full_precision" ;
8989 String 9 // Description of Parameter 4
8991 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.";
8993 String 10 // Name of Parameter 5
8995 Text [ en-US ] = "triangulation_precision" ;
8997 String 11 // Description of Parameter 5
8999 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.";
9000 Text [ x-comment ] = "This description uses almost all available space in the dialog, make sure translations fit in size." ;
9003 Resource SC_OPCODE_NUMBERVALUE
9005 String 1 // Description
9007 Text [ en-US ] = "Converts text to a number, in a locale-independent way." ;
9011 1; // TODO: implementation and unsuppress
9012 ID_FUNCTION_GRP_TEXT;
9013 U2S( HID_FUNC_NUMBERVALUE );
9017 String 2 // Name of Parameter 1
9019 Text [ en-US ] = "text" ;
9021 String 3 // Description of Parameter 1
9023 Text [ en-US ] = "The text to be converted to a number." ;
9025 String 4 // Name of Parameter 2
9027 Text [ en-US ] = "decimal_point" ;
9029 String 5 // Description of Parameter 2
9031 Text [ en-US ] = "Defines the character used as the decimal point." ;