1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 /* Resource file for the function wizard / autopilot.
22 * All descriptions of functions are collected within the resources
23 * RID_SC_FUNCTION_DESCRIPTIONS1 respectively RID_SC_FUNCTION_DESCRIPTIONS2,
24 * two blocks because otherwise we had a 64kb overflow.
26 * For every function there is a sub resource with the number of the OpCode of
29 * In this sub resource, with index 1 the description of the function is
30 * given, after that follows an
32 * ExtraData block with:
34 * Boolean flag whether function is suppressed. Usually 0. This may be
35 * used to add UI string resources before UI freeze if implementation
36 * isn't ready yet without displaying them in the function wizard,
37 * most recent used list and other UI elements. Also not available via
40 * Function group (text, math, ...), one of ID_FUNCTION_GRP_...
42 * Help ID, U2S(HID_FUNC_...)
44 * Number of parameters. VAR_ARGS if variable number, or
45 * VAR_ARGS+number if number of fixed parameters and variable
46 * arguments following. Or PAIRED_VAR_ARGS if variable number of
47 * paired parameters, or PAIRED_VAR_ARGS+number if number of fixed
48 * parameters and variable paired arguments following.
50 * For every parameter:
52 * Boolean flag whether the parameter is optional.
54 * Number of suppressed parameters. Usually 0. Same meaning and
55 * mechanism as the flag for the entire function above.
57 * For every suppressed parameter:
59 * The parameter number, offset starting with 0. Variable
60 * arguments can't be suppressed!
63 * ExtraData block followed by two string resources for each parameter,
64 * first the type or name of the parameter, second a description of the
69 //#define U2S(x) ((x)-HID_START)
71 // Macro U2S: unsigned to signed
72 // is needed because the resource compiler only knows signed short int in
73 // ExtraData, but the HID_XXX are unsigned and exceed 32k. Code reading the
74 // resource entries must consider this and undo the conversion.
76 #include "scfuncs.hrc"
77 #include "formula/compiler.hrc"
79 Resource RID_SC_FUNCTION_DESCRIPTIONS1
81 // -=*# Resource for function DBANZAHL #*=-
82 Resource SC_OPCODE_DB_COUNT
84 String 1 // Description
86 Text [ en-US ] = "Counts the cells of a data range whose contents match the search criteria." ;
91 ID_FUNCTION_GRP_DATABASE;
92 U2S( HID_FUNC_DBANZAHL );
96 String 2 // Name of Parameter 1
98 Text [ en-US ] = "Database" ;
100 String 3 // Description of Parameter 1
102 Text [ en-US ] = "The range of cells containing data." ;
104 String 4 // Name of Parameter 2
106 Text [ en-US ] = "Database field" ;
108 String 5 // Description of Parameter 2
110 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
112 String 6 // Name of Parameter 3
114 Text [ en-US ] = "Search criteria" ;
116 String 7 // Description of Parameter 3
118 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
121 // -=*# Resource for function DBANZAHL2 #*=-
122 Resource SC_OPCODE_DB_COUNT_2
124 String 1 // Description
126 Text [ en-US ] = "Counts all non-blank cells of a data range where the content corresponds to the search criteria." ;
131 ID_FUNCTION_GRP_DATABASE;
132 U2S( HID_FUNC_DBANZAHL2 );
136 String 2 // Name of Parameter 1
138 Text [ en-US ] = "Database" ;
140 String 3 // Description of Parameter 1
142 Text [ en-US ] = "The range of cells containing data." ;
144 String 4 // Name of Parameter 2
146 Text [ en-US ] = "Database field" ;
148 String 5 // Description of Parameter 2
150 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
152 String 6 // Name of Parameter 3
154 Text [ en-US ] = "Search criteria" ;
156 String 7 // Description of Parameter 3
158 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
161 // -=*# Resource for function DBMITTELWERT #*=-
162 Resource SC_OPCODE_DB_AVERAGE
164 String 1 // Description
166 Text [ en-US ] = "Returns the average value of all the cells of a data range whose contents match the search criteria." ;
171 ID_FUNCTION_GRP_DATABASE;
172 U2S( HID_FUNC_DBMITTELWERT );
176 String 2 // Name of Parameter 1
178 Text [ en-US ] = "Database" ;
180 String 3 // Description of Parameter 1
182 Text [ en-US ] = "The range of cells containing data." ;
184 String 4 // Name of Parameter 2
186 Text [ en-US ] = "Database field" ;
188 String 5 // Description of Parameter 2
190 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
192 String 6 // Name of Parameter 3
194 Text [ en-US ] = "Search criteria" ;
196 String 7 // Description of Parameter 3
198 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
201 // -=*# Resource for function DBAUSZUG #*=-
202 Resource SC_OPCODE_DB_GET
204 String 1 // Description
206 Text [ en-US ] = "Defines the contents of the cell of a data range which matches the search criteria." ;
211 ID_FUNCTION_GRP_DATABASE;
212 U2S( HID_FUNC_DBAUSZUG );
216 String 2 // Name of Parameter 1
218 Text [ en-US ] = "Database" ;
220 String 3 // Description of Parameter 1
222 Text [ en-US ] = "The range of cells containing data." ;
224 String 4 // Name of Parameter 2
226 Text [ en-US ] = "Database field" ;
228 String 5 // Description of Parameter 2
230 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
232 String 6 // Name of Parameter 3
234 Text [ en-US ] = "Search criteria" ;
236 String 7 // Description of Parameter 3
238 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
241 // -=*# Resource for function DBMAX #*=-
242 Resource SC_OPCODE_DB_MAX
244 String 1 // Description
246 Text [ en-US ] = "Returns the maximum value from all of the cells of a data range which correspond to the search criteria." ;
251 ID_FUNCTION_GRP_DATABASE;
252 U2S( HID_FUNC_DBMAX );
256 String 2 // Name of Parameter 1
258 Text [ en-US ] = "Database" ;
260 String 3 // Description of Parameter 1
262 Text [ en-US ] = "The range of cells containing data." ;
264 String 4 // Name of Parameter 2
266 Text [ en-US ] = "Database field" ;
268 String 5 // Description of Parameter 2
270 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
272 String 6 // Name of Parameter 3
274 Text [ en-US ] = "Search criteria" ;
276 String 7 // Description of Parameter 3
278 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
281 // -=*# Resource for function DBMIN #*=-
282 Resource SC_OPCODE_DB_MIN
284 String 1 // Description
286 Text [ en-US ] = "Returns the minimum of all cells of a data range where the contents correspond to the search criteria." ;
291 ID_FUNCTION_GRP_DATABASE;
292 U2S( HID_FUNC_DBMIN );
296 String 2 // Name of Parameter 1
298 Text [ en-US ] = "Database" ;
300 String 3 // Description of Parameter 1
302 Text [ en-US ] = "The range of cells containing data." ;
304 String 4 // Name of Parameter 2
306 Text [ en-US ] = "Database field" ;
308 String 5 // Description of Parameter 2
310 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
312 String 6 // Name of Parameter 3
314 Text [ en-US ] = "Search criteria" ;
316 String 7 // Description of Parameter 3
318 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
321 // -=*# Resource for function DBPRODUKT #*=-
322 Resource SC_OPCODE_DB_PRODUCT
324 String 1 // Description
326 Text [ en-US ] = "Multiplies all cells of a data range where the contents match the search criteria." ;
331 ID_FUNCTION_GRP_DATABASE;
332 U2S( HID_FUNC_DBPRODUKT );
336 String 2 // Name of Parameter 1
338 Text [ en-US ] = "Database" ;
340 String 3 // Description of Parameter 1
342 Text [ en-US ] = "The range of cells containing data." ;
344 String 4 // Name of Parameter 2
346 Text [ en-US ] = "Database field" ;
348 String 5 // Description of Parameter 2
350 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
352 String 6 // Name of Parameter 3
354 Text [ en-US ] = "Search criteria" ;
356 String 7 // Description of Parameter 3
358 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
361 // -=*# Resource for function DBSTDABW #*=-
362 Resource SC_OPCODE_DB_STD_DEV
364 String 1 // Description
366 Text [ en-US ] = "Calculates the standard deviation of all cells in a data range whose contents match the search criteria." ;
371 ID_FUNCTION_GRP_DATABASE;
372 U2S( HID_FUNC_DBSTDABW );
376 String 2 // Name of Parameter 1
378 Text [ en-US ] = "Database" ;
380 String 3 // Description of Parameter 1
382 Text [ en-US ] = "The range of cells containing data." ;
384 String 4 // Name of Parameter 2
386 Text [ en-US ] = "Database field" ;
388 String 5 // Description of Parameter 2
390 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
392 String 6 // Name of Parameter 3
394 Text [ en-US ] = "Search criteria" ;
396 String 7 // Description of Parameter 3
398 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
401 // -=*# Resource for function DBSTDABWN #*=-
402 Resource SC_OPCODE_DB_STD_DEV_P
404 String 1 // Description
406 Text [ en-US ] = "Returns the standard deviation with regards to the population of all cells of a data range matching the search criteria." ;
411 ID_FUNCTION_GRP_DATABASE;
412 U2S( HID_FUNC_DBSTDABWN );
416 String 2 // Name of Parameter 1
418 Text [ en-US ] = "Database" ;
420 String 3 // Description of Parameter 1
422 Text [ en-US ] = "The range of cells containing data." ;
424 String 4 // Name of Parameter 2
426 Text [ en-US ] = "Database field" ;
428 String 5 // Description of Parameter 2
430 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
432 String 6 // Name of Parameter 3
434 Text [ en-US ] = "Search criteria" ;
436 String 7 // Description of Parameter 3
438 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
441 // -=*# Resource for function DBSUMME #*=-
442 Resource SC_OPCODE_DB_SUM
444 String 1 // Description
446 Text [ en-US ] = "Adds all the cells of a data range where the contents match the search criteria." ;
451 ID_FUNCTION_GRP_DATABASE;
452 U2S( HID_FUNC_DBSUMME );
456 String 2 // Name of Parameter 1
458 Text [ en-US ] = "Database" ;
460 String 3 // Description of Parameter 1
462 Text [ en-US ] = "The range of cells containing data." ;
464 String 4 // Name of Parameter 2
466 Text [ en-US ] = "Database field" ;
468 String 5 // Description of Parameter 2
470 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
472 String 6 // Name of Parameter 3
474 Text [ en-US ] = "Search criteria" ;
476 String 7 // Description of Parameter 3
478 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
481 // -=*# Resource for function DBVARIANZ #*=-
482 Resource SC_OPCODE_DB_VAR
484 String 1 // Description
486 Text [ en-US ] = "Determines the variance of all the cells in a data range where the contents match the search criteria." ;
491 ID_FUNCTION_GRP_DATABASE;
492 U2S( HID_FUNC_DBVARIANZ );
496 String 2 // Name of Parameter 1
498 Text [ en-US ] = "Database" ;
500 String 3 // Description of Parameter 1
502 Text [ en-US ] = "The range of cells containing data." ;
504 String 4 // Name of Parameter 2
506 Text [ en-US ] = "Database field" ;
508 String 5 // Description of Parameter 2
510 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
512 String 6 // Name of Parameter 3
514 Text [ en-US ] = "Search criteria" ;
516 String 7 // Description of Parameter 3
518 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
521 // -=*# Resource for function DBVARIANZEN #*=-
522 Resource SC_OPCODE_DB_VAR_P
524 String 1 // Description
526 Text [ en-US ] = "Determines variance of a population based on all cells in a data range where contents match the search criteria." ;
531 ID_FUNCTION_GRP_DATABASE;
532 U2S( HID_FUNC_DBVARIANZEN );
536 String 2 // Name of Parameter 1
538 Text [ en-US ] = "Database" ;
540 String 3 // Description of Parameter 1
542 Text [ en-US ] = "The range of cells containing data." ;
544 String 4 // Name of Parameter 2
546 Text [ en-US ] = "Database field" ;
548 String 5 // Description of Parameter 2
550 Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
552 String 6 // Name of Parameter 3
554 Text [ en-US ] = "Search criteria" ;
556 String 7 // Description of Parameter 3
558 Text [ en-US ] = "Defines the cell range containing the search criteria." ;
561 // -=*# Resource for function DATUM #*=-
562 Resource SC_OPCODE_GET_DATE
564 String 1 // Description
566 Text [ en-US ] = "Provides an internal number for the date given." ;
571 ID_FUNCTION_GRP_DATETIME;
572 U2S( HID_FUNC_DATUM );
576 String 2 // Name of Parameter 1
578 Text [ en-US ] = "year" ;
580 String 3 // Description of Parameter 1
582 Text [ en-US ] = "An integer between 1583 and 9956 or 0 and 99 (19xx or 20xx depending on the defined option)." ;
584 String 4 // Name of Parameter 2
586 Text [ en-US ] = "month" ;
588 String 5 // Description of Parameter 2
590 Text [ en-US ] = "An integer between 1 and 12 representing the month." ;
592 String 6 // Name of Parameter 3
594 Text [ en-US ] = "day" ;
596 String 7 // Description of Parameter 3
598 Text [ en-US ] = "An integer between 1 and 31 representing the day of the month." ;
601 // -=*# Resource for function DATWERT #*=-
602 Resource SC_OPCODE_GET_DATE_VALUE
604 String 1 // Description
606 Text [ en-US ] = "Returns an internal number for a text having a possible date format." ;
611 ID_FUNCTION_GRP_DATETIME;
612 U2S( HID_FUNC_DATWERT );
616 String 2 // Name of Parameter 1
618 Text [ en-US ] = "text" ;
620 String 3 // Description of Parameter 1
622 Text [ en-US ] = "A text enclosed in quotation marks which returns a date in a %PRODUCTNAME date format." ;
625 // -=*# Resource for function TAG #*=-
626 Resource SC_OPCODE_GET_DAY
628 String 1 // Description
630 Text [ en-US ] = "Returns the sequential date of the month as an integer (1-31) in relation to the date value." ;
635 ID_FUNCTION_GRP_DATETIME;
640 String 2 // Name of Parameter 1
642 Text [ en-US ] = "Number" ;
644 String 3 // Description of Parameter 1
646 Text [ en-US ] = "The internal number for the date." ;
649 // -=*# Resource for function TAGE360 #*=-
650 Resource SC_OPCODE_GET_DIFF_DATE_360
652 String 1 // Description
654 Text [ en-US ] = "Calculates the number of days between two dates based on a 360-day year." ;
659 ID_FUNCTION_GRP_DATETIME;
660 U2S( HID_FUNC_TAGE360 );
664 String 2 // Name of Parameter 1
666 Text [ en-US ] = "Date_1" ;
668 String 3 // Description of Parameter 1
670 Text [ en-US ] = "The start date for calculating the difference in days." ;
672 String 4 // Name of Parameter 2
674 Text [ en-US ] = "Date_2" ;
676 String 5 // Description of Parameter 2
678 Text [ en-US ] = "The end date for calculating the difference in days." ;
680 String 6 // Name of Parameter 3
682 Text [ en-US ] = "Type" ;
684 String 7 // Description of Parameter 3
686 Text [ en-US ] = "Method used to form differences: Type = 0 denotes US method (NASD), Type = 1 denotes the European method." ;
689 // -=*# Resource for function STUNDE #*=-
690 Resource SC_OPCODE_GET_HOUR
692 String 1 // Description
694 Text [ en-US ] = "Determines the sequential number of the hour of the day (0-23) for the time value." ;
699 ID_FUNCTION_GRP_DATETIME;
700 U2S( HID_FUNC_STUNDE );
704 String 2 // Name of Parameter 1
706 Text [ en-US ] = "Number" ;
708 String 3 // Description of Parameter 1
710 Text [ en-US ] = "Internal time value" ;
713 // -=*# Resource for function MINUTE #*=-
714 Resource SC_OPCODE_GET_MIN
716 String 1 // Description
718 Text [ en-US ] = "Determines the sequential number for the minute of the hour (0-59) for the time value." ;
723 ID_FUNCTION_GRP_DATETIME;
724 U2S( HID_FUNC_MINUTE );
728 String 2 // Name of Parameter 1
730 Text [ en-US ] = "Number" ;
732 String 3 // Description of Parameter 1
734 Text [ en-US ] = "Internal time value." ;
737 // -=*# Resource for function MONAT #*=-
738 Resource SC_OPCODE_GET_MONTH
740 String 1 // Description
742 Text [ en-US ] = "Determines the sequential number of a month of the year (1-12) for the date value." ;
747 ID_FUNCTION_GRP_DATETIME;
748 U2S( HID_FUNC_MONAT );
752 String 2 // Name of Parameter 1
754 Text [ en-US ] = "Number" ;
756 String 3 // Description of Parameter 1
758 Text [ en-US ] = "The internal number of the date." ;
761 // -=*# Resource for function JETZT #*=-
762 Resource SC_OPCODE_GET_ACT_TIME
764 String 1 // Description
766 Text [ en-US ] = "Determines the current time of the computer." ;
771 ID_FUNCTION_GRP_DATETIME;
772 U2S( HID_FUNC_JETZT );
777 // -=*# Resource for function SEKUNDE #*=-
778 Resource SC_OPCODE_GET_SEC
780 String 1 // Description
782 Text [ en-US ] = "Determines the sequential number of the second of a minute (0-59) for the time value." ;
787 ID_FUNCTION_GRP_DATETIME;
788 U2S( HID_FUNC_SEKUNDE );
792 String 2 // Name of Parameter 1
794 Text [ en-US ] = "Number" ;
796 String 3 // Description of Parameter 1
798 Text [ en-US ] = "The internal time value." ;
801 // -=*# Resource for function ZEIT #*=-
802 Resource SC_OPCODE_GET_TIME
804 String 1 // Description
806 Text [ en-US ] = "Determines a time value from the details for hour, minute and second." ;
811 ID_FUNCTION_GRP_DATETIME;
812 U2S( HID_FUNC_ZEIT );
816 String 2 // Name of Parameter 1
818 Text [ en-US ] = "hour" ;
820 String 3 // Description of Parameter 1
822 Text [ en-US ] = "The integer for the hour." ;
824 String 4 // Name of Parameter 2
826 Text [ en-US ] = "minute" ;
828 String 5 // Description of Parameter 2
830 Text [ en-US ] = "The integer for the minute." ;
832 String 6 // Name of Parameter 3
834 Text [ en-US ] = "second" ;
836 String 7 // Description of Parameter 3
838 Text [ en-US ] = "The integer for the second." ;
841 // -=*# Resource for function ZEITWERT #*=-
842 Resource SC_OPCODE_GET_TIME_VALUE
844 String 1 // Description
846 Text [ en-US ] = "Returns a sequential number for a text shown in a possible time entry format." ;
851 ID_FUNCTION_GRP_DATETIME;
852 U2S( HID_FUNC_ZEITWERT );
856 String 2 // Name of Parameter 1
858 Text [ en-US ] = "text" ;
860 String 3 // Description of Parameter 1
862 Text [ en-US ] = "A text enclosed in quotation marks which returns a time in a %PRODUCTNAME time format." ;
865 // -=*# Resource for function HEUTE #*=-
866 Resource SC_OPCODE_GET_ACT_DATE
868 String 1 // Description
870 Text [ en-US ] = "Determines the current date of the computer." ;
875 ID_FUNCTION_GRP_DATETIME;
876 U2S( HID_FUNC_HEUTE );
881 // -=*# Resource for function WOCHENTAG #*=-
882 Resource SC_OPCODE_GET_DAY_OF_WEEK
884 String 1 // Description
886 Text [ en-US ] = "Returns the day of the week for the date value as an integer (1-7)." ;
891 ID_FUNCTION_GRP_DATETIME;
892 U2S( HID_FUNC_WOCHENTAG );
896 String 2 // Name of Parameter 1
898 Text [ en-US ] = "Number" ;
900 String 3 // Description of Parameter 1
902 Text [ en-US ] = "The internal number for the date." ;
904 String 4 // Name of Parameter 2
906 Text [ en-US ] = "Type" ;
908 String 5 // Description of Parameter 2
910 Text [ en-US ] = "Fixes the beginning of the week and the type of calculation to be used." ;
913 // -=*# Resource for function JAHR #*=-
914 Resource SC_OPCODE_GET_YEAR
916 String 1 // Description
918 Text [ en-US ] = "Returns the year of a date value as an integer." ;
923 ID_FUNCTION_GRP_DATETIME;
924 U2S( HID_FUNC_JAHR );
928 String 2 // Name of Parameter 1
930 Text [ en-US ] = "Number" ;
932 String 3 // Description of Parameter 1
934 Text [ en-US ] = "Internal number of the date." ;
937 // -=*# Resource for function TAGE #*=-
938 Resource SC_OPCODE_GET_DIFF_DATE
940 String 1 // Description
942 Text [ en-US ] = "Calculates the number of days between two dates." ;
947 ID_FUNCTION_GRP_DATETIME;
948 U2S( HID_FUNC_TAGE );
952 String 2 // Name of Parameter 1
954 Text [ en-US ] = "Date_2" ;
956 String 3 // Description of Parameter 1
958 Text [ en-US ] = "The end date for calculating the difference in days." ;
960 String 4 // Name of Parameter 2
962 Text [ en-US ] = "Date_1" ;
964 String 5 // Description of Parameter 2
966 Text [ en-US ] = "The start date for calculating the difference in days." ;
969 // -=*# Resource for function DATEDIF #*=-
970 Resource SC_OPCODE_GET_DATEDIF
972 String 1 // description
974 Text [ en-US ] = "Returns the number of whole days, months or years between 'start date' and 'end date'.";
979 ID_FUNCTION_GRP_DATETIME;
980 U2S( HID_FUNC_DATEDIF );
985 String 2 // name of parameter 1 DateDif
987 Text [ en-US ] = "Start date";
990 String 3 // description of parameter 1 DateDif
992 Text [ en-US ] = "The start date.";
995 String 4 // name of parameter 2 DateDif
997 Text [ en-US ] = "End date";
1000 String 5 // description of parameter 2 DateDif
1002 Text [ en-US ] = "The end date.";
1005 String 6 // name of parameter 3 DateDif
1007 Text [ en-US ] = "Interval";
1010 String 7 // description of parameter 3 DateDif
1012 Text [ en-US ] = "Interval to be calculated. Can be \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\".";
1015 // -=*# Resource for function KALENDERWOCHE #*=-
1016 Resource SC_OPCODE_WEEK
1018 String 1 // Description
1020 Text [ en-US ] = "Calculates the calendar week corresponding to the given date." ;
1025 ID_FUNCTION_GRP_DATETIME;
1026 U2S( HID_FUNC_KALENDERWOCHE );
1030 String 2 // Name of Parameter 1
1032 Text [ en-US ] = "Number" ;
1034 String 3 // Description of Parameter 1
1036 Text [ en-US ] = "The internal number of the date." ;
1038 String 4 // Name of Parameter 2
1040 Text [ en-US ] = "mode" ;
1042 String 5 // Description of Parameter 2
1044 Text [ en-US ] = "Indicates the first day of the week (1 = Sunday, other values = Monday)." ;
1047 // -=*# Resource for function OSTERSONNTAG #*=-
1048 Resource SC_OPCODE_EASTERSUNDAY
1050 String 1 // Description
1052 Text [ en-US ] = "Calculates the date of Easter Sunday in a given year.";
1057 ID_FUNCTION_GRP_DATETIME;
1058 U2S( HID_FUNC_OSTERSONNTAG );
1062 String 2 // Name of Parameter 1
1064 Text [ en-US ] = "year";
1066 String 3 // Description of Parameter 1
1068 Text [ en-US ] = "An integer between 1583 and 9956, or 0 and 99 (19xx or 20xx depending on the option set).";
1071 // -=*# Resource for function BW #*=-
1072 Resource SC_OPCODE_BW
1074 String 1 // Description
1076 Text [ en-US ] = "Present value. Calculates the present value of an investment." ;
1081 ID_FUNCTION_GRP_FINANZ;
1086 String 2 // Name of Parameter 1
1088 Text [ en-US ] = "Rate" ;
1090 String 3 // Description of Parameter 1
1092 Text [ en-US ] = "The rate of interest for the period given." ;
1094 String 4 // Name of Parameter 2
1096 Text [ en-US ] = "NPER" ;
1098 String 5 // Description of Parameter 2
1100 Text [ en-US ] = "The payment period. The total number of periods in which the annuity is paid." ;
1102 String 6 // Name of Parameter 3
1104 Text [ en-US ] = "PMT" ;
1106 String 7 // Description of Parameter 3
1108 Text [ en-US ] = "Regular payments. The constant amount of annuity that is paid in each period." ;
1110 String 8 // Name of Parameter 4
1112 Text [ en-US ] = "FV" ;
1114 String 9 // Description of Parameter 4
1116 Text [ en-US ] = "Future value. The value (final value) to be attained after the last payment." ;
1118 String 10 // Name of Parameter 5
1120 Text [ en-US ] = "Type" ;
1122 String 11 // Description of Parameter 5
1124 Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1127 // -=*# Resource for function ZW #*=-
1128 Resource SC_OPCODE_ZW
1130 String 1 // Description
1132 Text [ en-US ] = "Future value. Returns the future value of an investment based on regular payments and a constant interest rate." ;
1137 ID_FUNCTION_GRP_FINANZ;
1142 String 2 // Name of Parameter 1
1144 Text [ en-US ] = "Rate" ;
1146 String 3 // Description of Parameter 1
1148 Text [ en-US ] = "The rate of interest per period." ;
1150 String 4 // Name of Parameter 2
1152 Text [ en-US ] = "NPER" ;
1154 String 5 // Description of Parameter 2
1156 Text [ en-US ] = "Payment period. The total number of periods in which the annuity (pension) is paid." ;
1158 String 6 // Name of Parameter 3
1160 Text [ en-US ] = "PMT" ;
1162 String 7 // Description of Parameter 3
1164 Text [ en-US ] = "Regular payments. The constant annuity to be paid in each period." ;
1166 String 8 // Name of Parameter 4
1168 Text [ en-US ] = "PV" ;
1170 String 9 // Description of Parameter 4
1172 Text [ en-US ] = "Present value. The current value of a series of payments" ;
1174 String 10 // Name of Parameter 5
1176 Text [ en-US ] = "Type" ;
1178 String 11 // Description of Parameter 5
1180 Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1183 // -=*# Resource for function ZZR #*=-
1184 Resource SC_OPCODE_ZZR
1186 String 1 // Description
1188 Text [ en-US ] = "Payment period. Calculates the number of payment periods for an investment based on regular payments and a constant interest rate." ;
1193 ID_FUNCTION_GRP_FINANZ;
1194 U2S( HID_FUNC_ZZR );
1198 String 2 // Name of Parameter 1
1200 Text [ en-US ] = "Rate" ;
1202 String 3 // Description of Parameter 1
1204 Text [ en-US ] = "The rate of interest per period." ;
1206 String 4 // Name of Parameter 2
1208 Text [ en-US ] = "PMT" ;
1210 String 5 // Description of Parameter 2
1212 Text [ en-US ] = "Regular payments. The constant annuity to be paid in each period." ;
1214 String 6 // Name of Parameter 3
1216 Text [ en-US ] = "PV" ;
1218 String 7 // Description of Parameter 3
1220 Text [ en-US ] = "Present value. The current value of a series of payments" ;
1222 String 8 // Name of Parameter 4
1224 Text [ en-US ] = "FV" ;
1226 String 9 // Description of Parameter 4
1228 Text [ en-US ] = "Future value. The value (end value) to be attained after the final payment." ;
1230 String 10 // Name of Parameter 5
1232 Text [ en-US ] = "Type" ;
1234 String 11 // Description of Parameter 5
1236 Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1239 // -=*# Resource for function RMZ #*=-
1240 Resource SC_OPCODE_RMZ
1242 String 1 // Description
1244 Text [ en-US ] = "Regular payments. Returns the periodic payment of an annuity, based on regular payments and a fixed periodic interest rate." ;
1249 ID_FUNCTION_GRP_FINANZ;
1250 U2S( HID_FUNC_RMZ );
1254 String 2 // Name of Parameter 1
1256 Text [ en-US ] = "Rate" ;
1258 String 3 // Description of Parameter 1
1260 Text [ en-US ] = "The rate of interest per period." ;
1262 String 4 // Name of Parameter 2
1264 Text [ en-US ] = "NPER" ;
1266 String 5 // Description of Parameter 2
1268 Text [ en-US ] = "Payment period. The total number of periods in which the annuity (pension) is paid." ;
1270 String 6 // Name of Parameter 3
1272 Text [ en-US ] = "PV" ;
1274 String 7 // Description of Parameter 3
1276 Text [ en-US ] = "Present value. The current value of a series of payments" ;
1278 String 8 // Name of Parameter 4
1280 Text [ en-US ] = "FV" ;
1282 String 9 // Description of Parameter 4
1284 Text [ en-US ] = "Future value. The value (end value) to be attained after the final payment." ;
1286 String 10 // Name of Parameter 5
1288 Text [ en-US ] = "Type" ;
1290 String 11 // Description of Parameter 5
1292 Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1295 // -=*# Resource for function ZINS #*=-
1296 Resource SC_OPCODE_ZINS
1298 String 1 // Description
1300 Text [ en-US ] = "Calculates the constant interest rate of an investment with regular payments." ;
1305 ID_FUNCTION_GRP_FINANZ;
1306 U2S( HID_FUNC_ZINS );
1307 6; 0; 0; 0; 1; 1; 1;
1310 String 2 // Name of Parameter 1
1312 Text [ en-US ] = "NPER" ;
1314 String 3 // Description of Parameter 1
1316 Text [ en-US ] = "Payment period. The total number of periods in which the annuity (pension) is paid." ;
1318 String 4 // Name of Parameter 2
1320 Text [ en-US ] = "PMT" ;
1322 String 5 // Description of Parameter 2
1324 Text [ en-US ] = "Regular payments. The constant annuity to be paid in each period." ;
1326 String 6 // Name of Parameter 3
1328 Text [ en-US ] = "PV" ;
1330 String 7 // Description of Parameter 3
1332 Text [ en-US ] = "Present value. The current value of a series of payments" ;
1334 String 8 // Name of Parameter 4
1336 Text [ en-US ] = "FV" ;
1338 String 9 // Description of Parameter 4
1340 Text [ en-US ] = "Future value. The value (end value) to be attained after the final payment." ;
1342 String 10 // Name of Parameter 5
1344 Text [ en-US ] = "Type" ;
1346 String 11 // Description of Parameter 5
1348 Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1350 String 12 // Name of Parameter 6
1352 Text [ en-US ] = "Guess" ;
1354 String 13 // Description of Parameter 6
1356 Text [ en-US ] = "Guess. The estimate of the interest rate for the iterative calculating method." ;
1359 // -=*# Resource for function ZINSZ #*=-
1360 Resource SC_OPCODE_ZINS_Z
1362 String 1 // Description
1364 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." ;
1369 ID_FUNCTION_GRP_FINANZ;
1370 U2S( HID_FUNC_ZINSZ );
1371 6; 0; 0; 0; 0; 1; 1;
1374 String 2 // Name of Parameter 1
1376 Text [ en-US ] = "Rate" ;
1378 String 3 // Description of Parameter 1
1380 Text [ en-US ] = "The rate of interest per period." ;
1382 String 4 // Name of Parameter 2
1384 Text [ en-US ] = "Period" ;
1386 String 5 // Description of Parameter 2
1388 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." ;
1390 String 6 // Name of Parameter 3
1392 Text [ en-US ] = "NPER" ;
1394 String 7 // Description of Parameter 3
1396 Text [ en-US ] = "Payment period. The total number of periods in which the annuity (pension) is paid." ;
1398 String 8 // Name of Parameter 4
1400 Text [ en-US ] = "pv" ;
1402 String 9 // Description of Parameter 4
1404 Text [ en-US ] = "Present value. The current value of a series of payments" ;
1406 String 10 // Name of Parameter 5
1408 Text [ en-US ] = "FV" ;
1410 String 11 // Description of Parameter 5
1412 Text [ en-US ] = "Future value. The value (end value) to be attained after the final payment." ;
1414 String 12 // Name of Parameter 6
1416 Text [ en-US ] = "Type" ;
1418 String 13 // Description of Parameter 6
1420 Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1423 // -=*# Resource for function KAPZ #*=-
1424 Resource SC_OPCODE_KAPZ
1426 String 1 // Description
1428 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." ;
1433 ID_FUNCTION_GRP_FINANZ;
1434 U2S( HID_FUNC_KAPZ );
1435 6; 0; 0; 0; 0; 1; 1;
1438 String 2 // Name of Parameter 1
1440 Text [ en-US ] = "Rate" ;
1442 String 3 // Description of Parameter 1
1444 Text [ en-US ] = "The interest rate per period." ;
1446 String 4 // Name of Parameter 2
1448 Text [ en-US ] = "Period" ;
1450 String 5 // Description of Parameter 2
1452 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" ;
1454 String 6 // Name of Parameter 3
1456 Text [ en-US ] = "NPER" ;
1458 String 7 // Description of Parameter 3
1460 Text [ en-US ] = "The payment period. The total number of periods in which the annuity (pension) is paid." ;
1462 String 8 // Name of Parameter 4
1464 Text [ en-US ] = "PV" ;
1466 String 9 // Description of Parameter 4
1468 Text [ en-US ] = "The present value. The present value or the amount the annuity is currently worth." ;
1470 String 10 // Name of Parameter 5
1472 Text [ en-US ] = "FV" ;
1474 String 11 // Description of Parameter 5
1476 Text [ en-US ] = "Future value. The value (end value) attained after the last payment has been made." ;
1478 String 12 // Name of Parameter 6
1480 Text [ en-US ] = "Type" ;
1482 String 13 // Description of Parameter 6
1484 Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1487 // -=*# Resource for function KUMKAPITAL #*=-
1488 Resource SC_OPCODE_KUM_KAP_Z
1490 String 1 // Description
1492 Text [ en-US ] = "Cumulative Capital. Calculates the total amount of the repayment share in a period for an investment with constant interest rate." ;
1497 ID_FUNCTION_GRP_FINANZ;
1498 U2S( HID_FUNC_KUMKAPITAL );
1499 6; 0; 0; 0; 0; 0; 0;
1502 String 2 // Name of Parameter 1
1504 Text [ en-US ] = "Rate" ;
1506 String 3 // Description of Parameter 1
1508 Text [ en-US ] = "The rate of interest per period." ;
1510 String 4 // Name of Parameter 2
1512 Text [ en-US ] = "NPER" ;
1514 String 5 // Description of Parameter 2
1516 Text [ en-US ] = "Payment period. The total number of periods in which the annuity (pension) is paid." ;
1518 String 6 // Name of Parameter 3
1520 Text [ en-US ] = "PV" ;
1522 String 7 // Description of Parameter 3
1524 Text [ en-US ] = "The present value. The present value or the amount the annuity is currently worth." ;
1526 String 8 // Name of Parameter 4
1528 Text [ en-US ] = "S" ;
1530 String 9 // Description of Parameter 4
1532 Text [ en-US ] = "The start period. The first period to be taken into account. S = 1 denotes the very first period." ;
1534 String 10 // Name of Parameter 5
1536 Text [ en-US ] = "E" ;
1538 String 11 // Description of Parameter 5
1540 Text [ en-US ] = "End period. The last period to be taken into account." ;
1542 String 12 // Name of Parameter 6
1544 Text [ en-US ] = "Type" ;
1546 String 13 // Description of Parameter 6
1548 Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1551 // -=*# Resource for function KUMZINSZ #*=-
1552 Resource SC_OPCODE_KUM_ZINS_Z
1554 String 1 // Description
1556 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." ;
1561 ID_FUNCTION_GRP_FINANZ;
1562 U2S( HID_FUNC_KUMZINSZ );
1563 6; 0; 0; 0; 0; 0; 0;
1566 String 2 // Name of Parameter 1
1568 Text [ en-US ] = "Rate" ;
1570 String 3 // Description of Parameter 1
1572 Text [ en-US ] = "The rate of interest per period." ;
1574 String 4 // Name of Parameter 2
1576 Text [ en-US ] = "NPER" ;
1578 String 5 // Description of Parameter 2
1580 Text [ en-US ] = "Payment period. The total number of periods in which the annuity (pension) is paid." ;
1582 String 6 // Name of Parameter 3
1584 Text [ en-US ] = "pv" ;
1586 String 7 // Description of Parameter 3
1588 Text [ en-US ] = "The present value. The present value or the amount the annuity is currently worth." ;
1590 String 8 // Name of Parameter 4
1592 Text [ en-US ] = "S" ;
1594 String 9 // Description of Parameter 4
1596 Text [ en-US ] = "The start period. The first period to be taken into account. S = 1 denotes the very first period." ;
1598 String 10 // Name of Parameter 5
1600 Text [ en-US ] = "E" ;
1602 String 11 // Description of Parameter 5
1604 Text [ en-US ] = "The end period. The last period to be taken into account." ;
1606 String 12 // Name of Parameter 6
1608 Text [ en-US ] = "Type" ;
1610 String 13 // Description of Parameter 6
1612 Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1615 // -=*# Resource for function DIA #*=-
1616 Resource SC_OPCODE_DIA
1618 String 1 // Description
1620 Text [ en-US ] = "Calculates the arithmetically declining value of an asset (depreciation) for a specified period." ;
1625 ID_FUNCTION_GRP_FINANZ;
1626 U2S( HID_FUNC_DIA );
1630 String 2 // Name of Parameter 1
1632 Text [ en-US ] = "Cost" ;
1634 String 3 // Description of Parameter 1
1636 Text [ en-US ] = "Acquisition costs. The initial cost of the asset." ;
1638 String 4 // Name of Parameter 2
1640 Text [ en-US ] = "Salvage" ;
1642 String 5 // Description of Parameter 2
1644 Text [ en-US ] = "Salvage: The remaining value of the asset at the end of its life." ;
1646 String 6 // Name of Parameter 3
1648 Text [ en-US ] = "Life" ;
1650 String 7 // Description of Parameter 3
1652 Text [ en-US ] = "Useful life. The number of periods in the useful life of the asset." ;
1654 String 8 // Name of Parameter 4
1656 Text [ en-US ] = "Period" ;
1658 String 9 // Description of Parameter 4
1660 Text [ en-US ] = "Period. The depreciation period which must have the same time unit as average useful life." ;
1663 // -=*# Resource for function LIA #*=-
1664 Resource SC_OPCODE_LIA
1666 String 1 // Description
1668 Text [ en-US ] = "Calculates the linear depreciation per period." ;
1673 ID_FUNCTION_GRP_FINANZ;
1674 U2S( HID_FUNC_LIA );
1678 String 2 // Name of Parameter 1
1680 Text [ en-US ] = "Cost" ;
1682 String 3 // Description of Parameter 1
1684 Text [ en-US ] = "Acquisition cost. The initial cost of an asset." ;
1686 String 4 // Name of Parameter 2
1688 Text [ en-US ] = "Salvage" ;
1690 String 5 // Description of Parameter 2
1692 Text [ en-US ] = "Salvage: The remaining value of the asset at the end of its life." ;
1694 String 6 // Name of Parameter 3
1696 Text [ en-US ] = "Life" ;
1698 String 7 // Description of Parameter 3
1700 Text [ en-US ] = "Useful life. The number of periods in the useful life of the asset." ;
1703 // -=*# Resource for function GDA #*=-
1704 Resource SC_OPCODE_GDA
1706 String 1 // Description
1708 Text [ en-US ] = "Calculates the depreciation of an asset for a specific period using the double-declining balance method or declining balance factor." ;
1713 ID_FUNCTION_GRP_FINANZ;
1714 U2S( HID_FUNC_GDA );
1718 String 2 // Name of Parameter 1
1720 Text [ en-US ] = "Cost" ;
1722 String 3 // Description of Parameter 1
1724 Text [ en-US ] = "Acquisition costs. The initial cost of the asset." ;
1726 String 4 // Name of Parameter 2
1728 Text [ en-US ] = "Salvage" ;
1730 String 5 // Description of Parameter 2
1732 Text [ en-US ] = "Salvage: The remaining value of the asset at the end of its life." ;
1734 String 6 // Name of Parameter 3
1736 Text [ en-US ] = "Life" ;
1738 String 7 // Description of Parameter 3
1740 Text [ en-US ] = "Useful life. The number of periods in the useful life of the asset." ;
1742 String 8 // Name of Parameter 4
1744 Text [ en-US ] = "Period" ;
1746 String 9 // Description of Parameter 4
1748 Text [ en-US ] = "Period. The depreciation period in the same time unit as the average useful life entry." ;
1750 String 10 // Name of Parameter 5
1752 Text [ en-US ] = "Factor" ;
1754 String 11 // Description of Parameter 5
1756 Text [ en-US ] = "Factor. The factor for balance decline. F = 2 means a double declining balance factor" ;
1759 // -=*# Resource for function GDA2 #*=-
1760 Resource SC_OPCODE_GDA_2
1762 String 1 // Description
1764 Text [ en-US ] = "Returns the real depreciation of an asset for a specified period using the fixed-declining balance method." ;
1769 ID_FUNCTION_GRP_FINANZ;
1770 U2S( HID_FUNC_GDA2 );
1774 String 2 // Name of Parameter 1
1776 Text [ en-US ] = "Cost" ;
1778 String 3 // Description of Parameter 1
1780 Text [ en-US ] = "Acquisition costs: The initial cost of the asset." ;
1782 String 4 // Name of Parameter 2
1784 Text [ en-US ] = "Salvage" ;
1786 String 5 // Description of Parameter 2
1788 Text [ en-US ] = "Salvage: The remaining value of the asset at the end of its life." ;
1790 String 6 // Name of Parameter 3
1792 Text [ en-US ] = "Life" ;
1794 String 7 // Description of Parameter 3
1796 Text [ en-US ] = "Useful life. The number of periods in the useful life of the asset." ;
1798 String 8 // Name of Parameter 4
1800 Text [ en-US ] = "Period" ;
1802 String 9 // Description of Parameter 4
1804 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." ;
1806 String 10 // Name of Parameter 5
1808 Text [ en-US ] = "month" ;
1810 String 11 // Description of Parameter 5
1812 Text [ en-US ] = "Months: The number of months in the first year of depreciation." ;
1815 // -=*# Resource for function VDB #*=-
1816 Resource SC_OPCODE_VBD
1818 String 1 // Description
1820 Text [ en-US ] = "Variable declining balance. Returns the declining balance depreciation for a particular period." ;
1825 ID_FUNCTION_GRP_FINANZ;
1826 U2S( HID_FUNC_VDB );
1827 7; 0; 0; 0; 0; 0; 1; 1;
1830 String 2 // Name of Parameter 1
1832 Text [ en-US ] = "Cost" ;
1834 String 3 // Description of Parameter 1
1836 Text [ en-US ] = "Cost. The initial cost of the asset." ;
1838 String 4 // Name of Parameter 2
1840 Text [ en-US ] = "Salvage" ;
1842 String 5 // Description of Parameter 2
1844 Text [ en-US ] = "Salvage. The salvage value of an asset at the end of its useful life." ;
1846 String 6 // Name of Parameter 3
1848 Text [ en-US ] = "Life" ;
1850 String 7 // Description of Parameter 3
1852 Text [ en-US ] = "Useful life. The number of periods in the useful life of the asset." ;
1854 String 8 // Name of Parameter 4
1856 Text [ en-US ] = "S" ;
1858 String 9 // Description of Parameter 4
1860 Text [ en-US ] = "Start. The first period for depreciation in the same time unit as the useful life." ;
1862 String 10 // Name of Parameter 5
1864 Text [ en-US ] = "end" ;
1866 String 11 // Description of Parameter 5
1868 Text [ en-US ] = "End. The last period of the depreciation using the same time unit as for the useful life." ;
1870 String 12 // Name of Parameter 6
1872 Text [ en-US ] = "Factor" ;
1874 String 13 // Description of Parameter 6
1876 Text [ en-US ] = "Factor. The factor for the reduction of the depreciation. F = 2 denotes double rate depreciation." ;
1878 String 14 // Name of Parameter 7
1880 Text [ en-US ] = "Type" ;
1882 String 15 // Description of Parameter 7
1884 Text [ en-US ] = "Do not alter. Type = 1 denotes switch to linear depreciation, type = 0 do not switch." ;
1887 // -=*# Resource for function EFFEKTIV #*=-
1888 Resource SC_OPCODE_EFFEKTIV
1890 String 1 // Description
1892 Text [ en-US ] = "Calculates the annual net interest rate for a nominal interest rate." ;
1897 ID_FUNCTION_GRP_FINANZ;
1898 U2S( HID_FUNC_EFFEKTIV );
1902 String 2 // Name of Parameter 1
1904 Text [ en-US ] = "NOM" ;
1906 String 3 // Description of Parameter 1
1908 Text [ en-US ] = "Nominal Interest" ;
1910 String 4 // Name of Parameter 2
1912 Text [ en-US ] = "P" ;
1914 String 5 // Description of Parameter 2
1916 Text [ en-US ] = "Periods. The number of interest payments per year." ;
1919 // -=*# Resource for function NOMINAL #*=-
1920 Resource SC_OPCODE_NOMINAL
1922 String 1 // Description
1924 Text [ en-US ] = "Calculates the yearly nominal interest rate as an effective interest rate." ;
1929 ID_FUNCTION_GRP_FINANZ;
1930 U2S( HID_FUNC_NOMINAL );
1934 String 2 // Name of Parameter 1
1936 Text [ en-US ] = "effect_rate" ;
1938 String 3 // Description of Parameter 1
1940 Text [ en-US ] = "The effective interest rate" ;
1942 String 4 // Name of Parameter 2
1944 Text [ en-US ] = "npery" ;
1946 String 5 // Description of Parameter 2
1948 Text [ en-US ] = "Periods. The number of interest payment per year." ;
1951 // -=*# Resource for function NBW #*=-
1952 Resource SC_OPCODE_NBW
1954 String 1 // Description
1956 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." ;
1961 ID_FUNCTION_GRP_FINANZ;
1962 U2S( HID_FUNC_NBW );
1966 String 2 // Name of Parameter 1
1968 Text [ en-US ] = "RATE" ;
1970 String 3 // Description of Parameter 1
1972 Text [ en-US ] = "The rate of discount for one period." ;
1974 String 4 // Name of Parameter 2
1976 Text [ en-US ] = "value " ;
1978 String 5 // Description of Parameter 2
1980 Text [ en-US ] = "Value 1, value 2,... are 1 to 30 arguments representing payments and income." ;
1983 // -=*# Resource for function IKV #*=-
1984 Resource SC_OPCODE_IKV
1986 String 1 // Description
1988 Text [ en-US ] = "Returns the actuarial rate of interest of an investment excluding costs or profits." ;
1993 ID_FUNCTION_GRP_FINANZ;
1994 U2S( HID_FUNC_IKV );
1998 String 2 // Name of Parameter 1
2000 Text [ en-US ] = "Values" ;
2002 String 3 // Description of Parameter 1
2004 Text [ en-US ] = "An array or reference to cells whose contents correspond to the payments. " ;
2006 String 4 // Name of Parameter 2
2008 Text [ en-US ] = "Guess" ;
2010 String 5 // Description of Parameter 2
2012 Text [ en-US ] = "Guess. An estimated value of the rate of return to be used for the iteration calculation." ;
2015 // -=*# Resource for function QIKV/MIRR #*=-
2016 Resource SC_OPCODE_MIRR
2018 String 1 // Description
2020 Text [ en-US ] = "Returns the modified internal rate of return for a series of investments.";
2025 ID_FUNCTION_GRP_FINANZ;
2026 U2S( HID_FUNC_QIKV );
2030 String 2 // Name of Parameter 1
2032 Text [ en-US ] = "Values";
2034 String 3 // Description of Parameter 1
2036 Text [ en-US ] = "An array or reference to cells whose contents correspond to the payments.";
2038 String 4 // Name of Parameter 2
2040 Text [ en-US ] = "investment";
2042 String 5 // Description of Parameter 2
2044 Text [ en-US ] = "Interest rate for investments (the negative values in the array).";
2046 String 6 // Name of Parameter 3
2048 Text [ en-US ] = "reinvest_rate";
2050 String 7 // Description of Parameter 3
2052 Text [ en-US ] = "interest rate for reinvestments (the positive values in the array).";
2055 // -=*# Resource for function ISPMT #*=-
2056 Resource SC_OPCODE_ISPMT
2058 String 1 // Description
2060 Text [ en-US ] = "Returns the amount of interest for constant amortization rates.";
2065 ID_FUNCTION_GRP_FINANZ;
2066 U2S( HID_FUNC_ISPMT );
2070 String 2 // Name of Parameter 1
2072 Text [ en-US ] = "rate";
2074 String 3 // Description of Parameter 1
2076 Text [ en-US ] = "Interest rate for a single amortization rate.";
2078 String 4 // Name of Parameter 2
2080 Text [ en-US ] = "Period";
2082 String 5 // Description of Parameter 2
2084 Text [ en-US ] = "Number of amortization periods for the calculation of the interest.";
2086 String 6 // Name of Parameter 3
2088 Text [ en-US ] = "total_periods";
2090 String 7 // Description of Parameter 3
2092 Text [ en-US ] = "Sum total of amortization periods.";
2094 String 8 // Name of Parameter 4
2096 Text [ en-US ] = "invest";
2098 String 9 // Description of Parameter 4
2100 Text [ en-US ] = "Amount of the investment.";
2103 // -=*# Resource for function LAUFZEIT #*=-
2104 Resource SC_OPCODE_LAUFZ
2106 String 1 // Description
2108 Text [ en-US ] = "Duration. Calculates the number of periods required by an investment to attain the desired value." ;
2113 ID_FUNCTION_GRP_FINANZ;
2114 U2S( HID_FUNC_LAUFZEIT );
2118 String 2 // Name of Parameter 1
2120 Text [ en-US ] = "RATE" ;
2122 String 3 // Description of Parameter 1
2124 Text [ en-US ] = "The constant rate of interest." ;
2126 String 4 // Name of Parameter 2
2128 Text [ en-US ] = "pv" ;
2130 String 5 // Description of Parameter 2
2132 Text [ en-US ] = "The present value. The current value of the investment." ;
2134 String 6 // Name of Parameter 3
2136 Text [ en-US ] = "FV" ;
2138 String 7 // Description of Parameter 3
2140 Text [ en-US ] = "The future value of the investment." ;
2143 // -=*# Resource for function ZGZ #*=-
2144 Resource SC_OPCODE_ZGZ
2146 String 1 // Description
2148 Text [ en-US ] = "Interest. Calculates the interest rate which represents the rate of return from an investment." ;
2153 ID_FUNCTION_GRP_FINANZ;
2154 U2S( HID_FUNC_ZGZ );
2158 String 2 // Name of Parameter 1
2160 Text [ en-US ] = "P" ;
2162 String 3 // Description of Parameter 1
2164 Text [ en-US ] = "The number of periods used in the calculation." ;
2166 String 4 // Name of Parameter 2
2168 Text [ en-US ] = "pv" ;
2170 String 5 // Description of Parameter 2
2172 Text [ en-US ] = "Present value. The current value of the investment." ;
2174 String 6 // Name of Parameter 3
2176 Text [ en-US ] = "FV" ;
2178 String 7 // Description of Parameter 3
2180 Text [ en-US ] = "The future value of the investment." ;
2183 // -=*# Resource for function ISTBEZUG #*=-
2184 Resource SC_OPCODE_IS_REF
2186 String 1 // Description
2188 Text [ en-US ] = "Returns TRUE if value is a reference." ;
2193 ID_FUNCTION_GRP_INFO;
2194 U2S( HID_FUNC_ISTBEZUG );
2198 String 2 // Name of Parameter 1
2200 Text [ en-US ] = "value" ;
2202 String 3 // Description of Parameter 1
2204 Text [ en-US ] = "The value to be tested." ;
2207 // -=*# Resource for function ISTFEHL #*=-
2208 Resource SC_OPCODE_IS_ERR
2210 String 1 // Description
2212 Text [ en-US ] = "Returns TRUE if the value is an error value not equal to #N/A." ;
2217 ID_FUNCTION_GRP_INFO;
2218 U2S( HID_FUNC_ISTFEHL );
2222 String 2 // Name of Parameter 1
2224 Text [ en-US ] = "value" ;
2226 String 3 // Description of Parameter 1
2228 Text [ en-US ] = "The value to be tested." ;
2231 // -=*# Resource for function ISTFEHLER #*=-
2232 Resource SC_OPCODE_IS_ERROR
2234 String 1 // Description
2236 Text [ en-US ] = "Returns TRUE if the value is an error value." ;
2241 ID_FUNCTION_GRP_INFO;
2242 U2S( HID_FUNC_ISTFEHLER );
2246 String 2 // Name of Parameter 1
2248 Text [ en-US ] = "value" ;
2250 String 3 // Description of Parameter 1
2252 Text [ en-US ] = "The value to be tested." ;
2255 // -=*# Resource for function ISTLEER #*=-
2256 Resource SC_OPCODE_IS_EMPTY
2258 String 1 // Description
2260 Text [ en-US ] = "Returns TRUE if value refers to an empty cell." ;
2265 ID_FUNCTION_GRP_INFO;
2266 U2S( HID_FUNC_ISTLEER );
2270 String 2 // Name of Parameter 1
2272 Text [ en-US ] = "value" ;
2274 String 3 // Description of Parameter 1
2276 Text [ en-US ] = "The value to be tested." ;
2279 // -=*# Resource for function ISTLOG #*=-
2280 Resource SC_OPCODE_IS_LOGICAL
2282 String 1 // Description
2284 Text [ en-US ] = "Returns TRUE if the value carries a logical number format." ;
2289 ID_FUNCTION_GRP_INFO;
2290 U2S( HID_FUNC_ISTLOG );
2294 String 2 // Name of Parameter 1
2296 Text [ en-US ] = "value" ;
2298 String 3 // Description of Parameter 1
2300 Text [ en-US ] = "The value to be tested." ;
2303 // -=*# Resource for function ISTNV #*=-
2304 Resource SC_OPCODE_IS_NV
2306 String 1 // Description
2308 Text [ en-US ] = "Returns TRUE if value equals #N/A." ;
2313 ID_FUNCTION_GRP_INFO;
2314 U2S( HID_FUNC_ISTNV );
2318 String 2 // Name of Parameter 1
2320 Text [ en-US ] = "value" ;
2322 String 3 // Description of Parameter 1
2324 Text [ en-US ] = "The value to be tested." ;
2327 // -=*# Resource for function ISTKTEXT #*=-
2328 Resource SC_OPCODE_IS_NON_STRING
2330 String 1 // Description
2332 Text [ en-US ] = "Returns TRUE if the value is not text." ;
2337 ID_FUNCTION_GRP_INFO;
2338 U2S( HID_FUNC_ISTKTEXT );
2342 String 2 // Name of Parameter 1
2344 Text [ en-US ] = "value" ;
2346 String 3 // Description of Parameter 1
2348 Text [ en-US ] = "The value to be tested." ;
2351 // -=*# Resource for function ISTTEXT #*=-
2352 Resource SC_OPCODE_IS_STRING
2354 String 1 // Description
2356 Text [ en-US ] = "Returns TRUE if value is text." ;
2361 ID_FUNCTION_GRP_INFO;
2362 U2S( HID_FUNC_ISTTEXT );
2366 String 2 // Name of Parameter 1
2368 Text [ en-US ] = "value" ;
2370 String 3 // Description of Parameter 1
2372 Text [ en-US ] = "The value to be tested." ;
2375 // -=*# Resource for function ISTZAHL #*=-
2376 Resource SC_OPCODE_IS_VALUE
2378 String 1 // Description
2380 Text [ en-US ] = "Returns TRUE if value is a number." ;
2385 ID_FUNCTION_GRP_INFO;
2386 U2S( HID_FUNC_ISTZAHL );
2390 String 2 // Name of Parameter 1
2392 Text [ en-US ] = "value" ;
2394 String 3 // Description of Parameter 1
2396 Text [ en-US ] = "The value to be tested." ;
2399 // -=*# Resource for function ISTFORMEL #*=-
2400 Resource SC_OPCODE_IS_FORMULA
2402 String 1 // Description
2404 Text [ en-US ] = "Returns TRUE if the cell is a formula cell." ;
2409 ID_FUNCTION_GRP_INFO;
2410 U2S( HID_FUNC_ISTFORMEL );
2414 String 2 // Name of Parameter 1
2416 Text [ en-US ] = "reference" ;
2418 String 3 // Description of Parameter 1
2420 Text [ en-US ] = "The cell to be checked." ;
2423 // -=*# Resource for function FORMEL #*=-
2424 Resource SC_OPCODE_FORMULA
2426 String 1 // Description
2428 Text [ en-US ] = "Returns the formula of a formula cell.";
2433 ID_FUNCTION_GRP_INFO;
2434 U2S( HID_FUNC_FORMEL );
2438 String 2 // Name of Parameter 1
2440 Text [ en-US ] = "Reference";
2442 String 3 // Description of Parameter 1
2444 Text [ en-US ] = "The formula cell.";
2447 // -=*# Resource for function N #*=-
2448 Resource SC_OPCODE_N
2450 String 1 // Description
2452 Text [ en-US ] = "Converts a value to a number." ;
2457 ID_FUNCTION_GRP_INFO;
2462 String 2 // Name of Parameter 1
2464 Text [ en-US ] = "value" ;
2466 String 3 // Description of Parameter 1
2468 Text [ en-US ] = "The value to be interpreted as a number." ;
2471 // -=*# Resource for function NV #*=-
2472 Resource SC_OPCODE_NO_VALUE
2474 String 1 // Description
2476 Text [ en-US ] = "Not available. Returns the error value #N/A." ;
2481 ID_FUNCTION_GRP_INFO;
2487 // -=*# Resource for function TYP #*=-
2488 Resource SC_OPCODE_TYPE
2490 String 1 // Description
2492 Text [ en-US ] = "Defines the data type of a value." ;
2497 ID_FUNCTION_GRP_INFO;
2498 U2S( HID_FUNC_TYP );
2502 String 2 // Name of Parameter 1
2504 Text [ en-US ] = "value" ;
2506 String 3 // Description of Parameter 1
2508 Text [ en-US ] = "The value for which the data type is to be determined." ;
2511 // -=*# Resource for function CELL/ZELLE #*=-
2512 Resource SC_OPCODE_CELL
2514 String 1 // Description
2516 Text [ en-US ] = "Determines information about address, formatting or contents of a cell.";
2521 ID_FUNCTION_GRP_INFO;
2522 U2S( HID_FUNC_ZELLE );
2526 String 2 // Name of Parameter 1
2528 Text [ en-US ] = "info_type";
2530 String 3 // Description of Parameter 1
2532 Text [ en-US ] = "String that specifies the type of information.";
2534 String 4 // Name of Parameter 2
2536 Text [ en-US ] = "Reference";
2538 String 5 // Description of Parameter 2
2540 Text [ en-US ] = "The position of the cell you want to examine.";
2543 // -=*# Resource for function AKTUELL #*=-
2544 Resource SC_OPCODE_CURRENT
2546 String 1 // Description
2548 Text [ en-US ] = "Calculates the current value of the formula at the present location. " ;
2553 ID_FUNCTION_GRP_INFO;
2554 U2S( HID_FUNC_AKTUELL );
2559 // -=*# Resource for function FALSCH #*=-
2560 Resource SC_OPCODE_FALSE
2562 String 1 // Description
2564 Text [ en-US ] = "Defines the logical value as FALSE." ;
2569 ID_FUNCTION_GRP_LOGIC;
2570 U2S( HID_FUNC_FALSCH );
2575 // -=*# Resource for function NICHT #*=-
2576 Resource SC_OPCODE_NOT
2578 String 1 // Description
2580 Text [ en-US ] = "Reverses the value of the argument." ;
2585 ID_FUNCTION_GRP_LOGIC;
2586 U2S( HID_FUNC_NICHT );
2590 String 2 // Name of Parameter 1
2592 Text [ en-US ] = "Logical value" ;
2594 String 3 // Description of Parameter 1
2596 Text [ en-US ] = "An expression that can be either TRUE or FALSE." ;
2599 // -=*# Resource for function WAHR #*=-
2600 Resource SC_OPCODE_TRUE
2602 String 1 // Description
2604 Text [ en-US ] = "Returns the logical value TRUE." ;
2609 ID_FUNCTION_GRP_LOGIC;
2610 U2S( HID_FUNC_WAHR );
2615 // -=*# Resource for function WENN #*=-
2616 Resource SC_OPCODE_IF
2618 String 1 // Description
2620 Text [ en-US ] = "Specifies a logical test to be performed." ;
2625 ID_FUNCTION_GRP_LOGIC;
2626 U2S( HID_FUNC_WENN );
2630 String 2 // Name of Parameter 1
2632 Text [ en-US ] = "Test" ;
2634 String 3 // Description of Parameter 1
2636 Text [ en-US ] = "Any value or expression which can be either TRUE or FALSE." ;
2638 String 4 // Name of Parameter 2
2640 Text [ en-US ] = "Then_value" ;
2642 String 5 // Description of Parameter 2
2644 Text [ en-US ] = "The result of the function if the logical test returns a TRUE." ;
2646 String 6 // Name of Parameter 3
2648 Text [ en-US ] = "Otherwise_value" ;
2650 String 7 // Description of Parameter 3
2652 Text [ en-US ] = "The result of the function if the logical test returns FALSE." ;
2655 // -=*# Resource for function IFERROR #*=-
2656 Resource SC_OPCODE_IF_ERROR
2658 String 1 // Description
2660 Text [ en-US ] = "Returns value if not an error value, else alternative." ;
2665 ID_FUNCTION_GRP_LOGIC;
2666 U2S( HID_FUNC_IFERROR );
2670 String 2 // Name of Parameter 1
2672 Text [ en-US ] = "value" ;
2674 String 3 // Description of Parameter 1
2676 Text [ en-US ] = "The value to be calculated." ;
2678 String 4 // Name of Parameter 2
2680 Text [ en-US ] = "alternative value" ;
2682 String 5 // Description of Parameter 2
2684 Text [ en-US ] = "The alternative to be returned, should value be an error value." ;
2687 // -=*# Resource for function IFNA #*=-
2688 Resource SC_OPCODE_IF_NA
2690 String 1 // Description
2692 Text [ en-US ] = "Returns value if not a #N/A error, else alternative." ;
2697 ID_FUNCTION_GRP_LOGIC;
2698 U2S( HID_FUNC_IFNA );
2702 String 2 // Name of Parameter 1
2704 Text [ en-US ] = "value" ;
2706 String 3 // Description of Parameter 1
2708 Text [ en-US ] = "The value to be calculated." ;
2710 String 4 // Name of Parameter 2
2712 Text [ en-US ] = "alternative value" ;
2714 String 5 // Description of Parameter 2
2716 Text [ en-US ] = "The alternative to be returned, should value be a #N/A error." ;
2719 // -=*# Resource for function ODER #*=-
2720 Resource SC_OPCODE_OR
2722 String 1 // Description
2724 Text [ en-US ] = "Returns TRUE if an argument is TRUE." ;
2729 ID_FUNCTION_GRP_LOGIC;
2730 U2S( HID_FUNC_ODER );
2734 String 2 // Name of Parameter 1
2736 Text [ en-US ] = "Logical value " ;
2738 String 3 // Description of Parameter 1
2740 Text [ en-US ] = "Logical value 1, logical value 2,... are 1 to 30 conditions to be tested and which return either TRUE or FALSE." ;
2743 // -=*# Resource for function XOR (EXKLUSIV ODER) #*=-
2744 Resource SC_OPCODE_XOR
2746 String 1 // Description
2748 Text [ en-US ] = "Returns TRUE if an odd number of arguments evaluates to TRUE." ;
2753 ID_FUNCTION_GRP_LOGIC;
2754 U2S( HID_FUNC_XOR );
2758 String 2 // Name of Parameter 1
2760 Text [ en-US ] = "Logical value " ;
2762 String 3 // Description of Parameter 1
2764 Text [ en-US ] = "Logical value 1, logical value 2, ... are 1 to 30 conditions to be tested and which return either TRUE or FALSE." ;
2767 // -=*# Resource for function UND #*=-
2768 Resource SC_OPCODE_AND
2770 String 1 // Description
2772 Text [ en-US ] = "Returns TRUE if all arguments are TRUE." ;
2777 ID_FUNCTION_GRP_LOGIC;
2778 U2S( HID_FUNC_UND );
2782 String 2 // Name of Parameter 1
2784 Text [ en-US ] = "Logical value " ;
2786 String 3 // Description of Parameter 1
2788 Text [ en-US ] = "Logical value 1, logical value 2;...are 1 to 30 conditions to be tested and each returns either TRUE or FALSE." ;
2791 // -=*# Resource for function ABS #*=-
2792 Resource SC_OPCODE_ABS
2794 String 1 // Description
2796 Text [ en-US ] = "Absolute value of a number." ;
2801 ID_FUNCTION_GRP_MATH;
2802 U2S( HID_FUNC_ABS );
2806 String 2 // Name of Parameter 1
2808 Text [ en-US ] = "Number" ;
2810 String 3 // Description of Parameter 1
2812 Text [ en-US ] = "The number whose absolute value is to be returned." ;
2815 // -=*# Resource for function POTENZ #*=-
2816 Resource SC_OPCODE_POWER
2818 String 1 // Description
2820 Text [ en-US ] = "Returns a^b, base a raised to the power of exponent b." ;
2825 ID_FUNCTION_GRP_MATH;
2826 U2S( HID_FUNC_POTENZ );
2830 String 2 // Name of Parameter 1
2832 Text [ en-US ] = "Base" ;
2834 String 3 // Description of Parameter 1
2836 Text [ en-US ] = "The base a of the power a^b." ;
2838 String 4 // Name of Parameter 2
2840 Text [ en-US ] = "Exponent" ;
2842 String 5 // Description of Parameter 2
2844 Text [ en-US ] = "The exponent b of the power a^b." ;
2847 // -=*# Resource for function ANZAHLLEEREZELLEN #*=-
2848 Resource SC_OPCODE_COUNT_EMPTY_CELLS
2850 String 1 // Description
2852 Text [ en-US ] = "Counts the blank cells in a specified range." ;
2857 ID_FUNCTION_GRP_STATISTIC;
2858 U2S( HID_FUNC_ANZAHLLEEREZELLEN );
2862 String 2 // Name of Parameter 1
2864 Text [ en-US ] = "range" ;
2866 String 3 // Description of Parameter 1
2868 Text [ en-US ] = "The range in which empty cells are to be counted." ;
2871 // -=*# Resource for function PI #*=-
2872 Resource SC_OPCODE_PI
2874 String 1 // Description
2876 Text [ en-US ] = "Returns the value of the number Pi." ;
2881 ID_FUNCTION_GRP_MATH;
2887 // -=*# Resource for function SUMME #*=-
2888 Resource SC_OPCODE_SUM
2890 String 1 // Description
2892 Text [ en-US ] = "Returns the sum of all arguments." ;
2897 ID_FUNCTION_GRP_MATH;
2898 U2S( HID_FUNC_SUMME );
2902 String 2 // Name of Parameter 1
2904 Text [ en-US ] = "number " ;
2906 String 3 // Description of Parameter 1
2908 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 arguments whose total is to be calculated." ;
2911 // -=*# Resource for function QUADRATESUMME #*=-
2912 Resource SC_OPCODE_SUM_SQ
2914 String 1 // Description
2916 Text [ en-US ] = "Returns the sum of the squares of the arguments." ;
2921 ID_FUNCTION_GRP_MATH;
2922 U2S( HID_FUNC_QUADRATESUMME );
2926 String 2 // Name of Parameter 1
2928 Text [ en-US ] = "number " ;
2930 String 3 // Description of Parameter 1
2932 Text [ en-US ] = "Number 1, number 2,... are 1 to 30 arguments for which the sum of the squares is to be calculated." ;
2935 // -=*# Resource for function PRODUKT #*=-
2936 Resource SC_OPCODE_PRODUCT
2938 String 1 // Description
2940 Text [ en-US ] = "Multiplies the arguments." ;
2945 ID_FUNCTION_GRP_MATH;
2946 U2S( HID_FUNC_PRODUKT );
2950 String 2 // Name of Parameter 1
2952 Text [ en-US ] = "Number " ;
2954 String 3 // Description of Parameter 1
2956 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 arguments to be multiplied and a result returned." ;
2959 // -=*# Resource for function SUMMEWENN #*=-
2960 Resource SC_OPCODE_SUM_IF
2962 String 1 // Description
2964 Text [ en-US ] = "Totals the arguments that meet the conditions." ;
2969 ID_FUNCTION_GRP_MATH;
2970 U2S( HID_FUNC_SUMMEWENN );
2974 String 2 // Name of Parameter 1
2976 Text [ en-US ] = "range" ;
2978 String 3 // Description of Parameter 1
2980 Text [ en-US ] = "The range to be evaluated by the criteria given." ;
2982 String 4 // Name of Parameter 2
2984 Text [ en-US ] = "criteria" ;
2986 String 5 // Description of Parameter 2
2988 Text [ en-US ] = "The criteria to be applied to the range." ;
2990 String 6 // Name of Parameter 3
2992 Text [ en-US ] = "sum_range" ;
2994 String 7 // Description of Parameter 3
2996 Text [ en-US ] = "The range from which the values are to be totalled." ;
3000 // -=*# Resource for function AVERAGEIF #*=-
3001 Resource SC_OPCODE_AVERAGE_IF
3003 String 1 // Description
3005 Text [ en-US ] = "Averages the arguments that meet the conditions." ;
3010 ID_FUNCTION_GRP_STATISTIC;
3011 U2S( HID_FUNC_AVERAGEIF );
3015 String 2 // Name of Parameter 1
3017 Text [ en-US ] = "range" ;
3019 String 3 // Description of Parameter 1
3021 Text [ en-US ] = "The range to be evaluated by the criteria given." ;
3023 String 4 // Name of Parameter 2
3025 Text [ en-US ] = "criteria" ;
3027 String 5 // Description of Parameter 2
3029 Text [ en-US ] = "The criteria to be applied to the range." ;
3031 String 6 // Name of Parameter 3
3033 Text [ en-US ] = "average_range" ;
3035 String 7 // Description of Parameter 3
3037 Text [ en-US ] = "The range from which the values are to be averaged." ;
3041 Resource SC_OPCODE_SUM_IFS
3043 String 1 // Description
3045 Text [ en-US ] = "Totals the values of cells in a range that meet multiple criteria in multiple ranges." ;
3050 ID_FUNCTION_GRP_MATH;
3051 U2S( HID_FUNC_SUMIFS );
3052 PAIRED_VAR_ARGS+1; 0; 0; 0;
3055 String 2 // Name of Parameter 1
3057 Text [ en-US ] = "sum_range" ;
3059 String 3 // Description of Parameter 1
3061 Text [ en-US ] = "The range from which the values are to be totalled." ;
3063 String 4 // Name of Parameter 2
3065 Text [ en-US ] = "range " ;
3067 String 5 // Description of Parameter 2
3069 Text [ en-US ] = "Range 1, range 2,... are the ranges to be evaluated by the criteria given." ;
3071 String 6 // Name of Parameter 3
3073 Text [ en-US ] = "criteria " ;
3075 String 7 // Description of Parameter 3
3077 Text [ en-US ] = "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given." ;
3081 // -=*# Resource for function AVERAGEIFS #*=-
3082 Resource SC_OPCODE_AVERAGE_IFS
3084 String 1 // Description
3086 Text [ en-US ] = "Averages the value of the cells that meet multiple criteria in multiple ranges." ;
3091 ID_FUNCTION_GRP_STATISTIC;
3092 U2S( HID_FUNC_AVERAGEIFS );
3093 PAIRED_VAR_ARGS+1; 0; 0; 0;
3096 String 2 // Name of Parameter 1
3098 Text [ en-US ] = "average_range" ;
3100 String 3 // Description of Parameter 1
3102 Text [ en-US ] = "The range from which the values are to be averaged." ;
3104 String 4 // Name of Parameter 2
3106 Text [ en-US ] = "range " ;
3108 String 5 // Description of Parameter 2
3110 Text [ en-US ] = "Range 1, range 2,... are the ranges to be evaluated by the criteria given." ;
3112 String 6 // Name of Parameter 3
3114 Text [ en-US ] = "criteria " ;
3116 String 7 // Description of Parameter 3
3118 Text [ en-US ] = "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given." ;
3122 // -=*# Resource for function COUNTIFS #*=-
3123 Resource SC_OPCODE_COUNT_IFS
3125 String 1 // Description
3127 Text [ en-US ] = "Counts the cells that meet multiple criteria in multiple ranges." ;
3132 ID_FUNCTION_GRP_STATISTIC;
3133 U2S( HID_FUNC_COUNTIFS );
3134 PAIRED_VAR_ARGS; 0; 0;
3137 String 2 // Name of Parameter 1
3139 Text [ en-US ] = "range " ;
3141 String 3 // Description of Parameter 1
3143 Text [ en-US ] = "Range 1, range 2,... are the ranges to be evaluated by the criteria given." ;
3145 String 4 // Name of Parameter 2
3147 Text [ en-US ] = "criteria " ;
3149 String 5 // Description of Parameter 2
3151 Text [ en-US ] = "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given." ;
3155 // -=*# Resource for function ZÄHLENWENN #*=-
3156 Resource SC_OPCODE_COUNT_IF
3158 String 1 // Description
3160 Text [ en-US ] = "Counts the arguments which meet the set conditions." ;
3165 ID_FUNCTION_GRP_STATISTIC;
3166 U2S( HID_FUNC_ZAEHLENWENN );
3170 String 2 // Name of Parameter 1
3172 Text [ en-US ] = "range" ;
3174 String 3 // Description of Parameter 1
3176 Text [ en-US ] = "The range of cells to be evaluated by the criteria given." ;
3178 String 4 // Name of Parameter 2
3180 Text [ en-US ] = "criteria" ;
3182 String 5 // Description of Parameter 2
3184 Text [ en-US ] = "The criteria to be applied to the range." ;
3187 // -=*# Resource for function WURZEL #*=-
3188 Resource SC_OPCODE_SQRT
3190 String 1 // Description
3192 Text [ en-US ] = "Returns the square root of a number." ;
3197 ID_FUNCTION_GRP_MATH;
3198 U2S( HID_FUNC_WURZEL );
3202 String 2 // Name of Parameter 1
3204 Text [ en-US ] = "number" ;
3206 String 3 // Description of Parameter 1
3208 Text [ en-US ] = "A positive value for which the square root is to be calculated." ;
3211 // -=*# Resource for function ZUFALLSZAHL #*=-
3212 Resource SC_OPCODE_RANDOM
3214 String 1 // Description
3216 Text [ en-US ] = "Returns a random number between 0 and 1." ;
3221 ID_FUNCTION_GRP_MATH;
3222 U2S( HID_FUNC_ZUFALLSZAHL );
3227 // -=*# Resource for function ISTGERADE #*=-
3228 Resource SC_OPCODE_IS_EVEN
3230 String 1 // Description
3232 Text [ en-US ] = "Returns TRUE if value is an even integer." ;
3237 ID_FUNCTION_GRP_MATH;
3238 U2S( HID_FUNC_ISTGERADE );
3242 String 2 // Name of Parameter 1
3244 Text [ en-US ] = "value" ;
3246 String 3 // Description of Parameter 1
3248 Text [ en-US ] = "The value to be tested." ;
3251 // -=*# Resource for function ISTUNGERADE #*=-
3252 Resource SC_OPCODE_IS_ODD
3254 String 1 // Description
3256 Text [ en-US ] = "Returns TRUE if value is an odd integer." ;
3261 ID_FUNCTION_GRP_MATH;
3262 U2S( HID_FUNC_ISTUNGERADE );
3266 String 2 // Name of Parameter 1
3268 Text [ en-US ] = "value" ;
3270 String 3 // Description of Parameter 1
3272 Text [ en-US ] = "The value to be tested." ;
3275 // -=*# Resource for function KOMBINATIONEN #*=-
3276 Resource SC_OPCODE_KOMBIN
3278 String 1 // Description
3280 Text [ en-US ] = "Calculates the number of combinations for elements without repetition." ;
3285 ID_FUNCTION_GRP_MATH;
3286 U2S( HID_FUNC_KOMBINATIONEN );
3290 String 2 // Name of Parameter 1
3292 Text [ en-US ] = "number_1" ;
3294 String 3 // Description of Parameter 1
3296 Text [ en-US ] = "The total number of elements." ;
3298 String 4 // Name of Parameter 2
3300 Text [ en-US ] = "number_2" ;
3302 String 5 // Description of Parameter 2
3304 Text [ en-US ] = "The number of elements selected." ;
3307 // -=*# Resource for function KOMBINATIONEN2 #*=-
3308 Resource SC_OPCODE_KOMBIN_2
3310 String 1 // Description
3312 Text [ en-US ] = "Calculates the number of combinations of elements including repetition." ;
3317 ID_FUNCTION_GRP_MATH;
3318 U2S( HID_FUNC_KOMBINATIONEN2 );
3322 String 2 // Name of Parameter 1
3324 Text [ en-US ] = "number_1" ;
3326 String 3 // Description of Parameter 1
3328 Text [ en-US ] = "The total number of elements." ;
3330 String 4 // Name of Parameter 2
3332 Text [ en-US ] = "number_2" ;
3334 String 5 // Description of Parameter 2
3336 Text [ en-US ] = "The number of elements selected." ;
3339 // -=*# Resource for function ARCCOS #*=-
3340 Resource SC_OPCODE_ARC_COS
3342 String 1 // Description
3344 Text [ en-US ] = "Returns the arccosine of a number." ;
3349 ID_FUNCTION_GRP_MATH;
3350 U2S( HID_FUNC_ARCCOS );
3354 String 2 // Name of Parameter 1
3356 Text [ en-US ] = "Number" ;
3358 String 3 // Description of Parameter 1
3360 Text [ en-US ] = "A value between -1 and 1 for which the arccosine is to be returned." ;
3363 // -=*# Resource for function ARCSIN #*=-
3364 Resource SC_OPCODE_ARC_SIN
3366 String 1 // Description
3368 Text [ en-US ] = "Returns the arcsine of a number." ;
3373 ID_FUNCTION_GRP_MATH;
3374 U2S( HID_FUNC_ARCSIN );
3378 String 2 // Name of Parameter 1
3380 Text [ en-US ] = "Number" ;
3382 String 3 // Description of Parameter 1
3384 Text [ en-US ] = "A value between -1 and 1 for which the arcsine is to be returned." ;
3387 // -=*# Resource for function ARCCOSHYP #*=-
3388 Resource SC_OPCODE_ARC_COS_HYP
3390 String 1 // Description
3392 Text [ en-US ] = "Returns the inverse hyperbolic cosine of a number." ;
3397 ID_FUNCTION_GRP_MATH;
3398 U2S( HID_FUNC_ARCOSHYP );
3402 String 2 // Name of Parameter 1
3404 Text [ en-US ] = "Number" ;
3406 String 3 // Description of Parameter 1
3408 Text [ en-US ] = "A value greater than or equal to 1 for which the inverse hyperbolic cosine is to be returned." ;
3411 // -=*# Resource for function ARCSINHYP #*=-
3412 Resource SC_OPCODE_ARC_SIN_HYP
3414 String 1 // Description
3416 Text [ en-US ] = "Returns the inverse hyperbolic sine of a number." ;
3421 ID_FUNCTION_GRP_MATH;
3422 U2S( HID_FUNC_ARSINHYP );
3426 String 2 // Name of Parameter 1
3428 Text [ en-US ] = "Number" ;
3430 String 3 // Description of Parameter 1
3432 Text [ en-US ] = "The value for which the inverse hyperbolic sine is to be returned." ;
3435 // -=*# Resource for function ARCCOT #*=-
3436 Resource SC_OPCODE_ARC_COT
3438 String 1 // Description
3440 Text [ en-US ] = "Returns the inverse cotangent of a number." ;
3445 ID_FUNCTION_GRP_MATH;
3446 U2S( HID_FUNC_ARCCOT );
3450 String 2 // Name of Parameter 1
3452 Text [ en-US ] = "Number" ;
3454 String 3 // Description of Parameter 1
3456 Text [ en-US ] = "The value for which the inverse cotangent is to be returned." ;
3459 // -=*# Resource for function ARCTAN #*=-
3460 Resource SC_OPCODE_ARC_TAN
3462 String 1 // Description
3464 Text [ en-US ] = "Returns the arctangent of a number." ;
3469 ID_FUNCTION_GRP_MATH;
3470 U2S( HID_FUNC_ARCTAN );
3474 String 2 // Name of Parameter 1
3476 Text [ en-US ] = "Number" ;
3478 String 3 // Description of Parameter 1
3480 Text [ en-US ] = "The value for which the arctangent is to be returned." ;
3483 // -=*# Resource for function ARCCOTHYP #*=-
3484 Resource SC_OPCODE_ARC_COT_HYP
3486 String 1 // Description
3488 Text [ en-US ] = "Returns the inverse hyperbolic cotangent of a number." ;
3493 ID_FUNCTION_GRP_MATH;
3494 U2S( HID_FUNC_ARCOTHYP );
3498 String 2 // Name of Parameter 1
3500 Text [ en-US ] = "Number" ;
3502 String 3 // Description of Parameter 1
3504 Text [ en-US ] = "A value smaller than -1 or greater than 1 for which the inverse hyperbolic cotangent is to be returned." ;
3507 // -=*# Resource for function ARCTANHYP #*=-
3508 Resource SC_OPCODE_ARC_TAN_HYP
3510 String 1 // Description
3512 Text [ en-US ] = "Returns the inverse hyperbolic tangent of a number." ;
3517 ID_FUNCTION_GRP_MATH;
3518 U2S( HID_FUNC_ARTANHYP );
3522 String 2 // Name of Parameter 1
3524 Text [ en-US ] = "Number" ;
3526 String 3 // Description of Parameter 1
3528 Text [ en-US ] = "A value between -1 and 1 for which the inverse hyperbolic tangent is to be returned." ;
3531 // -=*# Resource for function COS #*=-
3532 Resource SC_OPCODE_COS
3534 String 1 // Description
3536 Text [ en-US ] = "Returns the cosine of a number." ;
3541 ID_FUNCTION_GRP_MATH;
3542 U2S( HID_FUNC_COS );
3546 String 2 // Name of Parameter 1
3548 Text [ en-US ] = "Number" ;
3550 String 3 // Description of Parameter 1
3552 Text [ en-US ] = "The angle in the radians for which the cosine is to be returned." ;
3555 // -=*# Resource for function SIN #*=-
3556 Resource SC_OPCODE_SIN
3558 String 1 // Description
3560 Text [ en-US ] = "Returns the sine of a number." ;
3565 ID_FUNCTION_GRP_MATH;
3566 U2S( HID_FUNC_SIN );
3570 String 2 // Name of Parameter 1
3572 Text [ en-US ] = "number" ;
3574 String 3 // Description of Parameter 1
3576 Text [ en-US ] = "The angle in radians for which the sine is to be calculated." ;
3579 // -=*# Resource for function COT #*=-
3580 Resource SC_OPCODE_COT
3582 String 1 // Description
3584 Text [ en-US ] = "Returns the cotangent of a number." ;
3589 ID_FUNCTION_GRP_MATH;
3590 U2S( HID_FUNC_COT );
3594 String 2 // Name of Parameter 1
3596 Text [ en-US ] = "Number" ;
3598 String 3 // Description of Parameter 1
3600 Text [ en-US ] = "The angle in radians whose cotangent value is to be returned." ;
3603 // -=*# Resource for function TAN #*=-
3604 Resource SC_OPCODE_TAN
3606 String 1 // Description
3608 Text [ en-US ] = "Returns the tangent of a number." ;
3613 ID_FUNCTION_GRP_MATH;
3614 U2S( HID_FUNC_TAN );
3618 String 2 // Name of Parameter 1
3620 Text [ en-US ] = "number" ;
3622 String 3 // Description of Parameter 1
3624 Text [ en-US ] = "The angle in radians for which the tangent is to be calculated." ;
3627 // -=*# Resource for function COSHYP #*=-
3628 Resource SC_OPCODE_COS_HYP
3630 String 1 // Description
3632 Text [ en-US ] = "Returns the hyperbolic cosine of a number." ;
3637 ID_FUNCTION_GRP_MATH;
3638 U2S( HID_FUNC_COSHYP );
3642 String 2 // Name of Parameter 1
3644 Text [ en-US ] = "Number" ;
3646 String 3 // Description of Parameter 1
3648 Text [ en-US ] = "The value for which the hyperbolic cosine is to be returned." ;
3651 // -=*# Resource for function SINHYP #*=-
3652 Resource SC_OPCODE_SIN_HYP
3654 String 1 // Description
3656 Text [ en-US ] = "Returns the hyperbolic sine of a number." ;
3661 ID_FUNCTION_GRP_MATH;
3662 U2S( HID_FUNC_SINHYP );
3666 String 2 // Name of Parameter 1
3668 Text [ en-US ] = "number" ;
3670 String 3 // Description of Parameter 1
3672 Text [ en-US ] = "The value for which the hyperbolic sine is to be calculated." ;
3675 // -=*# Resource for function COTHYP #*=-
3676 Resource SC_OPCODE_COT_HYP
3678 String 1 // Description
3680 Text [ en-US ] = "Returns the hyperbolic cotangent of a number." ;
3685 ID_FUNCTION_GRP_MATH;
3686 U2S( HID_FUNC_COTHYP );
3690 String 2 // Name of Parameter 1
3692 Text [ en-US ] = "Number" ;
3694 String 3 // Description of Parameter 1
3696 Text [ en-US ] = "A value not equal to 0 for which the hyperbolic cotangent is to be returned." ;
3699 // -=*# Resource for function TANHYP #*=-
3700 Resource SC_OPCODE_TAN_HYP
3702 String 1 // Description
3704 Text [ en-US ] = "Returns the hyperbolic tangent of a number." ;
3709 ID_FUNCTION_GRP_MATH;
3710 U2S( HID_FUNC_TANHYP );
3714 String 2 // Name of Parameter 1
3716 Text [ en-US ] = "number" ;
3718 String 3 // Description of Parameter 1
3720 Text [ en-US ] = "The value for which the hyperbolic tangent is to be calculated." ;
3723 // -=*# Resource for function ARCTAN2 #*=-
3724 Resource SC_OPCODE_ARC_TAN_2
3726 String 1 // Description
3728 Text [ en-US ] = "Returns the arctangent for the specified coordinates." ;
3733 ID_FUNCTION_GRP_MATH;
3734 U2S( HID_FUNC_ARCTAN2 );
3738 String 2 // Name of Parameter 1
3740 Text [ en-US ] = "number_x" ;
3742 String 3 // Description of Parameter 1
3744 Text [ en-US ] = "The value for the x coordinate." ;
3746 String 4 // Name of Parameter 2
3748 Text [ en-US ] = "number_y" ;
3750 String 5 // Description of Parameter 2
3752 Text [ en-US ] = "The value for the y coordinate." ;
3756 // -=*# Resource for function CSC #*=-
3757 Resource SC_OPCODE_COSECANT
3759 String 1 // Description
3761 Text [ en-US ] = "Return the cosecant of an angle. CSC(x)=1/SIN(x)" ;
3766 ID_FUNCTION_GRP_MATH;
3767 U2S( HID_FUNC_COSECANT );
3771 String 2 // Name of Parameter 1
3773 Text [ en-US ] = "Angle" ;
3775 String 3 // Description of Parameter 1
3777 Text [ en-US ] = "The angle in radians for which the cosecant is to be calculated." ;
3781 // -=*# Resource for function SEC #*=-
3782 Resource SC_OPCODE_SECANT
3784 String 1 // Description
3786 Text [ en-US ] = "Return the secant of an angle. SEC(x)=1/COS(x)" ;
3791 ID_FUNCTION_GRP_MATH;
3792 U2S( HID_FUNC_SECANT );
3796 String 2 // Name of Parameter 1
3798 Text [ en-US ] = "Angle" ;
3800 String 3 // Description of Parameter 1
3802 Text [ en-US ] = "The angle in radians for which the secant is to be calculated." ;
3805 // -=*# Resource for function CSCH #*=-
3806 Resource SC_OPCODE_COSECANT_HYP
3808 String 1 // Description
3810 Text [ en-US ] = "Return the hyperbolic cosecant of a hyperbolic angle. CSCH(x)=1/SINH(x)" ;
3815 ID_FUNCTION_GRP_MATH;
3816 U2S( HID_FUNC_COSECANTHYP );
3820 String 2 // Name of Parameter 1
3822 Text [ en-US ] = "Angle" ;
3824 String 3 // Description of Parameter 1
3826 Text [ en-US ] = "The hyperbolic angle in radians for which the hyperbolic cosecant is to be calculated." ;
3829 // -=*# Resource for function SECH #*=-
3830 Resource SC_OPCODE_SECANT_HYP
3832 String 1 // Description
3834 Text [ en-US ] = "Return the hyperbolic secant of a hyperbolic angle. SECH(x)=1/COSH(x)" ;
3839 ID_FUNCTION_GRP_MATH;
3840 U2S( HID_FUNC_SECANTHYP );
3844 String 2 // Name of Parameter 1
3846 Text [ en-US ] = "Angle" ;
3848 String 3 // Description of Parameter 1
3850 Text [ en-US ] = "The hyperbolic angle in radians for which the hyperbolic secant is to be calculated." ;
3854 // -=*# Resource for function DEG #*=-
3855 Resource SC_OPCODE_DEG
3857 String 1 // Description
3859 Text [ en-US ] = "Converts a radian to degrees" ;
3864 ID_FUNCTION_GRP_MATH;
3865 U2S( HID_FUNC_DEG );
3869 String 2 // Name of Parameter 1
3871 Text [ en-US ] = "Number" ;
3873 String 3 // Description of Parameter 1
3875 Text [ en-US ] = "The angle in a radian" ;
3878 // -=*# Resource for function RAD #*=-
3879 Resource SC_OPCODE_RAD
3881 String 1 // Description
3883 Text [ en-US ] = "Converts degrees to radians" ;
3888 ID_FUNCTION_GRP_MATH;
3889 U2S( HID_FUNC_RAD );
3893 String 2 // Name of Parameter 1
3895 Text [ en-US ] = "Number" ;
3897 String 3 // Description of Parameter 1
3899 Text [ en-US ] = "The angle in degrees." ;
3902 // -=*# Resource for function EXP #*=-
3903 Resource SC_OPCODE_EXP
3905 String 1 // Description
3907 Text [ en-US ] = "Calculates the exponent for basis e." ;
3912 ID_FUNCTION_GRP_MATH;
3913 U2S( HID_FUNC_EXP );
3917 String 2 // Name of Parameter 1
3919 Text [ en-US ] = "Number" ;
3921 String 3 // Description of Parameter 1
3923 Text [ en-US ] = "The exponent applied to base e." ;
3926 // -=*# Resource for function LOG #*=-
3927 Resource SC_OPCODE_LOG
3929 String 1 // Description
3931 Text [ en-US ] = "Calculates the logarithm to any specified base." ;
3936 ID_FUNCTION_GRP_MATH;
3937 U2S( HID_FUNC_LOG );
3941 String 2 // Name of Parameter 1
3943 Text [ en-US ] = "Number" ;
3945 String 3 // Description of Parameter 1
3947 Text [ en-US ] = "A value greater than 0 for which the logarithm is to be calculated." ;
3949 String 4 // Name of Parameter 2
3951 Text [ en-US ] = "Base" ;
3953 String 5 // Description of Parameter 2
3955 Text [ en-US ] = "The base of the logarithm. If omitted, the base is regarded as 10." ;
3958 // -=*# Resource for function LN #*=-
3959 Resource SC_OPCODE_LN
3961 String 1 // Description
3963 Text [ en-US ] = "Calculates the natural logarithm of a number." ;
3968 ID_FUNCTION_GRP_MATH;
3973 String 2 // Name of Parameter 1
3975 Text [ en-US ] = "Number" ;
3977 String 3 // Description of Parameter 1
3979 Text [ en-US ] = "A value greater than 0 for which the natural logarithm is to be calculated." ;
3982 // -=*# Resource for function LOG10 #*=-
3983 Resource SC_OPCODE_LOG10
3985 String 1 // Description
3987 Text [ en-US ] = "Calculates the base-10 logarithm of a number." ;
3992 ID_FUNCTION_GRP_MATH;
3993 U2S( HID_FUNC_LOG10 );
3997 String 2 // Name of Parameter 1
3999 Text [ en-US ] = "Number" ;
4001 String 3 // Description of Parameter 1
4003 Text [ en-US ] = "A value greater than 0 for which the logarithm is to be calculated." ;
4006 // -=*# Resource for function FAKULTÄT #*=-
4007 Resource SC_OPCODE_FACT
4009 String 1 // Description
4011 Text [ en-US ] = "Calculates the factorial of a number." ;
4016 ID_FUNCTION_GRP_MATH;
4017 U2S( HID_FUNC_FAKULTAET );
4021 String 2 // Name of Parameter 1
4023 Text [ en-US ] = "Number" ;
4025 String 3 // Description of Parameter 1
4027 Text [ en-US ] = "The number for which the factorial is to be calculated." ;
4030 // -=*# Resource for function REST #*=-
4031 Resource SC_OPCODE_MOD
4033 String 1 // Description
4035 Text [ en-US ] = "Calculates the remainder of a division." ;
4040 ID_FUNCTION_GRP_MATH;
4041 U2S( HID_FUNC_REST );
4045 String 2 // Name of Parameter 1
4047 Text [ en-US ] = "Dividend" ;
4049 String 3 // Description of Parameter 1
4051 Text [ en-US ] = "The number to be divided." ;
4053 String 4 // Name of Parameter 2
4055 Text [ en-US ] = "Divisor" ;
4057 String 5 // Description of Parameter 2
4059 Text [ en-US ] = "The number by which the dividend is divided." ;
4062 // -=*# Resource for function VORZEICHEN #*=-
4063 Resource SC_OPCODE_PLUS_MINUS
4065 String 1 // Description
4067 Text [ en-US ] = "Returns the algebraic sign of a number." ;
4072 ID_FUNCTION_GRP_MATH;
4073 U2S( HID_FUNC_VORZEICHEN );
4077 String 2 // Name of Parameter 1
4079 Text [ en-US ] = "Number" ;
4081 String 3 // Description of Parameter 1
4083 Text [ en-US ] = "The number for which the algebraic sign is to be determined." ;
4086 // -=*# Resource for function TEILERGEBNIS #*=-
4087 Resource SC_OPCODE_SUB_TOTAL
4089 String 1 // Description
4091 Text [ en-US ] = "Calculates subtotals in a spreadsheet." ;
4096 ID_FUNCTION_GRP_MATH;
4097 U2S( HID_FUNC_TEILERGEBNIS );
4101 String 2 // Name of Parameter 1
4103 Text [ en-US ] = "Function" ;
4105 String 3 // Description of Parameter 1
4107 Text [ en-US ] = "Function index. Is an index of the possible functions Total, Max, ..." ;
4109 String 4 // Name of Parameter 2
4111 Text [ en-US ] = "range " ;
4113 String 5 // Description of Parameter 2
4115 Text [ en-US ] = "The cells of the range which are to be taken into account." ;
4118 // -=*# Resource for function GANZZAHL #*=-
4119 Resource SC_OPCODE_INT
4121 String 1 // Description
4123 Text [ en-US ] = "Rounds a number down to the nearest integer." ;
4128 ID_FUNCTION_GRP_MATH;
4129 U2S( HID_FUNC_GANZZAHL );
4133 String 2 // Name of Parameter 1
4135 Text [ en-US ] = "Number" ;
4137 String 3 // Description of Parameter 1
4139 Text [ en-US ] = "The number to be rounded down." ;
4142 // -=*# Resource for function KÃœRZEN #*=-
4143 Resource SC_OPCODE_TRUNC
4145 String 1 // Description
4147 Text [ en-US ] = "Truncates the decimal places of a number." ;
4152 ID_FUNCTION_GRP_MATH;
4153 U2S( HID_FUNC_KUERZEN );
4157 String 2 // Name of Parameter 1
4159 Text [ en-US ] = "number" ;
4161 String 3 // Description of Parameter 1
4163 Text [ en-US ] = "The number to be truncated." ;
4165 String 4 // Name of Parameter 2
4167 Text [ en-US ] = "count" ;
4169 String 5 // Description of Parameter 2
4171 Text [ en-US ] = "The number of places after the decimal point that are not to be truncated." ;
4174 // -=*# Resource for function RUNDEN #*=-
4175 Resource SC_OPCODE_ROUND
4177 String 1 // Description
4179 Text [ en-US ] = "Rounds a number to a predefined accuracy." ;
4184 ID_FUNCTION_GRP_MATH;
4185 U2S( HID_FUNC_RUNDEN );
4189 String 2 // Name of Parameter 1
4191 Text [ en-US ] = "number" ;
4193 String 3 // Description of Parameter 1
4195 Text [ en-US ] = "The number to be rounded." ;
4197 String 4 // Name of Parameter 2
4199 Text [ en-US ] = "count" ;
4201 String 5 // Description of Parameter 2
4203 Text [ en-US ] = "The number of places to which a number is to be rounded." ;
4206 // -=*# Resource for function AUFRUNDEN #*=-
4207 Resource SC_OPCODE_ROUND_UP
4209 String 1 // Description
4211 Text [ en-US ] = "Rounds a number up to the predefined accuracy." ;
4216 ID_FUNCTION_GRP_MATH;
4217 U2S( HID_FUNC_AUFRUNDEN );
4221 String 2 // Name of Parameter 1
4223 Text [ en-US ] = "number" ;
4225 String 3 // Description of Parameter 1
4227 Text [ en-US ] = "The number to be rounded up." ;
4229 String 4 // Name of Parameter 2
4231 Text [ en-US ] = "count" ;
4233 String 5 // Description of Parameter 2
4235 Text [ en-US ] = "The number of places to which a number is to be rounded." ;
4238 // -=*# Resource for function ABRUNDEN #*=-
4239 Resource SC_OPCODE_ROUND_DOWN
4241 String 1 // Description
4243 Text [ en-US ] = "Rounds a number down to a predefined accuracy." ;
4248 ID_FUNCTION_GRP_MATH;
4249 U2S( HID_FUNC_ABRUNDEN );
4253 String 2 // Name of Parameter 1
4255 Text [ en-US ] = "number" ;
4257 String 3 // Description of Parameter 1
4259 Text [ en-US ] = "The number to be rounded down." ;
4261 String 4 // Name of Parameter 2
4263 Text [ en-US ] = "count" ;
4265 String 5 // Description of Parameter 2
4267 Text [ en-US ] = "The number of places down to which a number is to be rounded." ;
4270 // -=*# Resource for function GERADE #*=-
4271 Resource SC_OPCODE_EVEN
4273 String 1 // Description
4275 Text [ en-US ] = "Rounds a positive number up and negative number down to the nearest even integer.";
4280 ID_FUNCTION_GRP_MATH;
4281 U2S( HID_FUNC_GERADE );
4285 String 2 // Name of Parameter 1
4287 Text [ en-US ] = "Number" ;
4289 String 3 // Description of Parameter 1
4291 Text [ en-US ] = "The number to be rounded up." ;
4294 // -=*# Resource for function UNGERADE #*=-
4295 Resource SC_OPCODE_ODD
4297 String 1 // Description
4299 Text [ en-US ] = "Rounds a positive number up and negative number down to the nearest odd integer.";
4304 ID_FUNCTION_GRP_MATH;
4305 U2S( HID_FUNC_UNGERADE );
4309 String 2 // Name of Parameter 1
4311 Text [ en-US ] = "Number" ;
4313 String 3 // Description of Parameter 1
4315 Text [ en-US ] = "The number to be rounded up." ;
4318 // -=*# Resource for function OBERGRENZE #*=-
4319 Resource SC_OPCODE_CEIL
4321 String 1 // Description
4323 Text [ en-US ] = "Rounds a number up to the nearest multiple of significance." ;
4328 ID_FUNCTION_GRP_MATH;
4329 U2S( HID_FUNC_OBERGRENZE );
4333 String 2 // Name of Parameter 1
4335 Text [ en-US ] = "Number" ;
4337 String 3 // Description of Parameter 1
4339 Text [ en-US ] = "The number to be rounded up." ;
4341 String 4 // Name of Parameter 2
4343 Text [ en-US ] = "Significance" ;
4345 String 5 // Description of Parameter 2
4347 Text [ en-US ] = "The number to whose multiple the value is rounded." ;
4349 String 6 // Name of Parameter 3
4351 Text [ en-US ] = "Mode" ;
4353 String 7 // Description of Parameter 3
4355 Text [ en-US ] = "If given and not equal to zero then rounded up according to amount when a negative number and significance." ;
4358 // -=*# Resource for function UNTERGRENZE #*=-
4359 Resource SC_OPCODE_FLOOR
4361 String 1 // Description
4363 Text [ en-US ] = "Rounds number down to the nearest multiple of significance." ;
4368 ID_FUNCTION_GRP_MATH;
4369 U2S( HID_FUNC_UNTERGRENZE );
4373 String 2 // Name of Parameter 1
4375 Text [ en-US ] = "Number" ;
4377 String 3 // Description of Parameter 1
4379 Text [ en-US ] = "The number to be rounded down." ;
4381 String 4 // Name of Parameter 2
4383 Text [ en-US ] = "Significance" ;
4385 String 5 // Description of Parameter 2
4387 Text [ en-US ] = "The number to whose multiple the value is to be rounded down." ;
4389 String 6 // Name of Parameter 3
4391 Text [ en-US ] = "Mode" ;
4393 String 7 // Description of Parameter 3
4395 Text [ en-US ] = "If given and not equal to zero then rounded down according to amount when a negative number and significance." ;
4398 // -=*# Resource for function GGT #*=-
4399 Resource SC_OPCODE_GGT
4401 String 1 // Description
4403 Text [ en-US ] = "Greatest Common Divisor" ;
4408 ID_FUNCTION_GRP_MATH;
4409 U2S( HID_FUNC_GGT );
4413 String 2 // Name of Parameter 1
4415 Text [ en-US ] = "Integer " ;
4417 String 3 // Description of Parameter 1
4419 Text [ en-US ] = "Integer 1; integer 2,... are integers for which the greatest common divisor is to be calculated." ;
4422 // -=*# Resource for function KGV #*=-
4423 Resource SC_OPCODE_KGV
4425 String 1 // Description
4427 Text [ en-US ] = "Lowest common multiple" ;
4432 ID_FUNCTION_GRP_MATH;
4433 U2S( HID_FUNC_KGV );
4437 String 2 // Name of Parameter 1
4439 Text [ en-US ] = "Integer " ;
4441 String 3 // Description of Parameter 1
4443 Text [ en-US ] = "Integer 1; integer 2,... are integers whose smallest common multiple is to be calculated." ;
4446 // -=*# Resource for function MTRANS #*=-
4447 Resource SC_OPCODE_MAT_TRANS
4449 String 1 // Description
4451 Text [ en-US ] = "Array transposition. Exchanges the rows and columns of an array." ;
4456 ID_FUNCTION_GRP_MATRIX;
4457 U2S( HID_FUNC_MTRANS );
4461 String 2 // Name of Parameter 1
4463 Text [ en-US ] = "array" ;
4465 String 3 // Description of Parameter 1
4467 Text [ en-US ] = "The array in which the rows and columns have been transposed." ;
4470 // -=*# Resource for function MMULT #*=-
4471 Resource SC_OPCODE_MAT_MULT
4473 String 1 // Description
4475 Text [ en-US ] = "Array multiplication. Returns the product of two arrays." ;
4480 ID_FUNCTION_GRP_MATRIX;
4481 U2S( HID_FUNC_MMULT );
4485 String 2 // Name of Parameter 1
4487 Text [ en-US ] = "array_1" ;
4489 String 3 // Description of Parameter 1
4491 Text [ en-US ] = "The first array for the array product." ;
4493 String 4 // Name of Parameter 2
4495 Text [ en-US ] = "array_2" ;
4497 String 5 // Description of Parameter 2
4499 Text [ en-US ] = "The second array having the same number of rows as the first array has columns." ;
4502 // -=*# Resource for function MDET #*=-
4503 Resource SC_OPCODE_MAT_DET
4505 String 1 // Description
4507 Text [ en-US ] = "Returns the array determinant." ;
4512 ID_FUNCTION_GRP_MATRIX;
4513 U2S( HID_FUNC_MDET );
4517 String 2 // Name of Parameter 1
4519 Text [ en-US ] = "array" ;
4521 String 3 // Description of Parameter 1
4523 Text [ en-US ] = "The array for which the determinant is to be determined." ;
4526 // -=*# Resource for function MINV #*=-
4527 Resource SC_OPCODE_MAT_INV
4529 String 1 // Description
4531 Text [ en-US ] = "Returns the inverse of an array." ;
4536 ID_FUNCTION_GRP_MATRIX;
4537 U2S( HID_FUNC_MINV );
4541 String 2 // Name of Parameter 1
4543 Text [ en-US ] = "array" ;
4545 String 3 // Description of Parameter 1
4547 Text [ en-US ] = "The array to be inverted." ;
4550 // -=*# Resource for function EINHEITSMATRIX #*=-
4551 Resource SC_OPCODE_MATRIX_UNIT
4553 String 1 // Description
4555 Text [ en-US ] = "Returns the unitary square array of a certain size." ;
4560 ID_FUNCTION_GRP_MATRIX;
4561 U2S( HID_FUNC_EINHEITSMATRIX );
4565 String 2 // Name of Parameter 1
4567 Text [ en-US ] = "Dimensions" ;
4569 String 3 // Description of Parameter 1
4571 Text [ en-US ] = "The size of the unitary array." ;
4574 // -=*# Resource for function SUMMENPRODUKT #*=-
4575 Resource SC_OPCODE_SUM_PRODUCT
4577 String 1 // Description
4579 Text [ en-US ] = "(Inner products) Returns the sum of the products of array arguments." ;
4584 ID_FUNCTION_GRP_MATRIX;
4585 U2S( HID_FUNC_SUMMENPRODUKT );
4589 String 2 // Name of Parameter 1
4591 Text [ en-US ] = "Array " ;
4593 String 3 // Description of Parameter 1
4595 Text [ en-US ] = "Array 1, array 2, ... are up to 30 arrays whose arguments are to be multiplied." ;
4598 // -=*# Resource for function SUMMEX2MY2 #*=-
4599 Resource SC_OPCODE_SUM_X2MY2
4601 String 1 // Description
4603 Text [ en-US ] = "Returns the sum of the difference of squares of two arrays." ;
4608 ID_FUNCTION_GRP_MATRIX;
4609 U2S( HID_FUNC_SUMMEX2MY2 );
4613 String 2 // Name of Parameter 1
4615 Text [ en-US ] = "array_x" ;
4617 String 3 // Description of Parameter 1
4619 Text [ en-US ] = "First array where the square of the arguments are totalled." ;
4621 String 4 // Name of Parameter 2
4623 Text [ en-US ] = "array_y" ;
4625 String 5 // Description of Parameter 2
4627 Text [ en-US ] = "Second array where the square of the arguments is to be subtracted." ;
4630 // -=*# Resource for function SUMMEX2PY2 #*=-
4631 Resource SC_OPCODE_SUM_X2DY2
4633 String 1 // Description
4635 Text [ en-US ] = "Returns the total of the square sum of two arrays." ;
4640 ID_FUNCTION_GRP_MATRIX;
4641 U2S( HID_FUNC_SUMMEX2PY2 );
4645 String 2 // Name of Parameter 1
4647 Text [ en-US ] = "array_x" ;
4649 String 3 // Description of Parameter 1
4651 Text [ en-US ] = "First array where the square of the arguments are totalled." ;
4653 String 4 // Name of Parameter 2
4655 Text [ en-US ] = "array_y" ;
4657 String 5 // Description of Parameter 2
4659 Text [ en-US ] = "Second array where the square of the arguments is to be totalled." ;
4662 // -=*# Resource for function SUMMEXMY2 #*=-
4663 Resource SC_OPCODE_SUM_XMY2
4665 String 1 // Description
4667 Text [ en-US ] = "Returns the sum of squares of differences of two arrays." ;
4672 ID_FUNCTION_GRP_MATRIX;
4673 U2S( HID_FUNC_SUMMEXMY2 );
4677 String 2 // Name of Parameter 1
4679 Text [ en-US ] = "array_x" ;
4681 String 3 // Description of Parameter 1
4683 Text [ en-US ] = "First array for forming argument differences." ;
4685 String 4 // Name of Parameter 2
4687 Text [ en-US ] = "array_y" ;
4689 String 5 // Description of Parameter 2
4691 Text [ en-US ] = "Second array for forming the argument differences." ;
4696 Resource RID_SC_FUNCTION_DESCRIPTIONS2
4698 // -=*# Resource for function HÄUFIGKEIT #*=-
4699 Resource SC_OPCODE_FREQUENCY
4701 String 1 // Description
4703 Text [ en-US ] = "Returns a frequency distribution as a vertical array." ;
4708 ID_FUNCTION_GRP_MATRIX;
4709 U2S( HID_FUNC_HAEUFIGKEIT );
4713 String 2 // Name of Parameter 1
4715 Text [ en-US ] = "data" ;
4717 String 3 // Description of Parameter 1
4719 Text [ en-US ] = "The array of the data." ;
4721 String 4 // Name of Parameter 2
4723 Text [ en-US ] = "classes" ;
4725 String 5 // Description of Parameter 2
4727 Text [ en-US ] = "The array for forming classes." ;
4730 // -=*# Resource for function RGP #*=-
4731 Resource SC_OPCODE_RGP
4733 String 1 // Description
4735 Text [ en-US ] = "Calculates parameters of the linear regression as an array." ;
4740 ID_FUNCTION_GRP_MATRIX;
4741 U2S( HID_FUNC_RGP );
4745 String 2 // Name of Parameter 1
4747 Text [ en-US ] = "data_Y" ;
4749 String 3 // Description of Parameter 1
4751 Text [ en-US ] = "The Y data array." ;
4753 String 4 // Name of Parameter 2
4755 Text [ en-US ] = "data_X" ;
4757 String 5 // Description of Parameter 2
4759 Text [ en-US ] = "The X data array." ;
4761 String 6 // Name of Parameter 3
4763 Text [ en-US ] = "Linear_type" ;
4765 String 7 // Description of Parameter 3
4767 Text [ en-US ] = "If type = 0 the linears will be calculated through the zero point, or else moved linears." ;
4769 String 8 // Name of Parameter 4
4771 Text [ en-US ] = "stats" ;
4773 String 9 // Description of Parameter 4
4775 Text [ en-US ] = "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well." ;
4778 // -=*# Resource for function RKP #*=-
4779 Resource SC_OPCODE_RKP
4781 String 1 // Description
4783 Text [ en-US ] = "Calculates the parameters of the exponential regression curve as an array." ;
4788 ID_FUNCTION_GRP_MATRIX;
4789 U2S( HID_FUNC_RKP );
4793 String 2 // Name of Parameter 1
4795 Text [ en-US ] = "data_Y" ;
4797 String 3 // Description of Parameter 1
4799 Text [ en-US ] = "The Y data array." ;
4801 String 4 // Name of Parameter 2
4803 Text [ en-US ] = "data_X" ;
4805 String 5 // Description of Parameter 2
4807 Text [ en-US ] = "The X data array." ;
4809 String 6 // Name of Parameter 3
4811 Text [ en-US ] = "Function_type" ;
4813 String 7 // Description of Parameter 3
4815 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." ;
4817 String 8 // Name of Parameter 4
4819 Text [ en-US ] = "stats" ;
4821 String 9 // Description of Parameter 4
4823 Text [ en-US ] = "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well." ;
4826 // -=*# Resource for function TREND #*=-
4827 Resource SC_OPCODE_TREND
4829 String 1 // Description
4831 Text [ en-US ] = "Calculates points along a regression line." ;
4836 ID_FUNCTION_GRP_MATRIX;
4837 U2S( HID_FUNC_TREND );
4841 String 2 // Name of Parameter 1
4843 Text [ en-US ] = "data_Y" ;
4845 String 3 // Description of Parameter 1
4847 Text [ en-US ] = "The Y data array." ;
4849 String 4 // Name of Parameter 2
4851 Text [ en-US ] = "data_X" ;
4853 String 5 // Description of Parameter 2
4855 Text [ en-US ] = "The X data array as the basis for the regression." ;
4857 String 6 // Name of Parameter 3
4859 Text [ en-US ] = "new data_X" ;
4861 String 7 // Description of Parameter 3
4863 Text [ en-US ] = "The array of X data for recalculating the values." ;
4865 String 8 // Name of Parameter 4
4867 Text [ en-US ] = "Linear_type" ;
4869 String 9 // Description of Parameter 4
4871 Text [ en-US ] = "If type = 0 the linears will be calculated through the zero point, or else moved linears." ;
4874 // -=*# Resource for function VARIATION #*=-
4875 Resource SC_OPCODE_GROWTH
4877 String 1 // Description
4879 Text [ en-US ] = "Calculates points on the exponential regression function." ;
4884 ID_FUNCTION_GRP_MATRIX;
4885 U2S( HID_FUNC_VARIATION );
4889 String 2 // Name of Parameter 1
4891 Text [ en-US ] = "data_Y" ;
4893 String 3 // Description of Parameter 1
4895 Text [ en-US ] = "The Y data array." ;
4897 String 4 // Name of Parameter 2
4899 Text [ en-US ] = "data_X" ;
4901 String 5 // Description of Parameter 2
4903 Text [ en-US ] = "The X data array as the basis for the regression." ;
4905 String 6 // Name of Parameter 3
4907 Text [ en-US ] = "new_data_X" ;
4909 String 7 // Description of Parameter 3
4911 Text [ en-US ] = "The array of X data for recalculating the values." ;
4913 String 8 // Name of Parameter 4
4915 Text [ en-US ] = "Function_type" ;
4917 String 9 // Description of Parameter 4
4919 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." ;
4922 // -=*# Resource for function ANZAHL #*=-
4923 Resource SC_OPCODE_COUNT
4925 String 1 // Description
4927 Text [ en-US ] = "Counts how many numbers are in the list of arguments." ;
4932 ID_FUNCTION_GRP_STATISTIC;
4933 U2S( HID_FUNC_ANZAHL );
4937 String 2 // Name of Parameter 1
4939 Text [ en-US ] = "value " ;
4941 String 3 // Description of Parameter 1
4943 Text [ en-US ] = "Value 1, value 2, ... are 1 to 30 arguments containing different data types but where only numbers are counted." ;
4946 // -=*# Resource for function ANZAHL2 #*=-
4947 Resource SC_OPCODE_COUNT_2
4949 String 1 // Description
4951 Text [ en-US ] = "Counts how many values are in the list of arguments." ;
4956 ID_FUNCTION_GRP_STATISTIC;
4957 U2S( HID_FUNC_ANZAHL2 );
4961 String 2 // Name of Parameter 1
4963 Text [ en-US ] = "value " ;
4965 String 3 // Description of Parameter 1
4967 Text [ en-US ] = "Value 1, value 2, ... are 1 to 30 arguments representing the values to be counted." ;
4970 // -=*# Resource for function MAX #*=-
4971 Resource SC_OPCODE_MAX
4973 String 1 // Description
4975 Text [ en-US ] = "Returns the maximum value in a list of arguments." ;
4980 ID_FUNCTION_GRP_STATISTIC;
4981 U2S( HID_FUNC_MAX );
4985 String 2 // Name of Parameter 1
4987 Text [ en-US ] = "number " ;
4989 String 3 // Description of Parameter 1
4991 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments for which the largest number is to be determined." ;
4994 // -=*# Resource for function MAXA #*=-
4995 Resource SC_OPCODE_MAX_A
4997 String 1 // Description
4999 Text [ en-US ] = "Returns the maximum value in a list of arguments. Text is evaluated as Zero.";
5004 ID_FUNCTION_GRP_STATISTIC;
5005 U2S( HID_FUNC_MAXA );
5009 String 2 // Name of Parameter 1
5011 Text [ en-US ] = "value ";
5013 String 3 // Description of Parameter 1
5015 Text [ en-US ] = "Value 1, value 2, are 1 to 30 arguments whose largest value is to be determined.";
5018 // -=*# Resource for function MIN #*=-
5019 Resource SC_OPCODE_MIN
5021 String 1 // Description
5023 Text [ en-US ] = "Returns the minimum value in a list of arguments." ;
5028 ID_FUNCTION_GRP_STATISTIC;
5029 U2S( HID_FUNC_MIN );
5033 String 2 // Name of Parameter 1
5035 Text [ en-US ] = "number " ;
5037 String 3 // Description of Parameter 1
5039 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments for which the smallest number is to be determined." ;
5042 // -=*# Resource for function MINA #*=-
5043 Resource SC_OPCODE_MIN_A
5045 String 1 // Description
5047 Text [ en-US ] = "Returns the smallest value in a list of arguments. Text is evaluated as zero.";
5052 ID_FUNCTION_GRP_STATISTIC;
5053 U2S( HID_FUNC_MINA );
5057 String 2 // Name of Parameter 1
5059 Text [ en-US ] = "value ";
5061 String 3 // Description of Parameter 1
5063 Text [ en-US ] = "Value 1; value 2;... are 1 to 30 arguments whose smallest number is to be determined.";
5066 // -=*# Resource for function VARIANZ #*=-
5067 Resource SC_OPCODE_VAR
5069 String 1 // Description
5071 Text [ en-US ] = "Calculates the variance based on a sample." ;
5076 ID_FUNCTION_GRP_STATISTIC;
5077 U2S( HID_FUNC_VARIANZ );
5081 String 2 // Name of Parameter 1
5083 Text [ en-US ] = "number " ;
5085 String 3 // Description of Parameter 1
5087 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." ;
5090 // -=*# Resource for function VAR.S #*=-
5091 Resource SC_OPCODE_VAR_S
5093 String 1 // Description
5095 Text [ en-US ] = "Calculates the variance based on a sample." ;
5100 ID_FUNCTION_GRP_STATISTIC;
5101 U2S( HID_FUNC_VAR_S );
5105 String 2 // Name of Parameter 1
5107 Text [ en-US ] = "number " ;
5109 String 3 // Description of Parameter 1
5111 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." ;
5114 // -=*# Resource for function VARIANZ #*=-
5115 Resource SC_OPCODE_VAR_A
5117 String 1 // Description
5119 Text [ en-US ] = "Returns the variance based on a sample. Text is evaluated as zero.";
5124 ID_FUNCTION_GRP_STATISTIC;
5125 U2S( HID_FUNC_VARIANZA );
5129 String 2 // Name of Parameter 1
5131 Text [ en-US ] = "value ";
5133 String 3 // Description of Parameter 1
5135 Text [ en-US ] = "Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from a basic total population.";
5138 // -=*# Resource for function VARIANZEN #*=-
5139 Resource SC_OPCODE_VAR_P
5141 String 1 // Description
5143 Text [ en-US ] = "Calculates variance based on the entire population." ;
5148 ID_FUNCTION_GRP_STATISTIC;
5149 U2S( HID_FUNC_VARIANZEN );
5153 String 2 // Name of Parameter 1
5155 Text [ en-US ] = "number " ;
5157 String 3 // Description of Parameter 1
5159 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which represent a population." ;
5162 // -=*# Resource for function VAR.P #*=-
5163 Resource SC_OPCODE_VAR_P_MS
5165 String 1 // Description
5167 Text [ en-US ] = "Calculates variance based on the entire population." ;
5172 ID_FUNCTION_GRP_STATISTIC;
5173 U2S( HID_FUNC_VAR_P_MS );
5177 String 2 // Name of Parameter 1
5179 Text [ en-US ] = "number " ;
5181 String 3 // Description of Parameter 1
5183 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which represent a population." ;
5186 // -=*# Resource for function VARIANZENA #*=-
5187 Resource SC_OPCODE_VAR_P_A
5189 String 1 // Description
5191 Text [ en-US ] = "Returns the variance based on the entire population. Text is evaluated as zero.";
5196 ID_FUNCTION_GRP_STATISTIC;
5197 U2S( HID_FUNC_VARIANZENA );
5201 String 2 // Name of Parameter 1
5203 Text [ en-US ] = "value ";
5205 String 3 // Description of Parameter 1
5207 Text [ en-US ] = "Value 1; value 2;... are 1 to 30 arguments representing a population.";
5210 // -=*# Resource for function STABW #*=-
5211 Resource SC_OPCODE_ST_DEV
5213 String 1 // Description
5215 Text [ en-US ] = "Calculates the standard deviation based on a sample." ;
5220 ID_FUNCTION_GRP_STATISTIC;
5221 U2S( HID_FUNC_STABW );
5225 String 2 // Name of Parameter 1
5227 Text [ en-US ] = "number " ;
5229 String 3 // Description of Parameter 1
5231 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." ;
5234 // -=*# Resource for function STDEV.S #*=-
5235 Resource SC_OPCODE_ST_DEV_S
5237 String 1 // Description
5239 Text [ en-US ] = "Calculates the standard deviation based on a sample." ;
5244 ID_FUNCTION_GRP_STATISTIC;
5245 U2S( HID_FUNC_ST_DEV_S );
5249 String 2 // Name of Parameter 1
5251 Text [ en-US ] = "number " ;
5253 String 3 // Description of Parameter 1
5255 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." ;
5258 // -=*# Resource for function STABWA #*=-
5259 Resource SC_OPCODE_ST_DEV_A
5261 String 1 // Description
5263 Text [ en-US ] = "Returns the standard deviation based on a sample. Text is evaluated as zero.";
5268 ID_FUNCTION_GRP_STATISTIC;
5269 U2S( HID_FUNC_STABWA );
5273 String 2 // Name of Parameter 1
5275 Text [ en-US ] = "value ";
5277 String 3 // Description of Parameter 1
5279 Text [ en-US ] = "Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from a basic total population.";
5282 // -=*# Resource for function STABWN #*=-
5283 Resource SC_OPCODE_ST_DEV_P
5285 String 1 // Description
5287 Text [ en-US ] = "Calculates the standard deviation based on the entire population." ;
5292 ID_FUNCTION_GRP_STATISTIC;
5293 U2S( HID_FUNC_STABWN );
5297 String 2 // Name of Parameter 1
5299 Text [ en-US ] = "number " ;
5301 String 3 // Description of Parameter 1
5303 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population." ;
5306 // -=*# Resource for function STDEV.P #*=-
5307 Resource SC_OPCODE_ST_DEV_P_MS
5309 String 1 // Description
5311 Text [ en-US ] = "Calculates the standard deviation based on the entire population." ;
5316 ID_FUNCTION_GRP_STATISTIC;
5317 U2S( HID_FUNC_ST_DEV_P_MS );
5321 String 2 // Name of Parameter 1
5323 Text [ en-US ] = "number " ;
5325 String 3 // Description of Parameter 1
5327 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population." ;
5330 // -=*# Resource for function STABWNA #*=-
5331 Resource SC_OPCODE_ST_DEV_P_A
5333 String 1 // Description
5335 Text [ en-US ] = "Returns the standard deviation based on the entire population. Text is evaluated as zero.";
5340 ID_FUNCTION_GRP_STATISTIC;
5341 U2S( HID_FUNC_STABWNA );
5345 String 2 // Name of Parameter 1
5347 Text [ en-US ] = "value ";
5349 String 3 // Description of Parameter 1
5351 Text [ en-US ] = "Value 1; value 2;... are 1 to 30 arguments corresponding to a population.";
5354 // -=*# Resource for function MITTELWERT #*=-
5355 Resource SC_OPCODE_AVERAGE
5357 String 1 // Description
5359 Text [ en-US ] = "Returns the average of a sample." ;
5364 ID_FUNCTION_GRP_STATISTIC;
5365 U2S( HID_FUNC_MITTELWERT );
5369 String 2 // Name of Parameter 1
5371 Text [ en-US ] = "number " ;
5373 String 3 // Description of Parameter 1
5375 Text [ en-US ] = "Number 1, number 2;...are 1 to 30 numeric arguments representing a population sample." ;
5378 // -=*# Resource for function MITTELWERTA #*=-
5379 Resource SC_OPCODE_AVERAGE_A
5381 String 1 // Description
5383 Text [ en-US ] = "Returns the average value for a sample. Text is evaluated as zero.";
5388 ID_FUNCTION_GRP_STATISTIC;
5389 U2S( HID_FUNC_MITTELWERTA );
5393 String 2 // Name of Parameter 1
5395 Text [ en-US ] = "value ";
5397 String 3 // Description of Parameter 1
5399 Text [ en-US ] = "Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from a basic total population.";
5402 // -=*# Resource for function SUMQUADABW #*=-
5403 Resource SC_OPCODE_DEV_SQ
5405 String 1 // Description
5407 Text [ en-US ] = "Returns the sum of squares of deviations from the sample mean value" ;
5412 ID_FUNCTION_GRP_STATISTIC;
5413 U2S( HID_FUNC_SUMQUADABW );
5417 String 2 // Name of Parameter 1
5419 Text [ en-US ] = "number " ;
5421 String 3 // Description of Parameter 1
5423 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." ;
5426 // -=*# Resource for function MITTELABW #*=-
5427 Resource SC_OPCODE_AVE_DEV
5429 String 1 // Description
5431 Text [ en-US ] = "Returns the average of the absolute deviations of a sample from the mean." ;
5436 ID_FUNCTION_GRP_STATISTIC;
5437 U2S( HID_FUNC_MITTELABW );
5441 String 2 // Name of Parameter 1
5443 Text [ en-US ] = "number " ;
5445 String 3 // Description of Parameter 1
5447 Text [ en-US ] = "Number 1, number 2;...are 1 to 30 numerical arguments representing a sample." ;
5450 // -=*# Resource for function SCHIEFE #*=-
5451 Resource SC_OPCODE_SCHIEFE
5453 String 1 // Description
5455 Text [ en-US ] = "Returns the skewness of a distribution." ;
5460 ID_FUNCTION_GRP_STATISTIC;
5461 U2S( HID_FUNC_SCHIEFE );
5465 String 2 // Name of Parameter 1
5467 Text [ en-US ] = "number " ;
5469 String 3 // Description of Parameter 1
5471 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments portraying a sample of the distribution." ;
5474 // -=*# Resource for function SKEWP #*=-
5475 Resource SC_OPCODE_SKEWP
5477 String 1 // Description
5479 Text [ en-US ] = "Returns the skewness of a distribution using the population of a random variable." ;
5484 ID_FUNCTION_GRP_STATISTIC;
5485 U2S( HID_FUNC_SKEWP );
5489 String 2 // Name of Parameter 1
5491 Text [ en-US ] = "number " ;
5493 String 3 // Description of Parameter 1
5495 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments portraying the population." ;
5498 // -=*# Resource for function KURT #*=-
5499 Resource SC_OPCODE_KURT
5501 String 1 // Description
5503 Text [ en-US ] = "Returns the kurtosis of a distribution." ;
5508 ID_FUNCTION_GRP_STATISTIC;
5509 U2S( HID_FUNC_KURT );
5513 String 2 // Name of Parameter 1
5515 Text [ en-US ] = "number " ;
5517 String 3 // Description of Parameter 1
5519 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments, representing a sample of the distribution." ;
5522 // -=*# Resource for function GEOMITTEL #*=-
5523 Resource SC_OPCODE_GEO_MEAN
5525 String 1 // Description
5527 Text [ en-US ] = "Returns the geometric mean of a sample." ;
5532 ID_FUNCTION_GRP_STATISTIC;
5533 U2S( HID_FUNC_GEOMITTEL );
5537 String 2 // Name of Parameter 1
5539 Text [ en-US ] = "number " ;
5541 String 3 // Description of Parameter 1
5543 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." ;
5546 // -=*# Resource for function HARMITTEL #*=-
5547 Resource SC_OPCODE_HAR_MEAN
5549 String 1 // Description
5551 Text [ en-US ] = "Returns the harmonic mean of a sample." ;
5556 ID_FUNCTION_GRP_STATISTIC;
5557 U2S( HID_FUNC_HARMITTEL );
5561 String 2 // Name of Parameter 1
5563 Text [ en-US ] = "number " ;
5565 String 3 // Description of Parameter 1
5567 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." ;
5570 // -=*# Resource for function MODALWERT #*=-
5571 Resource SC_OPCODE_MODAL_VALUE
5573 String 1 // Description
5575 Text [ en-US ] = "Returns the most common value in a sample." ;
5580 ID_FUNCTION_GRP_STATISTIC;
5581 U2S( HID_FUNC_MODALWERT );
5585 String 2 // Name of Parameter 1
5587 Text [ en-US ] = "number " ;
5589 String 3 // Description of Parameter 1
5591 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." ;
5594 // -=*# Resource for function MEDIAN #*=-
5595 Resource SC_OPCODE_MEDIAN
5597 String 1 // Description
5599 Text [ en-US ] = "Returns the median of a given sample." ;
5604 ID_FUNCTION_GRP_STATISTIC;
5605 U2S( HID_FUNC_MEDIAN );
5609 String 2 // Name of Parameter 1
5611 Text [ en-US ] = "number " ;
5613 String 3 // Description of Parameter 1
5615 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." ;
5618 // -=*# Resource for function QUANTIL #*=-
5619 Resource SC_OPCODE_PERCENTILE
5621 String 1 // Description
5623 Text [ en-US ] = "Returns the alpha quantile of a sample." ;
5628 ID_FUNCTION_GRP_STATISTIC;
5629 U2S( HID_FUNC_QUANTIL );
5633 String 2 // Name of Parameter 1
5635 Text [ en-US ] = "data" ;
5637 String 3 // Description of Parameter 1
5639 Text [ en-US ] = "The array of the data in the sample." ;
5641 String 4 // Name of Parameter 2
5643 Text [ en-US ] = "Alpha" ;
5645 String 5 // Description of Parameter 2
5647 Text [ en-US ] = "The percentage rate of the quantile between 0 and 1." ;
5650 // -=*# Resource for function QUARTILE #*=-
5651 Resource SC_OPCODE_QUARTILE
5653 String 1 // Description
5655 Text [ en-US ] = "Returns the quartile of a sample." ;
5660 ID_FUNCTION_GRP_STATISTIC;
5661 U2S( HID_FUNC_QUARTILE );
5665 String 2 // Name of Parameter 1
5667 Text [ en-US ] = "data" ;
5669 String 3 // Description of Parameter 1
5671 Text [ en-US ] = "The array of the data in the sample." ;
5673 String 4 // Name of Parameter 2
5675 Text [ en-US ] = "Type" ;
5677 String 5 // Description of Parameter 2
5679 Text [ en-US ] = "The type of the quartile (0 = MIN, 1 = 25%, 2 = 50 %, 3 = 75 %, 4 =MAX)." ;
5682 // -=*# Resource for function KGRÖSSTE #*=-
5683 Resource SC_OPCODE_LARGE
5685 String 1 // Description
5687 Text [ en-US ] = "Returns the k-th largest value of a sample." ;
5692 ID_FUNCTION_GRP_STATISTIC;
5693 U2S( HID_FUNC_KGROESSTE );
5697 String 2 // Name of Parameter 1
5699 Text [ en-US ] = "data" ;
5701 String 3 // Description of Parameter 1
5703 Text [ en-US ] = "The array of the data in the sample." ;
5705 String 4 // Name of Parameter 2
5707 Text [ en-US ] = "Rank_c" ;
5709 String 5 // Description of Parameter 2
5711 Text [ en-US ] = "The ranking of the value." ;
5714 // -=*# Resource for function KKLEINSTE #*=-
5715 Resource SC_OPCODE_SMALL
5717 String 1 // Description
5719 Text [ en-US ] = "Returns the k-th smallest value of a sample." ;
5724 ID_FUNCTION_GRP_STATISTIC;
5725 U2S( HID_FUNC_KKLEINSTE );
5729 String 2 // Name of Parameter 1
5731 Text [ en-US ] = "data" ;
5733 String 3 // Description of Parameter 1
5735 Text [ en-US ] = "The array of the data in the sample." ;
5737 String 4 // Name of Parameter 2
5739 Text [ en-US ] = "Rank_c" ;
5741 String 5 // Description of Parameter 2
5743 Text [ en-US ] = "The ranking of the value." ;
5746 // -=*# Resource for function QUANTILSRANG #*=-
5747 Resource SC_OPCODE_PERCENT_RANK
5749 String 1 // Description
5751 Text [ en-US ] = "Returns the percentage rank of a value in a sample." ;
5756 ID_FUNCTION_GRP_STATISTIC;
5757 U2S( HID_FUNC_QUANTILSRANG );
5761 String 2 // Name of Parameter 1
5763 Text [ en-US ] = "data" ;
5765 String 3 // Description of Parameter 1
5767 Text [ en-US ] = "The array of the data in the sample." ;
5769 String 4 // Name of Parameter 2
5771 Text [ en-US ] = "value" ;
5773 String 5 // Description of Parameter 2
5775 Text [ en-US ] = "The value for which percentage ranking is to be determined." ;
5778 // -=*# Resource for function RANG #*=-
5779 Resource SC_OPCODE_RANK
5781 String 1 // Description
5783 Text [ en-US ] = "Returns the ranking of a value in a sample." ;
5788 ID_FUNCTION_GRP_STATISTIC;
5789 U2S( HID_FUNC_RANG );
5793 String 2 // Name of Parameter 1
5795 Text [ en-US ] = "value" ;
5797 String 3 // Description of Parameter 1
5799 Text [ en-US ] = "The value for which the rank is to be determined." ;
5801 String 4 // Name of Parameter 2
5803 Text [ en-US ] = "Data" ;
5805 String 5 // Description of Parameter 2
5807 Text [ en-US ] = "The array of the data in the sample." ;
5809 String 6 // Name of Parameter 3
5811 Text [ en-US ] = "Type" ;
5813 String 7 // Description of Parameter 3
5815 Text [ en-US ] = "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." ;
5818 // -=*# Resource for function GESTUTZTMITTEL #*=-
5819 Resource SC_OPCODE_TRIM_MEAN
5821 String 1 // Description
5823 Text [ en-US ] = "Returns the mean of a sample without including the marginal values." ;
5828 ID_FUNCTION_GRP_STATISTIC;
5829 U2S( HID_FUNC_GESTUTZTMITTEL );
5833 String 2 // Name of Parameter 1
5835 Text [ en-US ] = "data" ;
5837 String 3 // Description of Parameter 1
5839 Text [ en-US ] = "The array of the data in the sample." ;
5841 String 4 // Name of Parameter 2
5843 Text [ en-US ] = "Alpha" ;
5845 String 5 // Description of Parameter 2
5847 Text [ en-US ] = "The percentage of marginal data that is not to be taken into account." ;
5850 // -=*# Resource for function WAHRSCHBEREICH #*=-
5851 Resource SC_OPCODE_PROB
5853 String 1 // Description
5855 Text [ en-US ] = "Returns the discrete probability of an interval." ;
5860 ID_FUNCTION_GRP_STATISTIC;
5861 U2S( HID_FUNC_WAHRSCHBEREICH );
5865 String 2 // Name of Parameter 1
5867 Text [ en-US ] = "data" ;
5869 String 3 // Description of Parameter 1
5871 Text [ en-US ] = "The sample data array." ;
5873 String 4 // Name of Parameter 2
5875 Text [ en-US ] = "probability" ;
5877 String 5 // Description of Parameter 2
5879 Text [ en-US ] = "The array of the associated probabilities." ;
5881 String 6 // Name of Parameter 3
5883 Text [ en-US ] = "Start" ;
5885 String 7 // Description of Parameter 3
5887 Text [ en-US ] = "The start of the value interval whose probabilities is to be totalled." ;
5889 String 8 // Name of Parameter 4
5891 Text [ en-US ] = "End" ;
5893 String 9 // Description of Parameter 4
5895 Text [ en-US ] = "The end of the value interval where the probabilities are to be totalled." ;
5898 // -=*# Resource for function B #*=-
5899 Resource SC_OPCODE_B
5901 String 1 // Description
5903 Text [ en-US ] = "Returns the probability of a trial result using binomial distribution." ;
5908 ID_FUNCTION_GRP_STATISTIC;
5913 String 2 // Name of Parameter 1
5915 Text [ en-US ] = "trials" ;
5917 String 3 // Description of Parameter 1
5919 Text [ en-US ] = "The number of trials." ;
5921 String 4 // Name of Parameter 2
5923 Text [ en-US ] = "SP" ;
5925 String 5 // Description of Parameter 2
5927 Text [ en-US ] = "The individual probability of a trial result." ;
5929 String 6 // Name of Parameter 3
5931 Text [ en-US ] = "T_1" ;
5933 String 7 // Description of Parameter 3
5935 Text [ en-US ] = "Lower limit for the number of trials." ;
5937 String 8 // Name of Parameter 4
5939 Text [ en-US ] = "T_2" ;
5941 String 9 // Description of Parameter 4
5943 Text [ en-US ] = "Upper limit for the number of trials." ;
5946 // -=*# Resource for function PHI #*=-
5947 Resource SC_OPCODE_PHI
5949 String 1 // Description
5951 Text [ en-US ] = "Values of the distribution function for a standard normal distribution." ;
5956 ID_FUNCTION_GRP_STATISTIC;
5957 U2S( HID_FUNC_PHI );
5961 String 2 // Name of Parameter 1
5963 Text [ en-US ] = "number" ;
5965 String 3 // Description of Parameter 1
5967 Text [ en-US ] = "The value for which the standard normal distribution is to be calculated." ;
5970 // -=*# Resource for function GAUSS #*=-
5971 Resource SC_OPCODE_GAUSS
5973 String 1 // Description
5975 Text [ en-US ] = "Returns the integral values of the standard normal cumulative distribution." ;
5980 ID_FUNCTION_GRP_STATISTIC;
5981 U2S( HID_FUNC_GAUSS );
5985 String 2 // Name of Parameter 1
5987 Text [ en-US ] = "Number" ;
5989 String 3 // Description of Parameter 1
5991 Text [ en-US ] = "The value for which the integral value of the standard normal distribution is to be calculated." ;
5994 // -=*# Resource for function FISHER #*=-
5995 Resource SC_OPCODE_FISHER
5997 String 1 // Description
5999 Text [ en-US ] = "Returns the Fisher transformation." ;
6004 ID_FUNCTION_GRP_STATISTIC;
6005 U2S( HID_FUNC_FISHER );
6009 String 2 // Name of Parameter 1
6011 Text [ en-US ] = "Number" ;
6013 String 3 // Description of Parameter 1
6015 Text [ en-US ] = "The value to be transformed (-1 < VALUE < 1)." ;
6018 // -=*# Resource for function FISHERINV #*=-
6019 Resource SC_OPCODE_FISHER_INV
6021 String 1 // Description
6023 Text [ en-US ] = "Returns the inverse of the Fisher transformation." ;
6028 ID_FUNCTION_GRP_STATISTIC;
6029 U2S( HID_FUNC_FISHERINV );
6033 String 2 // Name of Parameter 1
6035 Text [ en-US ] = "Number" ;
6037 String 3 // Description of Parameter 1
6039 Text [ en-US ] = "The value that is to be transformed back." ;
6042 // -=*# Resource for function BINOMVERT #*=-
6043 Resource SC_OPCODE_BINOM_DIST
6045 String 1 // Description
6047 Text [ en-US ] = "Values of the binomial distribution." ;
6052 ID_FUNCTION_GRP_STATISTIC;
6053 U2S( HID_FUNC_BINOMVERT );
6057 String 2 // Name of Parameter 1
6059 Text [ en-US ] = "X" ;
6061 String 3 // Description of Parameter 1
6063 Text [ en-US ] = "The number of successes in a series of trials." ;
6065 String 4 // Name of Parameter 2
6067 Text [ en-US ] = "trials" ;
6069 String 5 // Description of Parameter 2
6071 Text [ en-US ] = "The total number of trials." ;
6073 String 6 // Name of Parameter 3
6075 Text [ en-US ] = "SP" ;
6077 String 7 // Description of Parameter 3
6079 Text [ en-US ] = "The success probability of a trial." ;
6081 String 8 // Name of Parameter 4
6083 Text [ en-US ] = "C" ;
6085 String 9 // Description of Parameter 4
6087 Text [ en-US ] = "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability." ;
6090 // -=*# Resource for function BINOM.DIST #*=-
6091 Resource SC_OPCODE_BINOM_DIST_MS
6093 String 1 // Description
6095 Text [ en-US ] = "Values of the binomial distribution." ;
6100 ID_FUNCTION_GRP_STATISTIC;
6101 U2S( HID_FUNC_BINOM_DIST_MS );
6105 String 2 // Name of Parameter 1
6107 Text [ en-US ] = "X" ;
6109 String 3 // Description of Parameter 1
6111 Text [ en-US ] = "The number of successes in a series of trials." ;
6113 String 4 // Name of Parameter 2
6115 Text [ en-US ] = "trials" ;
6117 String 5 // Description of Parameter 2
6119 Text [ en-US ] = "The total number of trials." ;
6121 String 6 // Name of Parameter 3
6123 Text [ en-US ] = "SP" ;
6125 String 7 // Description of Parameter 3
6127 Text [ en-US ] = "The success probability of a trial." ;
6129 String 8 // Name of Parameter 4
6131 Text [ en-US ] = "C" ;
6133 String 9 // Description of Parameter 4
6135 Text [ en-US ] = "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability." ;
6138 // -=*# Resource for function NEGBINOMVERT #*=-
6139 Resource SC_OPCODE_NEG_BINOM_VERT
6141 String 1 // Description
6143 Text [ en-US ] = "Values of the negative binomial distribution." ;
6148 ID_FUNCTION_GRP_STATISTIC;
6149 U2S( HID_FUNC_NEGBINOMVERT );
6153 String 2 // Name of Parameter 1
6155 Text [ en-US ] = "X" ;
6157 String 3 // Description of Parameter 1
6159 Text [ en-US ] = "The number of failures in the trial range." ;
6161 String 4 // Name of Parameter 2
6163 Text [ en-US ] = "R" ;
6165 String 5 // Description of Parameter 2
6167 Text [ en-US ] = "The number of successes in the trial sequence." ;
6169 String 6 // Name of Parameter 3
6171 Text [ en-US ] = "SP" ;
6173 String 7 // Description of Parameter 3
6175 Text [ en-US ] = "The success probability of a trial." ;
6178 // -=*# Resource for function KRITBINOM #*=-
6179 Resource SC_OPCODE_KRIT_BINOM
6181 String 1 // Description
6183 Text [ en-US ] = "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value." ;
6188 ID_FUNCTION_GRP_STATISTIC;
6189 U2S( HID_FUNC_KRITBINOM );
6193 String 2 // Name of Parameter 1
6195 Text [ en-US ] = "trials" ;
6197 String 3 // Description of Parameter 1
6199 Text [ en-US ] = "The total number of trials." ;
6201 String 4 // Name of Parameter 2
6203 Text [ en-US ] = "SP" ;
6205 String 5 // Description of Parameter 2
6207 Text [ en-US ] = "The success probability of a trial." ;
6209 String 6 // Name of Parameter 3
6211 Text [ en-US ] = "alpha" ;
6213 String 7 // Description of Parameter 3
6215 Text [ en-US ] = "The border probability that is attained or exceeded." ;
6218 // -=*# Resource for function BINOM.INV #*=-
6219 Resource SC_OPCODE_BINOM_INV
6221 String 1 // Description
6223 Text [ en-US ] = "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value." ;
6228 ID_FUNCTION_GRP_STATISTIC;
6229 U2S( HID_FUNC_BINOM_INV_MS );
6233 String 2 // Name of Parameter 1
6235 Text [ en-US ] = "trials" ;
6237 String 3 // Description of Parameter 1
6239 Text [ en-US ] = "The total number of trials." ;
6241 String 4 // Name of Parameter 2
6243 Text [ en-US ] = "SP" ;
6245 String 5 // Description of Parameter 2
6247 Text [ en-US ] = "The success probability of a trial." ;
6249 String 6 // Name of Parameter 3
6251 Text [ en-US ] = "alpha" ;
6253 String 7 // Description of Parameter 3
6255 Text [ en-US ] = "The border probability that is attained or exceeded." ;
6258 // -=*# Resource for function POISSON #*=-
6259 Resource SC_OPCODE_POISSON_DIST
6261 String 1 // Description
6263 Text [ en-US ] = "Returns the Poisson distribution." ;
6268 ID_FUNCTION_GRP_STATISTIC;
6269 U2S( HID_FUNC_POISSON );
6273 String 2 // Name of Parameter 1
6275 Text [ en-US ] = "Number" ;
6277 String 3 // Description of Parameter 1
6279 Text [ en-US ] = "The value for which the Poisson distribution is to be calculated." ;
6281 String 4 // Name of Parameter 2
6283 Text [ en-US ] = "mean" ;
6285 String 5 // Description of Parameter 2
6287 Text [ en-US ] = "Mean. The mean value of the Poisson distribution." ;
6289 String 6 // Name of Parameter 3
6291 Text [ en-US ] = "Cumulative" ;
6293 String 7 // Description of Parameter 3
6295 Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
6298 // -=*# Resource for function POISSON.DIST #*=-
6299 Resource SC_OPCODE_POISSON_DIST_MS
6301 String 1 // Description
6303 Text [ en-US ] = "Returns the Poisson distribution." ;
6308 ID_FUNCTION_GRP_STATISTIC;
6309 U2S( HID_FUNC_POISSON_DIST_MS );
6313 String 2 // Name of Parameter 1
6315 Text [ en-US ] = "Number" ;
6317 String 3 // Description of Parameter 1
6319 Text [ en-US ] = "The value for which the Poisson distribution is to be calculated." ;
6321 String 4 // Name of Parameter 2
6323 Text [ en-US ] = "mean" ;
6325 String 5 // Description of Parameter 2
6327 Text [ en-US ] = "Mean. The mean value of the Poisson distribution." ;
6329 String 6 // Name of Parameter 3
6331 Text [ en-US ] = "Cumulative" ;
6333 String 7 // Description of Parameter 3
6335 Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
6338 // -=*# Resource for function NORMVERT #*=-
6339 Resource SC_OPCODE_NORM_DIST
6341 String 1 // Description
6343 Text [ en-US ] = "Values of the normal distribution." ;
6348 ID_FUNCTION_GRP_STATISTIC;
6349 U2S( HID_FUNC_NORMVERT );
6353 String 2 // Name of Parameter 1
6355 Text [ en-US ] = "Number" ;
6357 String 3 // Description of Parameter 1
6359 Text [ en-US ] = "The value for which the normal distribution is to be calculated." ;
6361 String 4 // Name of Parameter 2
6363 Text [ en-US ] = "Mean" ;
6365 String 5 // Description of Parameter 2
6367 Text [ en-US ] = "The mean value. The mean value of the normal distribution." ;
6369 String 6 // Name of Parameter 3
6371 Text [ en-US ] = "STDEV" ;
6373 String 7 // Description of Parameter 3
6375 Text [ en-US ] = "Standard deviation. The standard deviation of the normal distribution." ;
6377 String 8 // Name of Parameter 4
6379 Text [ en-US ] = "C" ;
6381 String 9 // Description of Parameter 4
6383 Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
6386 // -=*# Resource for function NORMINV #*=-
6387 Resource SC_OPCODE_NORM_INV
6389 String 1 // Description
6391 Text [ en-US ] = "Values of the inverse normal distribution." ;
6396 ID_FUNCTION_GRP_STATISTIC;
6397 U2S( HID_FUNC_NORMINV );
6401 String 2 // Name of Parameter 1
6403 Text [ en-US ] = "number" ;
6405 String 3 // Description of Parameter 1
6407 Text [ en-US ] = "The probability value for which the inverse normal distribution is to be calculated." ;
6409 String 4 // Name of Parameter 2
6411 Text [ en-US ] = "mean" ;
6413 String 5 // Description of Parameter 2
6415 Text [ en-US ] = "The mean value. The mean value of the normal distribution." ;
6417 String 6 // Name of Parameter 3
6419 Text [ en-US ] = "STDEV" ;
6421 String 7 // Description of Parameter 3
6423 Text [ en-US ] = "Standard deviation. The standard deviation of the normal distribution." ;
6426 // -=*# Resource for function STANDNORMVERT #*=-
6427 Resource SC_OPCODE_STD_NORM_DIST
6429 String 1 // Description
6431 Text [ en-US ] = "The values of the standard normal cumulative distribution." ;
6436 ID_FUNCTION_GRP_STATISTIC;
6437 U2S( HID_FUNC_STANDNORMVERT );
6441 String 2 // Name of Parameter 1
6443 Text [ en-US ] = "Number" ;
6445 String 3 // Description of Parameter 1
6447 Text [ en-US ] = "The value for which the standard normal distribution is to be calculated." ;
6450 // -=*# Resource for function STANDNORMINV #*=-
6451 Resource SC_OPCODE_S_NORM_INV
6453 String 1 // Description
6455 Text [ en-US ] = "Values of the inverse standard normal distribution." ;
6460 ID_FUNCTION_GRP_STATISTIC;
6461 U2S( HID_FUNC_STANDNORMINV );
6465 String 2 // Name of Parameter 1
6467 Text [ en-US ] = "number" ;
6469 String 3 // Description of Parameter 1
6471 Text [ en-US ] = "The probability value for which the inverse standard normal distribution is to be calculated." ;
6474 // -=*# Resource for function LOGNORMVERT #*=-
6475 Resource SC_OPCODE_LOG_NORM_DIST
6477 String 1 // Description
6479 Text [ en-US ] = "Values of the log normal distribution." ;
6484 ID_FUNCTION_GRP_STATISTIC;
6485 U2S( HID_FUNC_LOGNORMVERT );
6489 String 2 // Name of Parameter 1
6491 Text [ en-US ] = "Number" ;
6493 String 3 // Description of Parameter 1
6495 Text [ en-US ] = "The value for which the log normal distribution is to be calculated." ;
6497 String 4 // Name of Parameter 2
6499 Text [ en-US ] = "mean" ;
6501 String 5 // Description of Parameter 2
6503 Text [ en-US ] = "The mean value of the log normal distribution. It is set to 0 if omitted." ;
6505 String 6 // Name of Parameter 3
6507 Text [ en-US ] = "STDEV" ;
6509 String 7 // Description of Parameter 3
6511 Text [ en-US ] = "The standard deviation of the log normal distribution. It is set to 1 if omitted." ;
6513 String 8 // Name of Parameter 4
6515 Text [ en-US] = "Cumulative";
6517 String 9 // Description of Parameter 4
6519 Text [ en-US] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
6522 // -=*# Resource for function LOGINV #*=-
6523 Resource SC_OPCODE_LOG_INV
6525 String 1 // Description
6527 Text [ en-US ] = "Values of the inverse of the lognormal distribution." ;
6532 ID_FUNCTION_GRP_STATISTIC;
6533 U2S( HID_FUNC_LOGINV );
6537 String 2 // Name of Parameter 1
6539 Text [ en-US ] = "number" ;
6541 String 3 // Description of Parameter 1
6543 Text [ en-US ] = "The probability value for which the inverse log normal distribution is to be calculated." ;
6545 String 4 // Name of Parameter 2
6547 Text [ en-US ] = "mean" ;
6549 String 5 // Description of Parameter 2
6551 Text [ en-US ] = "Mean value. The mean value of the log normal distribution." ;
6553 String 6 // Name of Parameter 3
6555 Text [ en-US ] = "STDEV" ;
6557 String 7 // Description of Parameter 3
6559 Text [ en-US ] = "Standard deviation. The standard deviation of the log normal distribution." ;
6562 // -=*# Resource for function EXPONVERT #*=-
6563 Resource SC_OPCODE_EXP_DIST
6565 String 1 // Description
6567 Text [ en-US ] = "Values of the exponential distribution." ;
6572 ID_FUNCTION_GRP_STATISTIC;
6573 U2S( HID_FUNC_EXPONVERT );
6577 String 2 // Name of Parameter 1
6579 Text [ en-US ] = "Number" ;
6581 String 3 // Description of Parameter 1
6583 Text [ en-US ] = "The value to which the exponential distribution is to be calculated." ;
6585 String 4 // Name of Parameter 2
6587 Text [ en-US ] = "lambda" ;
6589 String 5 // Description of Parameter 2
6591 Text [ en-US ] = "The parameters of the exponential distribution." ;
6593 String 6 // Name of Parameter 3
6595 Text [ en-US ] = "C" ;
6597 String 7 // Description of Parameter 3
6599 Text [ en-US ] = "Cumulated. C=0 calculates the density function, C=1 the distribution." ;
6602 // -=*# Resource for function EXPON.DIST #*=-
6603 Resource SC_OPCODE_EXP_DIST_MS
6605 String 1 // Description
6607 Text [ en-US ] = "Values of the exponential distribution." ;
6612 ID_FUNCTION_GRP_STATISTIC;
6613 U2S( HID_FUNC_EXP_DIST_MS );
6617 String 2 // Name of Parameter 1
6619 Text [ en-US ] = "Number" ;
6621 String 3 // Description of Parameter 1
6623 Text [ en-US ] = "The value to which the exponential distribution is to be calculated." ;
6625 String 4 // Name of Parameter 2
6627 Text [ en-US ] = "lambda" ;
6629 String 5 // Description of Parameter 2
6631 Text [ en-US ] = "The parameters of the exponential distribution." ;
6633 String 6 // Name of Parameter 3
6635 Text [ en-US ] = "C" ;
6637 String 7 // Description of Parameter 3
6639 Text [ en-US ] = "Cumulated. C=0 calculates the density function, C=1 the distribution." ;
6642 // -=*# Resource for function GAMMAVERT #*=-
6643 Resource SC_OPCODE_GAMMA_DIST
6645 String 1 // Description
6647 Text [ en-US ] = "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution." ;
6652 ID_FUNCTION_GRP_STATISTIC;
6653 U2S( HID_FUNC_GAMMAVERT );
6657 String 2 // Name of Parameter 1
6659 Text [ en-US ] = "Number" ;
6661 String 3 // Description of Parameter 1
6663 Text [ en-US ] = "The value for which the gamma distribution is to be calculated." ;
6665 String 4 // Name of Parameter 2
6667 Text [ en-US ] = "alpha" ;
6669 String 5 // Description of Parameter 2
6671 Text [ en-US ] = "The Alpha parameter of the Gamma distribution." ;
6673 String 6 // Name of Parameter 3
6675 Text [ en-US ] = "beta" ;
6677 String 7 // Description of Parameter 3
6679 Text [ en-US ] = "The Beta parameter of the Gamma distribution." ;
6681 String 8 // Name of Parameter 4
6683 Text [ en-US ] = "Cumulative" ;
6685 String 9 // Description of Parameter 4
6687 Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
6690 // -=*# Resource for function GAMMAINV #*=-
6691 Resource SC_OPCODE_GAMMA_INV
6693 String 1 // Description
6695 Text [ en-US ] = "Values of the inverse gamma distribution." ;
6700 ID_FUNCTION_GRP_STATISTIC;
6701 U2S( HID_FUNC_GAMMAINV );
6705 String 2 // Name of Parameter 1
6707 Text [ en-US ] = "Number" ;
6709 String 3 // Description of Parameter 1
6711 Text [ en-US ] = "The probability value for which the inverse gamma distribution is to be calculated." ;
6713 String 4 // Name of Parameter 2
6715 Text [ en-US ] = "alpha" ;
6717 String 5 // Description of Parameter 2
6719 Text [ en-US ] = "The Alpha (shape) parameter of the Gamma distribution." ;
6721 String 6 // Name of Parameter 3
6723 Text [ en-US ] = "beta" ;
6725 String 7 // Description of Parameter 3
6727 Text [ en-US ] = "The Beta (scale) parameter of the Gamma distribution." ;
6730 // -=*# Resource for function GAMMALN #*=-
6731 Resource SC_OPCODE_GAMMA_LN
6733 String 1 // Description
6735 Text [ en-US ] = "Returns the natural logarithm of the gamma function." ;
6740 ID_FUNCTION_GRP_STATISTIC;
6741 U2S( HID_FUNC_GAMMALN );
6745 String 2 // Name of Parameter 1
6747 Text [ en-US ] = "Number" ;
6749 String 3 // Description of Parameter 1
6751 Text [ en-US ] = "The value for which the natural logarithm of the gamma function is to be calculated." ;
6755 // -=*# Resource for function GAMMA #*=-
6756 Resource SC_OPCODE_GAMMA
6758 String 1 // Description
6760 Text [ en-US ] = "Returns the value of the Gamma function." ;
6765 ID_FUNCTION_GRP_STATISTIC;
6766 U2S( HID_FUNC_GAMMA );
6770 String 2 // Name of Parameter 1
6772 Text [ en-US ] = "Number" ;
6774 String 3 // Description of Parameter 1
6776 Text [ en-US ] = "The value for which the Gamma function is to be calculated." ;
6780 // -=*# Resource for function BETAVERT #*=-
6781 Resource SC_OPCODE_BETA_DIST
6783 String 1 // Description
6785 Text [ en-US ] = "Values of the beta distribution." ;
6790 ID_FUNCTION_GRP_STATISTIC;
6791 U2S( HID_FUNC_BETAVERT );
6792 6; 0; 0; 0; 1; 1; 1;
6795 String 2 // Name of Parameter 1
6797 Text [ en-US ] = "number" ;
6799 String 3 // Description of Parameter 1
6801 Text [ en-US ] = "The value for which the beta distribution is to be calculated." ;
6803 String 4 // Name of Parameter 2
6805 Text [ en-US ] = "alpha" ;
6807 String 5 // Description of Parameter 2
6809 Text [ en-US ] = "The Alpha parameter of the Beta distribution." ;
6811 String 6 // Name of Parameter 3
6813 Text [ en-US ] = "beta" ;
6815 String 7 // Description of Parameter 3
6817 Text [ en-US ] = "The Beta parameter of the Beta distribution." ;
6819 String 8 // Name of Parameter 4
6821 Text [ en-US ] = "Start" ;
6823 String 9 // Description of Parameter 4
6825 Text [ en-US ] = "The starting value for the value interval of the distribution." ;
6827 String 10 // Name of Parameter 5
6829 Text [ en-US ] = "End" ;
6831 String 11 // Description of Parameter 5
6833 Text [ en-US ] = "The final value for the value interval of the distribution." ;
6835 String 12 // Name of Parameter 6
6837 Text [en-US ] = "Cumulative" ;
6839 String 13 // Description of Parameter 6
6841 Text [ en-US ] = "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function.";
6844 // -=*# Resource for function BETAINV #*=-
6845 Resource SC_OPCODE_BETA_INV
6847 String 1 // Description
6849 Text [ en-US ] = "Values of the inverse beta distribution." ;
6854 ID_FUNCTION_GRP_STATISTIC;
6855 U2S( HID_FUNC_BETAINV );
6859 String 2 // Name of Parameter 1
6861 Text [ en-US ] = "number" ;
6863 String 3 // Description of Parameter 1
6865 Text [ en-US ] = "The probability value for which the inverse beta distribution is to be calculated." ;
6867 String 4 // Name of Parameter 2
6869 Text [ en-US ] = "alpha" ;
6871 String 5 // Description of Parameter 2
6873 Text [ en-US ] = "The Alpha parameter of the Beta distribution." ;
6875 String 6 // Name of Parameter 3
6877 Text [ en-US ] = "beta" ;
6879 String 7 // Description of Parameter 3
6881 Text [ en-US ] = "The Beta parameter of the Beta distribution." ;
6883 String 8 // Name of Parameter 4
6885 Text [ en-US ] = "Start" ;
6887 String 9 // Description of Parameter 4
6889 Text [ en-US ] = "The starting value for the value interval of the distribution." ;
6891 String 10 // Name of Parameter 5
6893 Text [ en-US ] = "End" ;
6895 String 11 // Description of Parameter 5
6897 Text [ en-US ] = "The final value for the value interval of the distribution." ;
6900 // -=*# Resource for function BETA.DIST #*=-
6901 Resource SC_OPCODE_BETA_DIST_MS
6903 String 1 // Description
6905 Text [ en-US ] = "Values of the beta distribution." ;
6910 ID_FUNCTION_GRP_STATISTIC;
6911 U2S( HID_FUNC_BETADIST_MS );
6912 6; 0; 0; 0; 0; 1; 1;
6915 String 2 // Name of Parameter 1
6917 Text [ en-US ] = "number" ;
6919 String 3 // Description of Parameter 1
6921 Text [ en-US ] = "The value for which the beta distribution is to be calculated." ;
6923 String 4 // Name of Parameter 2
6925 Text [ en-US ] = "alpha" ;
6927 String 5 // Description of Parameter 2
6929 Text [ en-US ] = "The Alpha parameter of the Beta distribution." ;
6931 String 6 // Name of Parameter 3
6933 Text [ en-US ] = "beta" ;
6935 String 7 // Description of Parameter 3
6937 Text [ en-US ] = "The Beta parameter of the Beta distribution." ;
6939 String 8 // Name of Parameter 4
6941 Text [en-US ] = "Cumulative" ;
6943 String 9 // Description of Parameter 4
6945 Text [ en-US ] = "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function.";
6947 String 10 // Name of Parameter 5
6949 Text [ en-US ] = "Start" ;
6951 String 11 // Description of Parameter 5
6953 Text [ en-US ] = "The starting value for the value interval of the distribution." ;
6955 String 12 // Name of Parameter 6
6957 Text [ en-US ] = "End" ;
6959 String 13 // Description of Parameter 6
6961 Text [ en-US ] = "The final value for the value interval of the distribution." ;
6964 // -=*# Resource for function BETA.INV #*=-
6965 Resource SC_OPCODE_BETA_INV_MS
6967 String 1 // Description
6969 Text [ en-US ] = "Values of the inverse beta distribution." ;
6974 ID_FUNCTION_GRP_STATISTIC;
6975 U2S( HID_FUNC_BETAINV_MS );
6979 String 2 // Name of Parameter 1
6981 Text [ en-US ] = "number" ;
6983 String 3 // Description of Parameter 1
6985 Text [ en-US ] = "The probability value for which the inverse beta distribution is to be calculated." ;
6987 String 4 // Name of Parameter 2
6989 Text [ en-US ] = "alpha" ;
6991 String 5 // Description of Parameter 2
6993 Text [ en-US ] = "The Alpha parameter of the Beta distribution." ;
6995 String 6 // Name of Parameter 3
6997 Text [ en-US ] = "beta" ;
6999 String 7 // Description of Parameter 3
7001 Text [ en-US ] = "The Beta parameter of the Beta distribution." ;
7003 String 8 // Name of Parameter 4
7005 Text [ en-US ] = "Start" ;
7007 String 9 // Description of Parameter 4
7009 Text [ en-US ] = "The starting value for the value interval of the distribution." ;
7011 String 10 // Name of Parameter 5
7013 Text [ en-US ] = "End" ;
7015 String 11 // Description of Parameter 5
7017 Text [ en-US ] = "The final value for the value interval of the distribution." ;
7020 // -=*# Resource for function WEIBULL #*=-
7021 Resource SC_OPCODE_WEIBULL
7023 String 1 // Description
7025 Text [ en-US ] = "Returns the values of the Weibull distribution." ;
7030 ID_FUNCTION_GRP_STATISTIC;
7031 U2S( HID_FUNC_WEIBULL );
7035 String 2 // Name of Parameter 1
7037 Text [ en-US ] = "Number" ;
7039 String 3 // Description of Parameter 1
7041 Text [ en-US ] = "The value for which the Weibull distribution is to be calculated." ;
7043 String 4 // Name of Parameter 2
7045 Text [ en-US ] = "Alpha" ;
7047 String 5 // Description of Parameter 2
7049 Text [ en-US ] = "The Alpha parameter of the Weibull distribution." ;
7051 String 6 // Name of Parameter 3
7053 Text [ en-US ] = "beta" ;
7055 String 7 // Description of Parameter 3
7057 Text [ en-US ] = "The Beta parameter of the Weibull distribution." ;
7059 String 8 // Name of Parameter 4
7061 Text [ en-US ] = "C" ;
7063 String 9 // Description of Parameter 4
7065 Text [ en-US ] = "Cumulated. C=0 calculates the density function, C=1 the distribution." ;
7068 // -=*# Resource for function WEIBULL.DIST #*=-
7069 Resource SC_OPCODE_WEIBULL_MS
7071 String 1 // Description
7073 Text [ en-US ] = "Returns the values of the Weibull distribution." ;
7078 ID_FUNCTION_GRP_STATISTIC;
7079 U2S( HID_FUNC_WEIBULL_DIST_MS );
7083 String 2 // Name of Parameter 1
7085 Text [ en-US ] = "Number" ;
7087 String 3 // Description of Parameter 1
7089 Text [ en-US ] = "The value for which the Weibull distribution is to be calculated." ;
7091 String 4 // Name of Parameter 2
7093 Text [ en-US ] = "Alpha" ;
7095 String 5 // Description of Parameter 2
7097 Text [ en-US ] = "The Alpha parameter of the Weibull distribution." ;
7099 String 6 // Name of Parameter 3
7101 Text [ en-US ] = "beta" ;
7103 String 7 // Description of Parameter 3
7105 Text [ en-US ] = "The Beta parameter of the Weibull distribution." ;
7107 String 8 // Name of Parameter 4
7109 Text [ en-US ] = "C" ;
7111 String 9 // Description of Parameter 4
7113 Text [ en-US ] = "Cumulated. C=0 calculates the density function, C=1 the distribution." ;
7116 // -=*# Resource for function HYPGEOMVERT #*=-
7117 Resource SC_OPCODE_HYP_GEOM_DIST
7119 String 1 // Description
7121 Text [ en-US ] = "Values of the hypergeometric distribution." ;
7126 ID_FUNCTION_GRP_STATISTIC;
7127 U2S( HID_FUNC_HYPGEOMVERT );
7131 String 2 // Name of Parameter 1
7133 Text [ en-US ] = "X" ;
7135 String 3 // Description of Parameter 1
7137 Text [ en-US ] = "The number of successes in the sample." ;
7139 String 4 // Name of Parameter 2
7141 Text [ en-US ] = "n_sample" ;
7143 String 5 // Description of Parameter 2
7145 Text [ en-US ] = "The size of the sample." ;
7147 String 6 // Name of Parameter 3
7149 Text [ en-US ] = "successes" ;
7151 String 7 // Description of Parameter 3
7153 Text [ en-US ] = "The number of successes in the population." ;
7155 String 8 // Name of Parameter 4
7157 Text [ en-US ] = "n_population" ;
7159 String 9 // Description of Parameter 4
7161 Text [ en-US ] = "The population size." ;
7164 // -=*# Resource for function HYPGEOM.DIST #*=-
7165 Resource SC_OPCODE_HYP_GEOM_DIST_MS
7167 String 1 // Description
7169 Text [ en-US ] = "Values of the hypergeometric distribution." ;
7174 ID_FUNCTION_GRP_STATISTIC;
7175 U2S( HID_FUNC_HYP_GEOM_DIST_MS );
7179 String 2 // Name of Parameter 1
7181 Text [ en-US ] = "X" ;
7183 String 3 // Description of Parameter 1
7185 Text [ en-US ] = "The number of successes in the sample." ;
7187 String 4 // Name of Parameter 2
7189 Text [ en-US ] = "n_sample" ;
7191 String 5 // Description of Parameter 2
7193 Text [ en-US ] = "The size of the sample." ;
7195 String 6 // Name of Parameter 3
7197 Text [ en-US ] = "successes" ;
7199 String 7 // Description of Parameter 3
7201 Text [ en-US ] = "The number of successes in the population." ;
7203 String 8 // Name of Parameter 4
7205 Text [ en-US ] = "n_population" ;
7207 String 9 // Description of Parameter 4
7209 Text [ en-US ] = "The population size." ;
7211 String 10 // Name of Parameter 5
7213 Text [ en-US ] = "Cumulative" ;
7215 String 11 // Description of Parameter 5
7217 Text [ en-US ] = "Cumulated. TRUE calculates the cumulative distribution function, FALSE the probability mass function." ;
7220 // -=*# Resource for function TVERT #*=-
7221 Resource SC_OPCODE_T_DIST
7223 String 1 // Description
7225 Text [ en-US ] = "Returns the t-distribution." ;
7230 ID_FUNCTION_GRP_STATISTIC;
7231 U2S( HID_FUNC_TVERT );
7235 String 2 // Name of Parameter 1
7237 Text [ en-US ] = "Number" ;
7239 String 3 // Description of Parameter 1
7241 Text [ en-US ] = "The value for which the T distribution is to be calculated." ;
7243 String 4 // Name of Parameter 2
7245 Text [ en-US ] = "degrees_freedom" ;
7247 String 5 // Description of Parameter 2
7249 Text [ en-US ] = "The degrees of freedom of the T distribution." ;
7251 String 6 // Name of Parameter 3
7253 Text [ en-US ] = "mode" ;
7255 String 7 // Description of Parameter 3
7257 Text [ en-US ] = "Mode = 1 calculates the one-tailed test, 2 = two-tailed distribution." ;
7260 // -=*# Resource for function TINV #*=-
7261 Resource SC_OPCODE_T_INV
7263 String 1 // Description
7265 Text [ en-US ] = "Values of the inverse t-distribution." ;
7270 ID_FUNCTION_GRP_STATISTIC;
7271 U2S( HID_FUNC_TINV );
7275 String 2 // Name of Parameter 1
7277 Text [ en-US ] = "number" ;
7279 String 3 // Description of Parameter 1
7281 Text [ en-US ] = "The probability value for which the inverse T distribution is to be calculated." ;
7283 String 4 // Name of Parameter 2
7285 Text [ en-US ] = "degrees_freedom" ;
7287 String 5 // Description of Parameter 2
7289 Text [ en-US ] = "The degrees of freedom of the T distribution." ;
7292 // -=*# Resource for function FVERT #*=-
7293 Resource SC_OPCODE_F_DIST
7295 String 1 // Description
7297 Text [ en-US ] = "Values of the F probability distribution." ;
7302 ID_FUNCTION_GRP_STATISTIC;
7303 U2S( HID_FUNC_FVERT );
7307 String 2 // Name of Parameter 1
7309 Text [ en-US ] = "Number" ;
7311 String 3 // Description of Parameter 1
7313 Text [ en-US ] = "The value for which the F distribution is to be calculated." ;
7315 String 4 // Name of Parameter 2
7317 Text [ en-US ] = "degrees_freedom_1" ;
7319 String 5 // Description of Parameter 2
7321 Text [ en-US ] = "The degrees of freedom in the numerator of the F distribution." ;
7323 String 6 // Name of Parameter 3
7325 Text [ en-US ] = "degrees_freedom_2" ;
7327 String 7 // Description of Parameter 3
7329 Text [ en-US ] = "The degrees of freedom in the denominator of the F distribution." ;
7332 // -=*# Resource for function F.DIST #*=-
7333 Resource SC_OPCODE_F_DIST_LT
7335 String 1 // Description
7337 Text [ en-US ] = "Values of the left tail F probability distribution." ;
7342 ID_FUNCTION_GRP_STATISTIC;
7343 U2S( HID_FUNC_F_DIST_LT );
7347 String 2 // Name of Parameter 1
7349 Text [ en-US ] = "Number" ;
7351 String 3 // Description of Parameter 1
7353 Text [ en-US ] = "The value for which the F distribution is to be calculated." ;
7355 String 4 // Name of Parameter 2
7357 Text [ en-US ] = "degrees_freedom_1" ;
7359 String 5 // Description of Parameter 2
7361 Text [ en-US ] = "The degrees of freedom in the numerator of the F distribution." ;
7363 String 6 // Name of Parameter 3
7365 Text [ en-US ] = "degrees_freedom_2" ;
7367 String 7 // Description of Parameter 3
7369 Text [ en-US ] = "The degrees of freedom in the denominator of the F distribution." ;
7371 String 8 // Name of Parameter 4
7373 Text [ en-US ] = "cumulative" ;
7375 String 9 // Description of Parameter 4
7377 Text [ en-US ] = "Cumulative distribution function (TRUE) or probability density function (FALSE)." ;
7380 // -=*# Resource for function F.DIST.RT #*=-
7381 Resource SC_OPCODE_F_DIST_RT
7383 String 1 // Description
7385 Text [ en-US ] = "Values of the right tail F probability distribution." ;
7390 ID_FUNCTION_GRP_STATISTIC;
7391 U2S( HID_FUNC_F_DIST_RT );
7395 String 2 // Name of Parameter 1
7397 Text [ en-US ] = "Number" ;
7399 String 3 // Description of Parameter 1
7401 Text [ en-US ] = "The value for which the F distribution is to be calculated." ;
7403 String 4 // Name of Parameter 2
7405 Text [ en-US ] = "degrees_freedom_1" ;
7407 String 5 // Description of Parameter 2
7409 Text [ en-US ] = "The degrees of freedom in the numerator of the F distribution." ;
7411 String 6 // Name of Parameter 3
7413 Text [ en-US ] = "degrees_freedom_2" ;
7415 String 7 // Description of Parameter 3
7417 Text [ en-US ] = "The degrees of freedom in the denominator of the F distribution." ;
7420 // -=*# Resource for function FINV #*=-
7421 Resource SC_OPCODE_F_INV
7423 String 1 // Description
7425 Text [ en-US ] = "Values of the inverse F distribution." ;
7430 ID_FUNCTION_GRP_STATISTIC;
7431 U2S( HID_FUNC_FINV );
7435 String 2 // Name of Parameter 1
7437 Text [ en-US ] = "number" ;
7439 String 3 // Description of Parameter 1
7441 Text [ en-US ] = "The probability value for which the inverse F distribution is to be calculated." ;
7443 String 4 // Name of Parameter 2
7445 Text [ en-US ] = "degrees_freedom_1" ;
7447 String 5 // Description of Parameter 2
7449 Text [ en-US ] = "The degrees of freedom in the numerator of the F distribution." ;
7451 String 6 // Name of Parameter 3
7453 Text [ en-US ] = "degrees_freedom_2" ;
7455 String 7 // Description of Parameter 3
7457 Text [ en-US ] = "The degrees of freedom in the denominator of the F distribution." ;
7460 // -=*# Resource for function F.INV #*=-
7461 Resource SC_OPCODE_F_INV_LT
7463 String 1 // Description
7465 Text [ en-US ] = "Values of the inverse left tail F distribution." ;
7470 ID_FUNCTION_GRP_STATISTIC;
7471 U2S( HID_FUNC_F_INV_LT );
7475 String 2 // Name of Parameter 1
7477 Text [ en-US ] = "number" ;
7479 String 3 // Description of Parameter 1
7481 Text [ en-US ] = "The probability value for which the inverse F distribution is to be calculated." ;
7483 String 4 // Name of Parameter 2
7485 Text [ en-US ] = "degrees_freedom_1" ;
7487 String 5 // Description of Parameter 2
7489 Text [ en-US ] = "The degrees of freedom in the numerator of the F distribution." ;
7491 String 6 // Name of Parameter 3
7493 Text [ en-US ] = "degrees_freedom_2" ;
7495 String 7 // Description of Parameter 3
7497 Text [ en-US ] = "The degrees of freedom in the denominator of the F distribution." ;
7500 // -=*# Resource for function F.INV.RT #*=-
7501 Resource SC_OPCODE_F_INV_RT
7503 String 1 // Description
7505 Text [ en-US ] = "Values of the inverse right tail F distribution." ;
7510 ID_FUNCTION_GRP_STATISTIC;
7511 U2S( HID_FUNC_F_INV_RT );
7515 String 2 // Name of Parameter 1
7517 Text [ en-US ] = "number" ;
7519 String 3 // Description of Parameter 1
7521 Text [ en-US ] = "The probability value for which the inverse F distribution is to be calculated." ;
7523 String 4 // Name of Parameter 2
7525 Text [ en-US ] = "degrees_freedom_1" ;
7527 String 5 // Description of Parameter 2
7529 Text [ en-US ] = "The degrees of freedom in the numerator of the F distribution." ;
7531 String 6 // Name of Parameter 3
7533 Text [ en-US ] = "degrees_freedom_2" ;
7535 String 7 // Description of Parameter 3
7537 Text [ en-US ] = "The degrees of freedom in the denominator of the F distribution." ;
7540 // -=*# Resource for function CHIDIST #*=-
7541 Resource SC_OPCODE_CHI_DIST
7543 String 1 // Description
7545 Text [ en-US ] = "Returns the right-tail probability of the chi-square distribution." ;
7550 ID_FUNCTION_GRP_STATISTIC;
7551 U2S( HID_FUNC_CHIVERT );
7555 String 2 // Name of Parameter 1
7557 Text [ en-US ] = "Number" ;
7559 String 3 // Description of Parameter 1
7561 Text [ en-US ] = "The value for which the chi square distribution is to be calculated." ;
7563 String 4 // Name of Parameter 2
7565 Text [ en-US ] = "degrees_freedom" ;
7567 String 5 // Description of Parameter 2
7569 Text [ en-US ] = "The degrees of freedom of the chi square distribution." ;
7572 // -=*# Resource for function CHISQ.DIST.RT #*=-
7573 Resource SC_OPCODE_CHI_DIST_MS
7575 String 1 // Description
7577 Text [ en-US ] = "Returns the right-tail probability of the chi-square distribution." ;
7582 ID_FUNCTION_GRP_STATISTIC;
7583 U2S( HID_FUNC_CHIVERT_MS );
7587 String 2 // Name of Parameter 1
7589 Text [ en-US ] = "Number" ;
7591 String 3 // Description of Parameter 1
7593 Text [ en-US ] = "The value for which the chi square distribution is to be calculated." ;
7595 String 4 // Name of Parameter 2
7597 Text [ en-US ] = "degrees_freedom" ;
7599 String 5 // Description of Parameter 2
7601 Text [ en-US ] = "The degrees of freedom of the chi square distribution." ;
7606 // -=*# Resource for function CHISQDIST #*=-
7607 Resource SC_OPCODE_CHISQ_DIST
7609 String 1 // Description
7611 Text [ en-US ] = "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." ;
7616 ID_FUNCTION_GRP_STATISTIC;
7617 U2S( HID_FUNC_CHISQDIST );
7621 String 2 // Name of Parameter 1
7623 Text [ en-US ] = "Number" ;
7625 String 3 // Description of Parameter 1
7627 Text [ en-US ] = "The value for which the probability density function or cumulative distribution function is to be calculated." ;
7629 String 4 // Name of Parameter 2
7631 Text [ en-US ] = "Degrees of Freedom" ;
7633 String 5 // Description of Parameter 2
7635 Text [ en-US ] = "The degrees of freedom of the chi-square distribution." ;
7637 String 6 // Name of Parameter 3
7639 Text [ en-US ] = "Cumulative" ;
7641 String 7 // Description of Parameter 3
7643 Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
7647 // -=*# Resource for function CHISQ.DIST #*=-
7648 Resource SC_OPCODE_CHISQ_DIST_MS
7650 String 1 // Description
7652 Text [ en-US ] = "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." ;
7657 ID_FUNCTION_GRP_STATISTIC;
7658 U2S( HID_FUNC_CHISQDIST_MS );
7662 String 2 // Name of Parameter 1
7664 Text [ en-US ] = "Number" ;
7666 String 3 // Description of Parameter 1
7668 Text [ en-US ] = "The value for which the probability density function or cumulative distribution function is to be calculated." ;
7670 String 4 // Name of Parameter 2
7672 Text [ en-US ] = "Degrees of Freedom" ;
7674 String 5 // Description of Parameter 2
7676 Text [ en-US ] = "The degrees of freedom of the chi-square distribution." ;
7678 String 6 // Name of Parameter 3
7680 Text [ en-US ] = "Cumulative" ;
7682 String 7 // Description of Parameter 3
7684 Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." ;
7689 // -=*# Resource for function CHIINV #*=-
7690 Resource SC_OPCODE_CHI_INV
7692 String 1 // Description
7694 Text [ en-US ] = "Values of the inverse of CHIDIST(x; DegreesOfFreedom)." ;
7699 ID_FUNCTION_GRP_STATISTIC;
7700 U2S( HID_FUNC_CHIINV );
7704 String 2 // Name of Parameter 1
7706 Text [ en-US ] = "number" ;
7708 String 3 // Description of Parameter 1
7710 Text [ en-US ] = "The probability value for which the inverse chi square distribution is to be calculated." ;
7712 String 4 // Name of Parameter 2
7714 Text [ en-US ] = "degrees_freedom" ;
7716 String 5 // Description of Parameter 2
7718 Text [ en-US ] = "The degrees of freedom of the chi square distribution." ;
7722 // -=*# Resource for function CHISQ.INV.RT #*=-
7723 Resource SC_OPCODE_CHI_INV_MS
7725 String 1 // Description
7727 Text [ en-US ] = "Values of the inverse of CHIDIST(x; DegreesOfFreedom)." ;
7732 ID_FUNCTION_GRP_STATISTIC;
7733 U2S( HID_FUNC_CHIINV_MS );
7737 String 2 // Name of Parameter 1
7739 Text [ en-US ] = "number" ;
7741 String 3 // Description of Parameter 1
7743 Text [ en-US ] = "The probability value for which the inverse chi square distribution is to be calculated." ;
7745 String 4 // Name of Parameter 2
7747 Text [ en-US ] = "degrees_freedom" ;
7749 String 5 // Description of Parameter 2
7751 Text [ en-US ] = "The degrees of freedom of the chi square distribution." ;
7755 // -=*# Resource for function CHISQINV #*=-
7756 Resource SC_OPCODE_CHISQ_INV
7758 String 1 // Description
7760 Text [ en-US ] = "Values of the inverse of CHISQDIST(x;DegreesOfFreedom;TRUE())." ;
7765 ID_FUNCTION_GRP_STATISTIC;
7766 U2S( HID_FUNC_CHISQINV );
7770 String 2 // Name of Parameter 1
7772 Text [ en-US ] = "Probability" ;
7774 String 3 // Description of Parameter 1
7776 Text [ en-US ] = "The probability value for which the inverse of the chi square distribution is to be calculated." ;
7778 String 4 // Name of Parameter 2
7780 Text [ en-US ] = "Degrees of Freedom" ;
7782 String 5 // Description of Parameter 2
7784 Text [ en-US ] = "The degrees of freedom of the chi square distribution." ;
7788 // -=*# Resource for function CHISQ.INV #*=-
7789 Resource SC_OPCODE_CHISQ_INV_MS
7791 String 1 // Description
7793 Text [ en-US ] = "Values of the inverse of CHISQ.DIST(x;DegreesOfFreedom;TRUE())." ;
7798 ID_FUNCTION_GRP_STATISTIC;
7799 U2S( HID_FUNC_CHISQINV_MS );
7803 String 2 // Name of Parameter 1
7805 Text [ en-US ] = "Probability" ;
7807 String 3 // Description of Parameter 1
7809 Text [ en-US ] = "The probability value for which the inverse of the chi square distribution is to be calculated." ;
7811 String 4 // Name of Parameter 2
7813 Text [ en-US ] = "Degrees of Freedom" ;
7815 String 5 // Description of Parameter 2
7817 Text [ en-US ] = "The degrees of freedom of the chi square distribution." ;
7821 // -=*# Resource for function STANDARDISIERUNG #*=-
7822 Resource SC_OPCODE_STANDARD
7824 String 1 // Description
7826 Text [ en-US ] = "Converts a random variable to a normalized value." ;
7831 ID_FUNCTION_GRP_STATISTIC;
7832 U2S( HID_FUNC_STANDARDISIERUNG );
7836 String 2 // Name of Parameter 1
7838 Text [ en-US ] = "Number" ;
7840 String 3 // Description of Parameter 1
7842 Text [ en-US ] = "The value to be standardized." ;
7844 String 4 // Name of Parameter 2
7846 Text [ en-US ] = "mean" ;
7848 String 5 // Description of Parameter 2
7850 Text [ en-US ] = "The mean value used for moving." ;
7852 String 6 // Name of Parameter 3
7854 Text [ en-US ] = "STDEV" ;
7856 String 7 // Description of Parameter 3
7858 Text [ en-US ] = "The standard deviation used for scaling." ;
7861 // -=*# Resource for function VARIATIONEN #*=-
7862 Resource SC_OPCODE_VARIATIONEN
7864 String 1 // Description
7866 Text [ en-US ] = "Returns the number of permutations for a given number of elements without repetition." ;
7871 ID_FUNCTION_GRP_STATISTIC;
7872 U2S( HID_FUNC_VARIATIONEN );
7876 String 2 // Name of Parameter 1
7878 Text [ en-US ] = "Count_1" ;
7880 String 3 // Description of Parameter 1
7882 Text [ en-US ] = "The total number of elements." ;
7884 String 4 // Name of Parameter 2
7886 Text [ en-US ] = "Count_2" ;
7888 String 5 // Description of Parameter 2
7890 Text [ en-US ] = "The selection number taken from the elements." ;
7893 // -=*# Resource for function VARIATIONEN2 #*=-
7894 Resource SC_OPCODE_VARIATIONEN_2
7896 String 1 // Description
7898 Text [ en-US ] = "Returns the number of permutations for a given number of objects (repetition allowed)." ;
7903 ID_FUNCTION_GRP_STATISTIC;
7904 U2S( HID_FUNC_VARIATIONEN2 );
7908 String 2 // Name of Parameter 1
7910 Text [ en-US ] = "Count_1" ;
7912 String 3 // Description of Parameter 1
7914 Text [ en-US ] = "The total number of elements." ;
7916 String 4 // Name of Parameter 2
7918 Text [ en-US ] = "Count_2" ;
7920 String 5 // Description of Parameter 2
7922 Text [ en-US ] = "The selection number taken from the elements." ;
7925 // -=*# Resource for function KONFIDENZ #*=-
7926 Resource SC_OPCODE_CONFIDENCE
7928 String 1 // Description
7930 Text [ en-US ] = "Returns a (1 alpha) confidence interval for a normal distribution." ;
7935 ID_FUNCTION_GRP_STATISTIC;
7936 U2S( HID_FUNC_KONFIDENZ );
7940 String 2 // Name of Parameter 1
7942 Text [ en-US ] = "alpha" ;
7944 String 3 // Description of Parameter 1
7946 Text [ en-US ] = "The level of the confidence interval." ;
7948 String 4 // Name of Parameter 2
7950 Text [ en-US ] = "STDEV" ;
7952 String 5 // Description of Parameter 2
7954 Text [ en-US ] = "The standard deviation of the population." ;
7956 String 6 // Name of Parameter 3
7958 Text [ en-US ] = "size" ;
7960 String 7 // Description of Parameter 3
7962 Text [ en-US ] = "The size of the population." ;
7965 // -=*# Resource for function CONFIDENCE.NORM #*=-
7966 Resource SC_OPCODE_CONFIDENCE_N
7968 String 1 // Description
7970 Text [ en-US ] = "Returns a (1 alpha) confidence interval for a normal distribution." ;
7975 ID_FUNCTION_GRP_STATISTIC;
7976 U2S( HID_FUNC_CONFIDENCE_N );
7980 String 2 // Name of Parameter 1
7982 Text [ en-US ] = "alpha" ;
7984 String 3 // Description of Parameter 1
7986 Text [ en-US ] = "The level of the confidence interval." ;
7988 String 4 // Name of Parameter 2
7990 Text [ en-US ] = "STDEV" ;
7992 String 5 // Description of Parameter 2
7994 Text [ en-US ] = "The standard deviation of the population." ;
7996 String 6 // Name of Parameter 3
7998 Text [ en-US ] = "size" ;
8000 String 7 // Description of Parameter 3
8002 Text [ en-US ] = "The size of the population." ;
8005 // -=*# Resource for function CONFIDENCE.T #*=-
8006 Resource SC_OPCODE_CONFIDENCE_T
8008 String 1 // Description
8010 Text [ en-US ] = "Returns a (1 alpha) confidence interval for a Student's t distribution." ;
8015 ID_FUNCTION_GRP_STATISTIC;
8016 U2S( HID_FUNC_CONFIDENCE_T );
8020 String 2 // Name of Parameter 1
8022 Text [ en-US ] = "alpha" ;
8024 String 3 // Description of Parameter 1
8026 Text [ en-US ] = "The level of the confidence interval." ;
8028 String 4 // Name of Parameter 2
8030 Text [ en-US ] = "STDEV" ;
8032 String 5 // Description of Parameter 2
8034 Text [ en-US ] = "The standard deviation of the population." ;
8036 String 6 // Name of Parameter 3
8038 Text [ en-US ] = "size" ;
8040 String 7 // Description of Parameter 3
8042 Text [ en-US ] = "The size of the population." ;
8045 // -=*# Resource for function GTEST #*=-
8046 Resource SC_OPCODE_Z_TEST
8048 String 1 // Description
8050 Text [ en-US ] = "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." ;
8055 ID_FUNCTION_GRP_STATISTIC;
8056 U2S( HID_FUNC_GTEST );
8060 String 2 // Name of Parameter 1
8062 Text [ en-US ] = "data" ;
8064 String 3 // Description of Parameter 1
8066 Text [ en-US ] = "The given sample, drawn from a normally distributed population." ;
8068 String 4 // Name of Parameter 2
8070 Text [ en-US ] = "mu" ;
8072 String 5 // Description of Parameter 2
8074 Text [ en-US ] = "The known mean of the population." ;
8076 String 6 // Name of Parameter 3
8078 Text [ en-US ] = "sigma" ;
8080 String 7 // Description of Parameter 3
8082 Text [ en-US ] = "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used." ;
8085 // -=*# Resource for function CHITEST #*=-
8086 Resource SC_OPCODE_CHI_TEST
8088 String 1 // Description
8090 Text [ en-US ] = "Returns the chi square independence test." ;
8095 ID_FUNCTION_GRP_STATISTIC;
8096 U2S( HID_FUNC_CHITEST );
8100 String 2 // Name of Parameter 1
8102 Text [ en-US ] = "Data_B" ;
8104 String 3 // Description of Parameter 1
8106 Text [ en-US ] = "The observed data array." ;
8108 String 4 // Name of Parameter 2
8110 Text [ en-US ] = "data_E" ;
8112 String 5 // Description of Parameter 2
8114 Text [ en-US ] = "The expected data array." ;
8117 // -=*# Resource for function CHISQ.TEST.RT #*=-
8118 Resource SC_OPCODE_CHI_TEST_MS
8120 String 1 // Description
8122 Text [ en-US ] = "Returns the chi square independence test." ;
8127 ID_FUNCTION_GRP_STATISTIC;
8128 U2S( HID_FUNC_CHITEST_MS );
8132 String 2 // Name of Parameter 1
8134 Text [ en-US ] = "Data_B" ;
8136 String 3 // Description of Parameter 1
8138 Text [ en-US ] = "The observed data array." ;
8140 String 4 // Name of Parameter 2
8142 Text [ en-US ] = "data_E" ;
8144 String 5 // Description of Parameter 2
8146 Text [ en-US ] = "The expected data array." ;
8149 // -=*# Resource for function FTEST #*=-
8150 Resource SC_OPCODE_F_TEST
8152 String 1 // Description
8154 Text [ en-US ] = "Calculates the F test." ;
8159 ID_FUNCTION_GRP_STATISTIC;
8160 U2S( HID_FUNC_FTEST );
8164 String 2 // Name of Parameter 1
8166 Text [ en-US ] = "data_1" ;
8168 String 3 // Description of Parameter 1
8170 Text [ en-US ] = "The first record array." ;
8172 String 4 // Name of Parameter 2
8174 Text [ en-US ] = "data_2" ;
8176 String 5 // Description of Parameter 2
8178 Text [ en-US ] = "The second record array." ;
8181 // -=*# Resource for function F.TEST #*=-
8182 Resource SC_OPCODE_F_TEST_MS
8184 String 1 // Description
8186 Text [ en-US ] = "Calculates the F test." ;
8191 ID_FUNCTION_GRP_STATISTIC;
8192 U2S( HID_FUNC_F_TEST_MS );
8196 String 2 // Name of Parameter 1
8198 Text [ en-US ] = "data_1" ;
8200 String 3 // Description of Parameter 1
8202 Text [ en-US ] = "The first record array." ;
8204 String 4 // Name of Parameter 2
8206 Text [ en-US ] = "data_2" ;
8208 String 5 // Description of Parameter 2
8210 Text [ en-US ] = "The second record array." ;
8213 // -=*# Resource for function TTEST #*=-
8214 Resource SC_OPCODE_T_TEST
8216 String 1 // Description
8218 Text [ en-US ] = "Calculates the T test." ;
8223 ID_FUNCTION_GRP_STATISTIC;
8224 U2S( HID_FUNC_TTEST );
8228 String 2 // Name of Parameter 1
8230 Text [ en-US ] = "data_1" ;
8232 String 3 // Description of Parameter 1
8234 Text [ en-US ] = "The first record array." ;
8236 String 4 // Name of Parameter 2
8238 Text [ en-US ] = "data_2" ;
8240 String 5 // Description of Parameter 2
8242 Text [ en-US ] = "The second record array." ;
8244 String 6 // Name of Parameter 3
8246 Text [ en-US ] = "mode" ;
8248 String 7 // Description of Parameter 3
8250 Text [ en-US ] = "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution" ;
8252 String 8 // Name of Parameter 4
8254 Text [ en-US ] = "Type" ;
8256 String 9 // Description of Parameter 4
8258 Text [ en-US ] = "The type of the T test." ;
8261 // -=*# Resource for function BESTIMMTHEITSMASS #*=-
8262 Resource SC_OPCODE_RSQ
8264 String 1 // Description
8266 Text [ en-US ] = "Returns the square of the Pearson product moment correlation coefficient." ;
8271 ID_FUNCTION_GRP_STATISTIC;
8272 U2S( HID_FUNC_BESTIMMTHEITSMASS );
8276 String 2 // Name of Parameter 1
8278 Text [ en-US ] = "data_Y" ;
8280 String 3 // Description of Parameter 1
8282 Text [ en-US ] = "The Y data array." ;
8284 String 4 // Name of Parameter 2
8286 Text [ en-US ] = "data_X" ;
8288 String 5 // Description of Parameter 2
8290 Text [ en-US ] = "The X data array." ;
8293 // -=*# Resource for function ACHSENABSCHNITT #*=-
8294 Resource SC_OPCODE_INTERCEPT
8296 String 1 // Description
8298 Text [ en-US ] = "Returns the intercept of the linear regression line and the Y axis." ;
8303 ID_FUNCTION_GRP_STATISTIC;
8304 U2S( HID_FUNC_ACHSENABSCHNITT );
8308 String 2 // Name of Parameter 1
8310 Text [ en-US ] = "data_Y" ;
8312 String 3 // Description of Parameter 1
8314 Text [ en-US ] = "The Y data array." ;
8316 String 4 // Name of Parameter 2
8318 Text [ en-US ] = "data_X" ;
8320 String 5 // Description of Parameter 2
8322 Text [ en-US ] = "The X data array." ;
8325 // -=*# Resource for function STEIGUNG #*=-
8326 Resource SC_OPCODE_SLOPE
8328 String 1 // Description
8330 Text [ en-US ] = "Returns the slope of the linear regression line." ;
8335 ID_FUNCTION_GRP_STATISTIC;
8336 U2S( HID_FUNC_STEIGUNG );
8340 String 2 // Name of Parameter 1
8342 Text [ en-US ] = "data_Y" ;
8344 String 3 // Description of Parameter 1
8346 Text [ en-US ] = "The Y data array." ;
8348 String 4 // Name of Parameter 2
8350 Text [ en-US ] = "data_X" ;
8352 String 5 // Description of Parameter 2
8354 Text [ en-US ] = "The X data array." ;
8357 // -=*# Resource for function STFEHLERYX #*=-
8358 Resource SC_OPCODE_STEYX
8360 String 1 // Description
8362 Text [ en-US ] = "Returns the standard error of the linear regression." ;
8367 ID_FUNCTION_GRP_STATISTIC;
8368 U2S( HID_FUNC_STFEHLERYX );
8372 String 2 // Name of Parameter 1
8374 Text [ en-US ] = "data_Y" ;
8376 String 3 // Description of Parameter 1
8378 Text [ en-US ] = "The Y data array." ;
8380 String 4 // Name of Parameter 2
8382 Text [ en-US ] = "data_X" ;
8384 String 5 // Description of Parameter 2
8386 Text [ en-US ] = "The X data array." ;
8389 // -=*# Resource for function PEARSON #*=-
8390 Resource SC_OPCODE_PEARSON
8392 String 1 // Description
8394 Text [ en-US ] = "Returns the Pearson product moment correlation coefficient." ;
8399 ID_FUNCTION_GRP_STATISTIC;
8400 U2S( HID_FUNC_PEARSON );
8404 String 2 // Name of Parameter 1
8406 Text [ en-US ] = "Data_1" ;
8408 String 3 // Description of Parameter 1
8410 Text [ en-US ] = "The first record array." ;
8412 String 4 // Name of Parameter 2
8414 Text [ en-US ] = "Data_2" ;
8416 String 5 // Description of Parameter 2
8418 Text [ en-US ] = "The second record array." ;
8421 // -=*# Resource for function KORREL #*=-
8422 Resource SC_OPCODE_CORREL
8424 String 1 // Description
8426 Text [ en-US ] = "Returns the correlation coefficient." ;
8431 ID_FUNCTION_GRP_STATISTIC;
8432 U2S( HID_FUNC_KORREL );
8436 String 2 // Name of Parameter 1
8438 Text [ en-US ] = "Data_1" ;
8440 String 3 // Description of Parameter 1
8442 Text [ en-US ] = "The first record array." ;
8444 String 4 // Name of Parameter 2
8446 Text [ en-US ] = "Data_2" ;
8448 String 5 // Description of Parameter 2
8450 Text [ en-US ] = "The second record array." ;
8453 // -=*# Resource for function KOVAR #*=-
8454 Resource SC_OPCODE_COVAR
8456 String 1 // Description
8458 Text [ en-US ] = "Calculates the population covariance." ;
8463 ID_FUNCTION_GRP_STATISTIC;
8464 U2S( HID_FUNC_KOVAR );
8468 String 2 // Name of Parameter 1
8470 Text [ en-US ] = "Data_1" ;
8472 String 3 // Description of Parameter 1
8474 Text [ en-US ] = "The first record array." ;
8476 String 4 // Name of Parameter 2
8478 Text [ en-US ] = "Data_2" ;
8480 String 5 // Description of Parameter 2
8482 Text [ en-US ] = "The second record array." ;
8485 // -=*# Resource for function COVARIANCE.P #*=-
8486 Resource SC_OPCODE_COVARIANCE_P
8488 String 1 // Description
8490 Text [ en-US ] = "Calculates the population covariance." ;
8495 ID_FUNCTION_GRP_STATISTIC;
8496 U2S( HID_FUNC_COVARIANCE_P );
8500 String 2 // Name of Parameter 1
8502 Text [ en-US ] = "Data_1" ;
8504 String 3 // Description of Parameter 1
8506 Text [ en-US ] = "The first record array." ;
8508 String 4 // Name of Parameter 2
8510 Text [ en-US ] = "Data_2" ;
8512 String 5 // Description of Parameter 2
8514 Text [ en-US ] = "The second record array." ;
8517 // -=*# Resource for function COVARIANCE.S #*=-
8518 Resource SC_OPCODE_COVARIANCE_S
8520 String 1 // Description
8522 Text [ en-US ] = "Calculates the sample covariance." ;
8527 ID_FUNCTION_GRP_STATISTIC;
8528 U2S( HID_FUNC_COVARIANCE_S );
8532 String 2 // Name of Parameter 1
8534 Text [ en-US ] = "Data_1" ;
8536 String 3 // Description of Parameter 1
8538 Text [ en-US ] = "The first record array." ;
8540 String 4 // Name of Parameter 2
8542 Text [ en-US ] = "Data_2" ;
8544 String 5 // Description of Parameter 2
8546 Text [ en-US ] = "The second record array." ;
8549 // -=*# Resource for function SCHÄTZER #*=-
8550 Resource SC_OPCODE_FORECAST
8552 String 1 // Description
8554 Text [ en-US ] = "Returns a value along a linear regression" ;
8559 ID_FUNCTION_GRP_STATISTIC;
8560 U2S( HID_FUNC_SCHAETZER );
8564 String 2 // Name of Parameter 1
8566 Text [ en-US ] = "value" ;
8568 String 3 // Description of Parameter 1
8570 Text [ en-US ] = "The X value for which the Y value on the regression linear is to be calculated." ;
8572 String 4 // Name of Parameter 2
8574 Text [ en-US ] = "data_Y" ;
8576 String 5 // Description of Parameter 2
8578 Text [ en-US ] = "The Y data array." ;
8580 String 6 // Name of Parameter 3
8582 Text [ en-US ] = "data_X" ;
8584 String 7 // Description of Parameter 3
8586 Text [ en-US ] = "The X data array." ;
8589 // -=*# Resource for function ADRESSE #*=-
8590 Resource SC_OPCODE_ADDRESS
8592 String 1 // Description
8594 Text [ en-US ] = "Returns the reference to a cell as text." ;
8599 ID_FUNCTION_GRP_TABLE;
8600 U2S( HID_FUNC_ADRESSE );
8604 String 2 // Name of Parameter 1
8606 Text [ en-US ] = "row" ;
8608 String 3 // Description of Parameter 1
8610 Text [ en-US ] = "The row number of the cell." ;
8612 String 4 // Name of Parameter 2
8614 Text [ en-US ] = "column" ;
8616 String 5 // Description of Parameter 2
8618 Text [ en-US ] = "The column number of the cell." ;
8620 String 6 // Name of Parameter 3
8622 Text [ en-US ] = "ABS" ;
8624 String 7 // Description of Parameter 3
8626 Text [ en-US ] = "Specifies whether absolute or relative referencing is to be used." ;
8628 String 8 // Name of Parameter 4
8630 Text [ en-US ] = "A1" ;
8632 String 9 // Description of Parameter 4
8634 Text [ en-US ] = "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style." ;
8636 String 10 // Name of Parameter 5
8638 Text [ en-US ] = "sheet" ;
8639 Text [ x-comment ] = "previously to OOo3.0 this was String resource RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ADDRESS 8" ;
8641 String 11 // Description of Parameter 5
8643 Text [ en-US ] = "The spreadsheet name of the cell reference." ;
8644 Text [ x-comment ] = "previously to OOo3.0 this was String resource RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ADDRESS 9" ;
8647 // -=*# Resource for function BEREICHE #*=-
8648 Resource SC_OPCODE_AREAS
8650 String 1 // Description
8652 Text [ en-US ] = "Returns the number of individual ranges that belong to a (multiple) range." ;
8657 ID_FUNCTION_GRP_TABLE;
8658 U2S( HID_FUNC_BEREICHE );
8662 String 2 // Name of Parameter 1
8664 Text [ en-US ] = "reference" ;
8666 String 3 // Description of Parameter 1
8668 Text [ en-US ] = "The reference to a (multiple) range." ;
8671 // -=*# Resource for function WAHL #*=-
8672 Resource SC_OPCODE_CHOSE
8674 String 1 // Description
8676 Text [ en-US ] = "Selects a value from a list of up to 30 value arguments." ;
8681 ID_FUNCTION_GRP_TABLE;
8682 U2S( HID_FUNC_WAHL );
8686 String 2 // Name of Parameter 1
8688 Text [ en-US ] = "Index" ;
8690 String 3 // Description of Parameter 1
8692 Text [ en-US ] = "The index of the value (1..30) selected." ;
8694 String 4 // Name of Parameter 2
8696 Text [ en-US ] = "value " ;
8698 String 5 // Description of Parameter 2
8700 Text [ en-US ] = "Value 1, value 2,... The list of arguments from which a value is chosen." ;
8703 // -=*# Resource for function SPALTE #*=-
8704 Resource SC_OPCODE_COLUMN
8706 String 1 // Description
8708 Text [ en-US ] = "Returns the internal column number of a reference." ;
8713 ID_FUNCTION_GRP_TABLE;
8714 U2S( HID_FUNC_SPALTE );
8718 String 2 // Name of Parameter 1
8720 Text [ en-US ] = "reference" ;
8722 String 3 // Description of Parameter 1
8724 Text [ en-US ] = "The reference to a cell or a range." ;
8727 // -=*# Resource for function ZEILE #*=-
8728 Resource SC_OPCODE_ROW
8730 String 1 // Description
8732 Text [ en-US ] = "Defines the internal row number of a reference." ;
8737 ID_FUNCTION_GRP_TABLE;
8738 U2S( HID_FUNC_ZEILE );
8742 String 2 // Name of Parameter 1
8744 Text [ en-US ] = "reference" ;
8746 String 3 // Description of Parameter 1
8748 Text [ en-US ] = "The reference to a cell or a range." ;
8751 // -=*# Resource for function TABELLE #*=-
8752 Resource SC_OPCODE_TABLE
8754 String 1 // Description
8756 Text [ en-US ] = "Returns the internal sheet number of a reference or a string." ;
8761 ID_FUNCTION_GRP_TABLE;
8762 U2S( HID_FUNC_TABELLE );
8766 String 2 // Name of Parameter 1
8768 Text [ en-US ] = "reference" ;
8770 String 3 // Description of Parameter 1
8772 Text [ en-US ] = "The reference to a cell or a range or the character string of a sheet name." ;
8775 // -=*# Resource for function SPALTEN #*=-
8776 Resource SC_OPCODE_COLUMNS
8778 String 1 // Description
8780 Text [ en-US ] = "Returns the number of columns in an array or reference." ;
8785 ID_FUNCTION_GRP_TABLE;
8786 U2S( HID_FUNC_SPALTEN );
8790 String 2 // Name of Parameter 1
8792 Text [ en-US ] = "array" ;
8794 String 3 // Description of Parameter 1
8796 Text [ en-US ] = "The array (reference) for which the number of columns is to be determined." ;
8799 // -=*# Resource for function ZEILEN #*=-
8800 Resource SC_OPCODE_ROWS
8802 String 1 // Description
8804 Text [ en-US ] = "Returns the number of rows in a reference or array." ;
8809 ID_FUNCTION_GRP_TABLE;
8810 U2S( HID_FUNC_ZEILEN );
8814 String 2 // Name of Parameter 1
8816 Text [ en-US ] = "array" ;
8818 String 3 // Description of Parameter 1
8820 Text [ en-US ] = "The array (reference) for which the number of rows is to be determined." ;
8823 // -=*# Resource for function TABELLEN #*=-
8824 Resource SC_OPCODE_TABLES
8826 String 1 // Description
8828 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." ;
8833 ID_FUNCTION_GRP_TABLE;
8834 U2S( HID_FUNC_TABELLEN );
8838 String 2 // Name of Parameter 1
8840 Text [ en-US ] = "reference" ;
8842 String 3 // Description of Parameter 1
8844 Text [ en-US ] = "The reference to a cell or a range." ;
8847 // -=*# Resource for function WVERWEIS #*=-
8848 Resource SC_OPCODE_H_LOOKUP
8850 String 1 // Description
8852 Text [ en-US ] = "Horizontal search and reference to the cells located below." ;
8857 ID_FUNCTION_GRP_TABLE;
8858 U2S( HID_FUNC_WVERWEIS );
8862 String 2 // Name of Parameter 1
8864 Text [ en-US ] = "search_criteria" ;
8866 String 3 // Description of Parameter 1
8868 Text [ en-US ] = "The value to be found in the first row." ;
8870 String 4 // Name of Parameter 2
8872 Text [ en-US ] = "array" ;
8874 String 5 // Description of Parameter 2
8876 Text [ en-US ] = "The array or the range for the reference." ;
8878 String 6 // Name of Parameter 3
8880 Text [ en-US ] = "Index" ;
8882 String 7 // Description of Parameter 3
8884 Text [ en-US ] = "The row index in the array." ;
8886 String 8 // Name of Parameter 4
8888 Text [ en-US ] = "sorted" ;
8890 String 9 // Description of Parameter 4
8892 Text [ en-US ] = "If the value is TRUE or not given, the search row of the array must be sorted in ascending order." ;
8895 // -=*# Resource for function SVERWEIS #*=-
8896 Resource SC_OPCODE_V_LOOKUP
8898 String 1 // Description
8900 Text [ en-US ] = "Vertical search and reference to indicated cells." ;
8905 ID_FUNCTION_GRP_TABLE;
8906 U2S( HID_FUNC_SVERWEIS );
8910 String 2 // Name of Parameter 1
8912 Text [ en-US ] = "Search criterion" ;
8914 String 3 // Description of Parameter 1
8916 Text [ en-US ] = "The value to be found in the first column." ;
8918 String 4 // Name of Parameter 2
8920 Text [ en-US ] = "array" ;
8922 String 5 // Description of Parameter 2
8924 Text [ en-US ] = "The array or range for referencing." ;
8926 String 6 // Name of Parameter 3
8928 Text [ en-US ] = "Index" ;
8930 String 7 // Description of Parameter 3
8932 Text [ en-US ] = "Column index number in the array." ;
8934 String 8 // Name of Parameter 4
8936 Text [ en-US ] = "sort order" ;
8938 String 9 // Description of Parameter 4
8940 Text [ en-US ] = "If the value is TRUE or not given, the search column of the array must be sorted in ascending order." ;
8943 // -=*# Resource for function INDEX #*=-
8944 Resource SC_OPCODE_INDEX
8946 String 1 // Description
8948 Text [ en-US ] = "Returns a reference to a cell from a defined range." ;
8953 ID_FUNCTION_GRP_TABLE;
8954 U2S( HID_FUNC_INDEX );
8958 String 2 // Name of Parameter 1
8960 Text [ en-US ] = "reference" ;
8962 String 3 // Description of Parameter 1
8964 Text [ en-US ] = "The reference to a (multiple) range." ;
8966 String 4 // Name of Parameter 2
8968 Text [ en-US ] = "row" ;
8970 String 5 // Description of Parameter 2
8972 Text [ en-US ] = "The row in the range." ;
8974 String 6 // Name of Parameter 3
8976 Text [ en-US ] = "column" ;
8978 String 7 // Description of Parameter 3
8980 Text [ en-US ] = "The column in the range." ;
8982 String 8 // Name of Parameter 4
8984 Text [ en-US ] = "range" ;
8986 String 9 // Description of Parameter 4
8988 Text [ en-US ] = "The index of the subrange if referring to a multiple range." ;
8991 // -=*# Resource for function INDIREKT #*=-
8992 Resource SC_OPCODE_INDIRECT
8994 String 1 // Description
8996 Text [ en-US ] = "Returns the contents of a cell that is referenced in text form." ;
9001 ID_FUNCTION_GRP_TABLE;
9002 U2S( HID_FUNC_INDIREKT );
9006 String 2 // Name of Parameter 1
9008 Text [ en-US ] = "ref " ;
9010 String 3 // Description of Parameter 1
9012 Text [ en-US ] = "The cell whose contents are to be evaluated is to be referenced in text form (e.g. \"A1\")." ;
9014 String 4 // Name of Parameter 2
9016 Text [ en-US ] = "A1" ;
9018 String 5 // Description of Parameter 2
9020 Text [ en-US ] = "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style." ;
9023 // -=*# Resource for function VERWEIS #*=-
9024 Resource SC_OPCODE_LOOKUP
9026 String 1 // Description
9028 Text [ en-US ] = "Determines a value in a vector by comparison to values in another vector." ;
9033 ID_FUNCTION_GRP_TABLE;
9034 U2S( HID_FUNC_VERWEIS );
9038 String 2 // Name of Parameter 1
9040 Text [ en-US ] = "Search criterion" ;
9042 String 3 // Description of Parameter 1
9044 Text [ en-US ] = "The value to be used for comparison." ;
9046 String 4 // Name of Parameter 2
9048 Text [ en-US ] = "Search vector" ;
9050 String 5 // Description of Parameter 2
9052 Text [ en-US ] = "The vector (row or column) in which to search." ;
9054 String 6 // Name of Parameter 3
9056 Text [ en-US ] = "result_vector" ;
9058 String 7 // Description of Parameter 3
9060 Text [ en-US ] = "The vector (row or range) from which the value is to be determined." ;
9063 // -=*# Resource for function VERGLEICH #*=-
9064 Resource SC_OPCODE_MATCH
9066 String 1 // Description
9068 Text [ en-US ] = "Defines a position in a array after comparing values." ;
9073 ID_FUNCTION_GRP_TABLE;
9074 U2S( HID_FUNC_VERGLEICH );
9078 String 2 // Name of Parameter 1
9080 Text [ en-US ] = "Search criterion" ;
9082 String 3 // Description of Parameter 1
9084 Text [ en-US ] = "The value to be used for comparison." ;
9086 String 4 // Name of Parameter 2
9088 Text [ en-US ] = "lookup_array" ;
9090 String 5 // Description of Parameter 2
9092 Text [ en-US ] = "The array (range) in which the search is made." ;
9094 String 6 // Name of Parameter 3
9096 Text [ en-US ] = "Type" ;
9098 String 7 // Description of Parameter 3
9100 Text [ en-US ] = "Type can take the value 1, 0 or -1 and determines the criteria are to be used for comparison purposes." ;
9103 // -=*# Resource for function VERSCHIEBUNG #*=-
9104 Resource SC_OPCODE_OFFSET
9106 String 1 // Description
9108 Text [ en-US ] = "Returns a reference which has been moved in relation to the starting point." ;
9113 ID_FUNCTION_GRP_TABLE;
9114 U2S( HID_FUNC_VERSCHIEBUNG );
9118 String 2 // Name of Parameter 1
9120 Text [ en-US ] = "reference" ;
9122 String 3 // Description of Parameter 1
9124 Text [ en-US ] = "The reference (cell) from which to base the movement." ;
9126 String 4 // Name of Parameter 2
9128 Text [ en-US ] = "rows" ;
9130 String 5 // Description of Parameter 2
9132 Text [ en-US ] = "The number of rows to be moved either up or down." ;
9134 String 6 // Name of Parameter 3
9136 Text [ en-US ] = "columns" ;
9138 String 7 // Description of Parameter 3
9140 Text [ en-US ] = "The number of columns that are to be moved to the left or to the right." ;
9142 String 8 // Name of Parameter 4
9144 Text [ en-US ] = "height" ;
9146 String 9 // Description of Parameter 4
9148 Text [ en-US ] = "The number of rows of the moved reference." ;
9150 String 10 // Name of Parameter 5
9152 Text [ en-US ] = "width" ;
9154 String 11 // Description of Parameter 5
9156 Text [ en-US ] = "The number of columns in the moved reference." ;
9159 // -=*# Resource for function FEHLERTYP #*=-
9160 Resource SC_OPCODE_ERROR_TYPE
9162 String 1 // Description
9164 Text [ en-US ] = "Returns a number corresponding to an error type" ;
9169 ID_FUNCTION_GRP_TABLE;
9170 U2S( HID_FUNC_FEHLERTYP );
9174 String 2 // Name of Parameter 1
9176 Text [ en-US ] = "reference" ;
9178 String 3 // Description of Parameter 1
9180 Text [ en-US ] = "The reference (cell) in which the error occurred." ;
9183 // -=*# Resource for function VORLAGE #*=-
9184 Resource SC_OPCODE_STYLE
9186 String 1 // Description
9188 Text [ en-US ] = "Applies a Style to the formula cell." ;
9193 ID_FUNCTION_GRP_TABLE;
9194 U2S( HID_FUNC_VORLAGE );
9198 String 2 // Name of Parameter 1
9200 Text [ en-US ] = "Style" ;
9202 String 3 // Description of Parameter 1
9204 Text [ en-US ] = "The name of the Style to be applied." ;
9206 String 4 // Name of Parameter 2
9208 Text [ en-US ] = "Time" ;
9210 String 5 // Description of Parameter 2
9212 Text [ en-US ] = "The time (in seconds) that the Style is to remain valid." ;
9214 String 6 // Name of Parameter 3
9216 Text [ en-US ] = "Style2" ;
9218 String 7 // Description of Parameter 3
9220 Text [ en-US ] = "The Style to be applied after time expires." ;
9223 // -=*# Resource for function DDE #*=-
9224 Resource SC_OPCODE_DDE
9226 String 1 // Description
9228 Text [ en-US ] = "Result of a DDE link." ;
9233 ID_FUNCTION_GRP_TABLE;
9234 U2S( HID_FUNC_DDE );
9238 String 2 // Name of Parameter 1
9240 Text [ en-US ] = "server" ;
9242 String 3 // Description of Parameter 1
9244 Text [ en-US ] = "The name of the server application." ;
9246 String 4 // Name of Parameter 2
9248 Text [ en-US ] = "File" ;
9250 String 5 // Description of Parameter 2
9252 Text [ en-US ] = "The name of the file." ;
9254 String 6 // Name of Parameter 3
9256 Text [ en-US ] = "range" ;
9258 String 7 // Description of Parameter 3
9260 Text [ en-US ] = "The range from which data is to be taken." ;
9262 String 8 // Name of Parameter 4
9264 Text [ en-US ] = "mode" ;
9266 String 9 // Description of Parameter 4
9268 Text [ en-US ] = "Defines how data is to be converted to numbers." ;
9271 // -=*# Resource for function HYPERLINK #*=-
9272 Resource SC_OPCODE_HYPERLINK
9274 String 1 // Description
9276 Text [ en-US ] = "Hyperlink." ;
9281 ID_FUNCTION_GRP_TABLE;
9282 U2S( HID_FUNC_HYPERLINK );
9286 String 2 // Name of Parameter 1
9288 Text [ en-US ] = "URL " ;
9290 String 3 // Description of Parameter 1
9292 Text [ en-US ] = "URL";
9294 String 4 // Name of Parameter 2
9296 Text [ en-US ] = "CellText " ;
9298 String 5 // Description of Parameter 2
9300 Text [ en-US ] = "Cell Text";
9303 // -=*# Resource for function GETPIVOTDATA #*=-
9304 Resource SC_OPCODE_GET_PIVOT_DATA
9306 String 1 // Description
9308 Text [ en-US ] = "Extracts value(s) from a pivot table.";
9313 ID_FUNCTION_GRP_TABLE;
9314 U2S( HID_FUNC_GETPIVOTDATA );
9315 VAR_ARGS+2; 0; 0; 1;
9318 String 2 // Name of Parameter 1
9320 Text [ en-US ] = "Data Field";
9322 String 3 // Description of Parameter 1
9324 Text [ en-US ] = "The name of the pivot table field to extract.";
9326 String 4 // Name of Parameter 2
9328 Text [ en-US ] = "Pivot Table";
9330 String 5 // Description of Parameter 2
9332 Text [ en-US ] = "A reference to a cell or range in the pivot table.";
9334 String 6 // Name of Parameter 3
9336 Text [ en-US ] = "Field Name / Item";
9338 String 7 // Description of Parameter 3
9340 Text [ en-US ] = "Field name/value pair to filter the target data.";
9343 // -=*# Resource for function BAHTTEXT #*=-
9344 Resource SC_OPCODE_BAHTTEXT
9346 String 1 // Description
9348 Text [ en-US ] = "Converts a number to text (Baht)." ;
9353 ID_FUNCTION_GRP_TEXT;
9354 U2S( HID_FUNC_BAHTTEXT );
9358 String 2 // Name of Parameter 1
9360 Text [ en-US ] = "Number" ;
9362 String 3 // Description of Parameter 1
9364 Text [ en-US ] = "The number to convert.";
9367 // -=*# Resource for function JIS #*=-
9368 Resource SC_OPCODE_JIS
9370 String 1 // Description
9372 Text [ en-US ] = "Converts half-width ASCII and katakana characters to full-width." ;
9377 ID_FUNCTION_GRP_TEXT;
9378 U2S( HID_FUNC_JIS );
9382 String 2 // Name of Parameter 1
9384 Text [ en-US ] = "text" ;
9386 String 3 // Description of Parameter 1
9388 Text [ en-US ] = "The text to convert.";
9391 // -=*# Resource for function ASC #*=-
9392 Resource SC_OPCODE_ASC
9394 String 1 // Description
9396 Text [ en-US ] = "Converts full-width ASCII and katakana characters to half-width." ;
9401 ID_FUNCTION_GRP_TEXT;
9402 U2S( HID_FUNC_ASC );
9406 String 2 // Name of Parameter 1
9408 Text [ en-US ] = "text" ;
9410 String 3 // Description of Parameter 1
9412 Text [ en-US ] = "The text to convert.";
9415 // -=*# Resource for function CODE #*=-
9416 Resource SC_OPCODE_CODE
9418 String 1 // Description
9420 Text [ en-US ] = "Returns a numeric code for the first character in a text string." ;
9425 ID_FUNCTION_GRP_TEXT;
9426 U2S( HID_FUNC_CODE );
9430 String 2 // Name of Parameter 1
9432 Text [ en-US ] = "text" ;
9434 String 3 // Description of Parameter 1
9436 Text [ en-US ] = "This is the text for which the code of the first character is to be found." ;
9439 // -=*# Resource for function DM #*=-
9440 Resource SC_OPCODE_CURRENCY
9442 String 1 // Description
9444 Text [ en-US ] = "Converts a number to text in currency format." ;
9449 ID_FUNCTION_GRP_TEXT;
9454 String 2 // Name of Parameter 1
9456 Text [ en-US ] = "value" ;
9458 String 3 // Description of Parameter 1
9460 Text [ en-US ] = "Value is a number, a reference to a cell containing a number or a formula that results in a number." ;
9462 String 4 // Name of Parameter 2
9464 Text [ en-US ] = "decimals" ;
9466 String 5 // Description of Parameter 2
9468 Text [ en-US ] = "Decimal places. Denotes the number of digits to the right of the decimal point." ;
9471 // -=*# Resource for function ZEICHEN #*=-
9472 Resource SC_OPCODE_CHAR
9474 String 1 // Description
9476 Text [ en-US ] = "Converts a code number into a character or letter." ;
9481 ID_FUNCTION_GRP_TEXT;
9482 U2S( HID_FUNC_ZEICHEN );
9486 String 2 // Name of Parameter 1
9488 Text [ en-US ] = "number" ;
9490 String 3 // Description of Parameter 1
9492 Text [ en-US ] = "The code value for the character." ;
9495 // -=*# Resource for function SÄUBERN #*=-
9496 Resource SC_OPCODE_CLEAN
9498 String 1 // Description
9500 Text [ en-US ] = "Removes all nonprintable characters from text." ;
9505 ID_FUNCTION_GRP_TEXT;
9506 U2S( HID_FUNC_SAEUBERN );
9510 String 2 // Name of Parameter 1
9512 Text [ en-US ] = "text" ;
9514 String 3 // Description of Parameter 1
9516 Text [ en-US ] = "The text from which nonprintable characters are to be removed." ;
9519 // -=*# Resource for function VERKETTEN #*=-
9520 Resource SC_OPCODE_CONCAT
9522 String 1 // Description
9524 Text [ en-US ] = "Combines several text items into one." ;
9529 ID_FUNCTION_GRP_TEXT;
9530 U2S( HID_FUNC_VERKETTEN );
9534 String 2 // Name of Parameter 1
9536 Text [ en-US ] = "text " ;
9538 String 3 // Description of Parameter 1
9540 Text [ en-US ] = "Text for the concatentation." ;
9543 // -=*# Resource for function IDENTISCH #*=-
9544 Resource SC_OPCODE_EXACT
9546 String 1 // Description
9548 Text [ en-US ] = "Specifies whether two texts are identical." ;
9553 ID_FUNCTION_GRP_TEXT;
9554 U2S( HID_FUNC_IDENTISCH );
9558 String 2 // Name of Parameter 1
9560 Text [ en-US ] = "text_1" ;
9562 String 3 // Description of Parameter 1
9564 Text [ en-US ] = "The first text to be used for comparing texts." ;
9566 String 4 // Name of Parameter 2
9568 Text [ en-US ] = "text_2" ;
9570 String 5 // Description of Parameter 2
9572 Text [ en-US ] = "The second text for comparing texts." ;
9575 // -=*# Resource for function FINDEN #*=-
9576 Resource SC_OPCODE_FIND
9578 String 1 // Description
9580 Text [ en-US ] = "Looks for a string of text within another (case sensitive)" ;
9585 ID_FUNCTION_GRP_TEXT;
9586 U2S( HID_FUNC_FINDEN );
9590 String 2 // Name of Parameter 1
9592 Text [ en-US ] = "find_text" ;
9594 String 3 // Description of Parameter 1
9596 Text [ en-US ] = "The text to be found." ;
9598 String 4 // Name of Parameter 2
9600 Text [ en-US ] = "text" ;
9602 String 5 // Description of Parameter 2
9604 Text [ en-US ] = "The text in which a search is to be made." ;
9606 String 6 // Name of Parameter 3
9608 Text [ en-US ] = "position" ;
9610 String 7 // Description of Parameter 3
9612 Text [ en-US ] = "The position in the text from which the search starts." ;
9615 // -=*# Resource for function SUCHEN #*=-
9616 Resource SC_OPCODE_SEARCH
9618 String 1 // Description
9620 Text [ en-US ] = "Looks for one text value within another (not case-sensitive)." ;
9625 ID_FUNCTION_GRP_TEXT;
9626 U2S( HID_FUNC_SUCHEN );
9630 String 2 // Name of Parameter 1
9632 Text [ en-US ] = "find_text" ;
9634 String 3 // Description of Parameter 1
9636 Text [ en-US ] = "The text to be found." ;
9638 String 4 // Name of Parameter 2
9640 Text [ en-US ] = "text" ;
9642 String 5 // Description of Parameter 2
9644 Text [ en-US ] = "The text in which a search is to be made." ;
9646 String 6 // Name of Parameter 3
9648 Text [ en-US ] = "position" ;
9650 String 7 // Description of Parameter 3
9652 Text [ en-US ] = "The position in the text where the search is started." ;
9655 // -=*# Resource for function GLÄTTEN #*=-
9656 Resource SC_OPCODE_TRIM
9658 String 1 // Description
9660 Text [ en-US ] = "Removes extra spaces from text." ;
9665 ID_FUNCTION_GRP_TEXT;
9666 U2S( HID_FUNC_GLAETTEN );
9670 String 2 // Name of Parameter 1
9672 Text [ en-US ] = "text" ;
9674 String 3 // Description of Parameter 1
9676 Text [ en-US ] = "The text in which extra spaces between words are to be deleted." ;
9679 // -=*# Resource for function GROSS2 #*=-
9680 Resource SC_OPCODE_PROPPER
9682 String 1 // Description
9684 Text [ en-US ] = "Capitalizes the first letter in all words." ;
9689 ID_FUNCTION_GRP_TEXT;
9690 U2S( HID_FUNC_GROSS2 );
9694 String 2 // Name of Parameter 1
9696 Text [ en-US ] = "text" ;
9698 String 3 // Description of Parameter 1
9700 Text [ en-US ] = "The text in which the beginning of words are to be replaced by capital letters." ;
9703 // -=*# Resource for function GROSS #*=-
9704 Resource SC_OPCODE_UPPER
9706 String 1 // Description
9708 Text [ en-US ] = "Converts text to uppercase." ;
9713 ID_FUNCTION_GRP_TEXT;
9714 U2S( HID_FUNC_GROSS );
9718 String 2 // Name of Parameter 1
9720 Text [ en-US ] = "text" ;
9722 String 3 // Description of Parameter 1
9724 Text [ en-US ] = "The text in which lower case letters are to be converted to capitals." ;
9727 // -=*# Resource for function KLEIN #*=-
9728 Resource SC_OPCODE_LOWER
9730 String 1 // Description
9732 Text [ en-US ] = "Converts text to lowercase." ;
9737 ID_FUNCTION_GRP_TEXT;
9738 U2S( HID_FUNC_KLEIN );
9742 String 2 // Name of Parameter 1
9744 Text [ en-US ] = "text" ;
9746 String 3 // Description of Parameter 1
9748 Text [ en-US ] = "The text in which capitals are converted to lower case letters." ;
9751 // -=*# Resource for function WERT #*=-
9752 Resource SC_OPCODE_VALUE
9754 String 1 // Description
9756 Text [ en-US ] = "Converts text to a number." ;
9761 ID_FUNCTION_GRP_TEXT;
9762 U2S( HID_FUNC_WERT );
9766 String 2 // Name of Parameter 1
9768 Text [ en-US ] = "text" ;
9770 String 3 // Description of Parameter 1
9772 Text [ en-US ] = "The text to be converted to a number." ;
9775 // -=*# Resource for function TEXT #*=-
9776 Resource SC_OPCODE_TEXT
9778 String 1 // Description
9780 Text [ en-US ] = "Converts a number to text according to a given format." ;
9785 ID_FUNCTION_GRP_TEXT;
9786 U2S( HID_FUNC_TEXT );
9790 String 2 // Name of Parameter 1
9792 Text [ en-US ] = "number" ;
9794 String 3 // Description of Parameter 1
9796 Text [ en-US ] = "The numeric value to be converted." ;
9798 String 4 // Name of Parameter 2
9800 Text [ en-US ] = "Format" ;
9802 String 5 // Description of Parameter 2
9804 Text [ en-US ] = "The text that describes the format." ;
9807 // -=*# Resource for function T #*=-
9808 Resource SC_OPCODE_T
9810 String 1 // Description
9812 Text [ en-US ] = "Returns a value if it is text, otherwise an empty string." ;
9817 ID_FUNCTION_GRP_TEXT;
9822 String 2 // Name of Parameter 1
9824 Text [ en-US ] = "value" ;
9826 String 3 // Description of Parameter 1
9828 Text [ en-US ] = "The value to be checked and returned if it is text." ;
9831 // -=*# Resource for function ERSETZEN #*=-
9832 Resource SC_OPCODE_REPLACE
9834 String 1 // Description
9836 Text [ en-US ] = "Replaces characters within a text string with a different text string." ;
9841 ID_FUNCTION_GRP_TEXT;
9842 U2S( HID_FUNC_ERSETZEN );
9846 String 2 // Name of Parameter 1
9848 Text [ en-US ] = "Text" ;
9850 String 3 // Description of Parameter 1
9852 Text [ en-US ] = "The text in which some characters are to be replaced." ;
9854 String 4 // Name of Parameter 2
9856 Text [ en-US ] = "position" ;
9858 String 5 // Description of Parameter 2
9860 Text [ en-US ] = "The character position from which text is to be replaced." ;
9862 String 6 // Name of Parameter 3
9864 Text [ en-US ] = "length" ;
9866 String 7 // Description of Parameter 3
9868 Text [ en-US ] = "The number of characters to be replaced." ;
9870 String 8 // Name of Parameter 4
9872 Text [ en-US ] = "new text" ;
9874 String 9 // Description of Parameter 4
9876 Text [ en-US ] = "The text to be inserted." ;
9879 // -=*# Resource for function FEST #*=-
9880 Resource SC_OPCODE_FIXED
9882 String 1 // Description
9884 Text [ en-US ] = "Formats a number with a fixed number of places after the decimal point and thousands separator." ;
9889 ID_FUNCTION_GRP_TEXT;
9890 U2S( HID_FUNC_FEST );
9894 String 2 // Name of Parameter 1
9896 Text [ en-US ] = "number" ;
9898 String 3 // Description of Parameter 1
9900 Text [ en-US ] = "The number to be formatted." ;
9902 String 4 // Name of Parameter 2
9904 Text [ en-US ] = "Decimals" ;
9906 String 5 // Description of Parameter 2
9908 Text [ en-US ] = "Decimal places. The number of fixed decimal places that are to be displayed." ;
9910 String 6 // Name of Parameter 3
9912 Text [ en-US ] = "No thousands separators" ;
9914 String 7 // Description of Parameter 3
9916 Text [ en-US ] = "Thousands separator. If 0 or omitted the locale group separator is used else the separator is suppressed." ;
9919 // -=*# Resource for function LÄNGE #*=-
9920 Resource SC_OPCODE_LEN
9922 String 1 // Description
9924 Text [ en-US ] = "Calculates length of a text string." ;
9929 ID_FUNCTION_GRP_TEXT;
9930 U2S( HID_FUNC_LAENGE );
9934 String 2 // Name of Parameter 1
9936 Text [ en-US ] = "text" ;
9938 String 3 // Description of Parameter 1
9940 Text [ en-US ] = "The text in which the length is to be determined." ;
9943 // -=*# Resource for function LINKS #*=-
9944 Resource SC_OPCODE_LEFT
9946 String 1 // Description
9948 Text [ en-US ] = "Returns the first character or characters of a text." ;
9953 ID_FUNCTION_GRP_TEXT;
9954 U2S( HID_FUNC_LINKS );
9958 String 2 // Name of Parameter 1
9960 Text [ en-US ] = "text" ;
9962 String 3 // Description of Parameter 1
9964 Text [ en-US ] = "The text where the initial partial words are to be determined." ;
9966 String 4 // Name of Parameter 2
9968 Text [ en-US ] = "number" ;
9970 String 5 // Description of Parameter 2
9972 Text [ en-US ] = "The number of characters for the start text." ;
9975 // -=*# Resource for function RECHTS #*=-
9976 Resource SC_OPCODE_RIGHT
9978 String 1 // Description
9980 Text [ en-US ] = "Returns the last character or characters of a text." ;
9985 ID_FUNCTION_GRP_TEXT;
9986 U2S( HID_FUNC_RECHTS );
9990 String 2 // Name of Parameter 1
9992 Text [ en-US ] = "text" ;
9994 String 3 // Description of Parameter 1
9996 Text [ en-US ] = "The text in which the end partial words are to be determined." ;
9998 String 4 // Name of Parameter 2
10000 Text [ en-US ] = "number" ;
10002 String 5 // Description of Parameter 2
10004 Text [ en-US ] = "The number of characters for the end text." ;
10007 // -=*# Resource for function TEIL #*=-
10008 Resource SC_OPCODE_MID
10010 String 1 // Description
10012 Text [ en-US ] = "Returns a partial text string of a text." ;
10017 ID_FUNCTION_GRP_TEXT;
10018 U2S( HID_FUNC_TEIL );
10022 String 2 // Name of Parameter 1
10024 Text [ en-US ] = "text" ;
10026 String 3 // Description of Parameter 1
10028 Text [ en-US ] = "The text in which partial words are to be determined." ;
10030 String 4 // Name of Parameter 2
10032 Text [ en-US ] = "start" ;
10034 String 5 // Description of Parameter 2
10036 Text [ en-US ] = "The position from which the part word is to be determined." ;
10038 String 6 // Name of Parameter 3
10040 Text [ en-US ] = "number" ;
10042 String 7 // Description of Parameter 3
10044 Text [ en-US ] = "The number of characters for the text." ;
10047 // -=*# Resource for function WIEDERHOLEN #*=-
10048 Resource SC_OPCODE_REPT
10050 String 1 // Description
10052 Text [ en-US ] = "Repeats text a given number of times." ;
10057 ID_FUNCTION_GRP_TEXT;
10058 U2S( HID_FUNC_WIEDERHOLEN );
10062 String 2 // Name of Parameter 1
10064 Text [ en-US ] = "text" ;
10066 String 3 // Description of Parameter 1
10068 Text [ en-US ] = "The text to be repeated." ;
10070 String 4 // Name of Parameter 2
10072 Text [ en-US ] = "number" ;
10074 String 5 // Description of Parameter 2
10076 Text [ en-US ] = "The number of times the text is to be repeated." ;
10079 // -=*# Resource for function WECHSELN #*=-
10080 Resource SC_OPCODE_SUBSTITUTE
10082 String 1 // Description
10084 Text [ en-US ] = "Substitutes new text for old text in a string." ;
10089 ID_FUNCTION_GRP_TEXT;
10090 U2S( HID_FUNC_WECHSELN );
10094 String 2 // Name of Parameter 1
10096 Text [ en-US ] = "text" ;
10098 String 3 // Description of Parameter 1
10100 Text [ en-US ] = "The text in which partial words are to be replaced." ;
10102 String 4 // Name of Parameter 2
10104 Text [ en-US ] = "search_text" ;
10106 String 5 // Description of Parameter 2
10108 Text [ en-US ] = "The partial string to be (repeatedly) replaced." ;
10110 String 6 // Name of Parameter 3
10112 Text [ en-US ] = "new text" ;
10114 String 7 // Description of Parameter 3
10116 Text [ en-US ] = "The text which is to replace the text string." ;
10118 String 8 // Name of Parameter 4
10120 Text [ en-US ] = "occurrence" ;
10122 String 9 // Description of Parameter 4
10124 Text [ en-US ] = "Which occurrence of the old text is to be replaced." ;
10127 // -=*# Resource for function BASIS #*=-
10128 Resource SC_OPCODE_BASE
10130 String 1 // Description
10132 Text [ en-US ] = "Converts a positive integer to text from a number system to the base defined." ;
10137 ID_FUNCTION_GRP_TEXT;
10138 U2S( HID_FUNC_BASIS );
10142 String 2 // Name of Parameter 1
10144 Text [ en-US ] = "number" ;
10146 String 3 // Description of Parameter 1
10148 Text [ en-US ] = "The number to be converted." ;
10150 String 4 // Name of Parameter 2
10152 Text [ en-US ] = "radix" ;
10154 String 5 // Description of Parameter 2
10156 Text [ en-US ] = "The base number for conversion must be in the range 2 - 36." ;
10158 String 6 // Name of Parameter 3
10160 Text [ en-US ] = "Minimum length" ;
10162 String 7 // Description of Parameter 3
10164 Text [ en-US ] = "If the text is shorter than the specified length, zeros are added to the left of the string." ;
10167 // -=*# Resource for function DEZIMAL #*=-
10168 Resource SC_OPCODE_DECIMAL
10170 String 1 // Description
10172 Text [ en-US ] = "Converts a text of a specified number system to a positive integer in the base given." ;
10177 ID_FUNCTION_GRP_TEXT;
10178 U2S( HID_FUNC_DEZIMAL );
10182 String 2 // Name of Parameter 1
10184 Text [ en-US ] = "text" ;
10186 String 3 // Description of Parameter 1
10188 Text [ en-US ] = "The text to be converted." ;
10190 String 4 // Name of Parameter 2
10192 Text [ en-US ] = "radix" ;
10194 String 5 // Description of Parameter 2
10196 Text [ en-US ] = "The base number for conversion must be in the range 2 - 36." ;
10199 // -=*# Resource for function CONVERT #*=-
10200 Resource SC_OPCODE_CONVERT
10202 String 1 // Description
10204 Text [ en-US ] = "Converts a value according to a conversion table in the configuration (main.xcd).";
10209 ID_FUNCTION_GRP_MATH;
10210 U2S( HID_FUNC_UMRECHNEN );
10214 String 2 // Name of Parameter 1
10216 Text [ en-US ] = "value" ;
10218 String 3 // Description of Parameter 1
10220 Text [ en-US ] = "The value to be converted.";
10222 String 4 // Name of Parameter 2
10224 Text [ en-US ] = "text" ;
10226 String 5 // Description of Parameter 2
10228 Text [ en-US ] = "Unit from which something is converted, case-sensitive.";
10230 String 6 // Name of Parameter 3
10232 Text [ en-US ] = "text" ;
10234 String 7 // Description of Parameter 3
10236 Text [ en-US ] = "Unit into which something is converted, case-sensitive.";
10239 // -=*# Resource for function ROEMISCH #*=-
10240 Resource SC_OPCODE_ROMAN
10242 String 1 // Description
10244 Text [ en-US ] = "Converts a number to a Roman numeral.";
10249 ID_FUNCTION_GRP_TEXT;
10250 U2S( HID_FUNC_ROEMISCH );
10254 String 2 // Name of Parameter 1
10256 Text [ en-US ] = "Number";
10258 String 3 // Description of Parameter 1
10260 Text [ en-US ] = "The number to be converted to a Roman numeral must be in the 0 - 3999 range.";
10262 String 4 // Name of Parameter 2
10264 Text [ en-US ] = "Mode";
10266 String 5 // Description of Parameter 2
10268 Text [ en-US ] = "The more this value increases, the more the Roman numeral is simplified. The value must be in the 0 - 4 range.";
10271 // -=*# Resource for function ARABISCH #*=-
10272 Resource SC_OPCODE_ARABIC
10274 String 1 // Description
10276 Text [ en-US ] = "Calculates the value of a Roman numeral.";
10281 ID_FUNCTION_GRP_TEXT;
10282 U2S( HID_FUNC_ARABISCH );
10286 String 2 // Name of Parameter 1
10288 Text [ en-US ] = "Text";
10290 String 3 // Description of Parameter 1
10292 Text [ en-US ] = "The text that represents a Roman numeral.";
10295 Resource SC_OPCODE_INFO
10299 Text [ en-US ] = "Returns information about the environment.";
10304 ID_FUNCTION_GRP_INFO;
10305 U2S( HID_FUNC_INFO );
10311 Text [ en-US ] = "Text";
10315 Text [ en-US ] = "Can be \"osversion\", \"system\", \"release\", \"numfile\", and \"recalc\".";
10318 Resource SC_OPCODE_UNICODE
10320 String 1 // Description
10322 Text [ en-US ] = "Returns the numeric code for the first Unicode character in a text string." ;
10327 ID_FUNCTION_GRP_TEXT;
10328 U2S( HID_FUNC_UNICODE );
10332 String 2 // Name of Parameter 1
10334 Text [ en-US ] = "text" ;
10336 String 3 // Description of Parameter 1
10338 Text [ en-US ] = "This is the text for which the code of the first character is to be found." ;
10341 Resource SC_OPCODE_UNICHAR
10343 String 1 // Description
10345 Text [ en-US ] = "Converts a code number into a Unicode character or letter." ;
10350 ID_FUNCTION_GRP_TEXT;
10351 U2S( HID_FUNC_UNICHAR );
10355 String 2 // Name of Parameter 1
10357 Text [ en-US ] = "number" ;
10359 String 3 // Description of Parameter 1
10361 Text [ en-US ] = "The code value for the character." ;
10364 Resource SC_OPCODE_EUROCONVERT
10366 String 1 // Description
10368 Text [ en-US ] = "Converts a value from one to another Euro currency.";
10373 ID_FUNCTION_GRP_MATH;
10374 U2S( HID_FUNC_EUROCONVERT );
10378 String 2 // Name of Parameter 1
10380 Text [ en-US ] = "value" ;
10382 String 3 // Description of Parameter 1
10384 Text [ en-US ] = "The value to be converted.";
10386 String 4 // Name of Parameter 2
10388 Text [ en-US ] = "from_currency" ;
10390 String 5 // Description of Parameter 2
10392 Text [ en-US ] = "ISO 4217 code of the currency from which is converted, case-sensitive.";
10394 String 6 // Name of Parameter 3
10396 Text [ en-US ] = "to_currency" ;
10398 String 7 // Description of Parameter 3
10400 Text [ en-US ] = "ISO 4217 code of the currency into which is converted, case-sensitive.";
10402 String 8 // Name of Parameter 4
10404 Text [ en-US ] = "full_precision" ;
10406 String 9 // Description of Parameter 4
10408 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.";
10410 String 10 // Name of Parameter 5
10412 Text [ en-US ] = "triangulation_precision" ;
10414 String 11 // Description of Parameter 5
10416 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.";
10417 Text [ x-comment ] = "This description uses almost all available space in the dialog, make sure translations fit in size." ;
10420 Resource SC_OPCODE_NUMBERVALUE
10422 String 1 // Description
10424 Text [ en-US ] = "Converts text to a number, in a locale-independent way." ;
10429 ID_FUNCTION_GRP_TEXT;
10430 U2S( HID_FUNC_NUMBERVALUE );
10434 String 2 // Name of Parameter 1
10436 Text [ en-US ] = "text" ;
10438 String 3 // Description of Parameter 1
10440 Text [ en-US ] = "The text to be converted to a number." ;
10442 String 4 // Name of Parameter 2
10444 Text [ en-US ] = "decimal_separator" ;
10446 String 5 // Description of Parameter 2
10448 Text [ en-US ] = "Defines the character used as the decimal separator." ;
10450 String 6 // Name of Parameter 3
10452 Text [ en-US ] = "group_separator" ;
10454 String 7 // Description of Parameter 3
10456 Text [ en-US ] = "Defines the character(s) used as the group separator." ;
10460 Resource SC_OPCODE_BITAND
10462 String 1 // Description
10464 Text [ en-US ] = "Bitwise \"AND\" of two integers.";
10469 ID_FUNCTION_GRP_MATH;
10470 U2S( HID_FUNC_BITAND );
10474 String 2 // Name of Parameter 1
10476 Text [ en-US ] = "Number" ;
10478 String 3 // Description of Parameter 1
10480 Text [ en-US ] = "Positive integer less than 2^48." ;
10482 String 4 // Name of Parameter 2
10484 Text [ en-US ] = "Number" ;
10486 String 5 // Description of Parameter 2
10488 Text [ en-US ] = "Positive integer less than 2^48." ;
10491 Resource SC_OPCODE_BITOR
10493 String 1 // Description
10495 Text [ en-US ] = "Bitwise \"OR\" of two integers.";
10500 ID_FUNCTION_GRP_MATH;
10501 U2S( HID_FUNC_BITOR );
10505 String 2 // Name of Parameter 1
10507 Text [ en-US ] = "Number" ;
10509 String 3 // Description of Parameter 1
10511 Text [ en-US ] = "Positive integer less than 2^48." ;
10513 String 4 // Name of Parameter 2
10515 Text [ en-US ] = "Number" ;
10517 String 5 // Description of Parameter 2
10519 Text [ en-US ] = "Positive integer less than 2^48." ;
10522 Resource SC_OPCODE_BITXOR
10524 String 1 // Description
10526 Text [ en-US ] = "Bitwise \"exclusive OR\" of two integers.";
10531 ID_FUNCTION_GRP_MATH;
10532 U2S( HID_FUNC_BITXOR );
10536 String 2 // Name of Parameter 1
10538 Text [ en-US ] = "Number" ;
10540 String 3 // Description of Parameter 1
10542 Text [ en-US ] = "Positive integer less than 2^48." ;
10544 String 4 // Name of Parameter 2
10546 Text [ en-US ] = "Number" ;
10548 String 5 // Description of Parameter 2
10550 Text [ en-US ] = "Positive integer less than 2^48." ;
10553 Resource SC_OPCODE_BITRSHIFT
10555 String 1 // Description
10557 Text [ en-US ] = "Bitwise right shift of an integer value.";
10562 ID_FUNCTION_GRP_MATH;
10563 U2S( HID_FUNC_BITRSHIFT );
10567 String 2 // Name of Parameter 1
10569 Text [ en-US ] = "Number" ;
10571 String 3 // Description of Parameter 1
10573 Text [ en-US ] = "The value to be shifted. Positive integer less than 2^48." ;
10575 String 4 // Name of Parameter 2
10577 Text [ en-US ] = "Shift" ;
10579 String 5 // Description of Parameter 2
10581 Text [ en-US ] = "The integer number of bits the value is to be shifted." ;
10584 Resource SC_OPCODE_BITLSHIFT
10586 String 1 // Description
10588 Text [ en-US ] = "Bitwise left shift of an integer value.";
10593 ID_FUNCTION_GRP_MATH;
10594 U2S( HID_FUNC_BITLSHIFT );
10598 String 2 // Name of Parameter 1
10600 Text [ en-US ] = "Number" ;
10602 String 3 // Description of Parameter 1
10604 Text [ en-US ] = "The value to be shifted. Positive integer less than 2^48." ;
10606 String 4 // Name of Parameter 2
10608 Text [ en-US ] = "Shift" ;
10610 String 5 // Description of Parameter 2
10612 Text [ en-US ] = "The integer number of bits the value is to be shifted." ;
10615 Resource SC_OPCODE_LENB
10617 String 1 // Description
10619 Text [ en-US ] = "Calculates length of a text string, with DBCS" ;
10624 ID_FUNCTION_GRP_TEXT;
10625 U2S( HID_FUNC_LENB );
10629 String 2 // Name of Parameter 1
10631 Text [ en-US ] = "text" ;
10633 String 3 // Description of Parameter 1
10635 Text [ en-US ] = "The text in which the length is to be determined." ;
10638 Resource SC_OPCODE_RIGHTB
10640 String 1 // Description
10642 Text [ en-US ] = "Returns the last character or characters of a text,with DBCS" ;
10647 ID_FUNCTION_GRP_TEXT;
10648 U2S( HID_FUNC_RIGHTB );
10652 String 2 // Name of Parameter 1
10654 Text [ en-US ] = "text" ;
10656 String 3 // Description of Parameter 1
10658 Text [ en-US ] = "The text in which the end partial words are to be determined." ;
10660 String 4 // Name of Parameter 2
10662 Text [ en-US ] = "number" ;
10664 String 5 // Description of Parameter 2
10666 Text [ en-US ] = "The number of characters for the end text." ;
10669 Resource SC_OPCODE_LEFTB
10671 String 1 // Description
10673 Text [ en-US ] = "Returns the first character or characters of a text,with DBCS" ;
10678 ID_FUNCTION_GRP_TEXT;
10679 U2S( HID_FUNC_LEFTB );
10683 String 2 // Name of Parameter 1
10685 Text [ en-US ] = "text" ;
10687 String 3 // Description of Parameter 1
10689 Text [ en-US ] = "The text where the initial partial words are to be determined." ;
10691 String 4 // Name of Parameter 2
10693 Text [ en-US ] = "number" ;
10695 String 5 // Description of Parameter 2
10697 Text [ en-US ] = "The number of characters for the start text." ;
10700 Resource SC_OPCODE_MIDB
10702 String 1 // Description
10704 Text [ en-US ] = "Returns a partial text string of a text, with DBCS" ;
10709 ID_FUNCTION_GRP_TEXT;
10710 U2S( HID_FUNC_MIDB );
10714 String 2 // Name of Parameter 1
10716 Text [ en-US ] = "text" ;
10718 String 3 // Description of Parameter 1
10720 Text [ en-US ] = "The text in which partial words are to be determined." ;
10722 String 4 // Name of Parameter 2
10724 Text [ en-US ] = "start" ;
10726 String 5 // Description of Parameter 2
10728 Text [ en-US ] = "The position from which the part word is to be determined." ;
10730 String 6 // Name of Parameter 3
10732 Text [ en-US ] = "number" ;
10734 String 7 // Description of Parameter 3
10736 Text [ en-US ] = "The number of characters for the text." ;
10739 Resource SC_OPCODE_FILTERXML
10744 ID_FUNCTION_GRP_TEXT;
10745 U2S( HID_FUNC_FILTERXML );
10749 String 1 // Description
10751 Text [ en-US ] = "Apply an XPath expression to an XML document";
10753 String 2 // Name of Parameter 1
10755 Text [ en-US ] = "XML Document";
10757 String 3 // Description of Parameter 1
10759 Text [ en-US ] = "String containing a valid XML stream";
10761 String 4 // Name of parameter 2
10763 Text [ en-US ] = "XPath expression";
10765 String 5 // Description of Parameter 2
10767 Text [ en-US ] = "String containing a valid XPath expression";
10770 Resource SC_OPCODE_WEBSERVICE
10772 String 1 // Description
10774 Text [ en-US] = "Get some webcontent from an URI.";
10779 ID_FUNCTION_GRP_TEXT;
10780 U2S( HID_FUNC_WEBSERVICE );
10784 String 2 // Name of Parameter 1
10786 Text [ en-US ] = "URI";
10788 String 3 // Description of Parameter 1
10790 Text [ en-US ] = "URI of the webservice";
10799 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */