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" // ID_FUNCTION_GRP_XXX, HID_FUNC_XXX
77 #include "formula/compiler.hrc" // SC_OPCODE_XXX
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. A = 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. A = 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_MATH;
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 cell range in which the search criteria are given." ;
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_MATH;
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 cell range in which the search criteria are given." ;
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 cell ranges in which the search criteria are 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_MATH;
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 cell ranges in which the search criteria are 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_MATH;
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 cell ranges in which the search criteria are 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_MATH;
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 on which the criteria are to be applied." ;
3178 String 4 // Name of Parameter 2
3180 Text [ en-US ] = "criteria" ;
3182 String 5 // Description of Parameter 2
3184 Text [ en-US ] = "The cell range in which the search criteria are given." ;
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" ;
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" ;
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 VARIANZ #*=-
5091 Resource SC_OPCODE_VAR_A
5093 String 1 // Description
5095 Text [ en-US ] = "Returns the variance based on a sample. Text is evaluated as zero.";
5100 ID_FUNCTION_GRP_STATISTIC;
5101 U2S( HID_FUNC_VARIANZA );
5105 String 2 // Name of Parameter 1
5107 Text [ en-US ] = "value ";
5109 String 3 // Description of Parameter 1
5111 Text [ en-US ] = "Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from a basic total population.";
5114 // -=*# Resource for function VARIANZEN #*=-
5115 Resource SC_OPCODE_VAR_P
5117 String 1 // Description
5119 Text [ en-US ] = "Calculates variance based on the entire population." ;
5124 ID_FUNCTION_GRP_STATISTIC;
5125 U2S( HID_FUNC_VARIANZEN );
5129 String 2 // Name of Parameter 1
5131 Text [ en-US ] = "number " ;
5133 String 3 // Description of Parameter 1
5135 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which represent a population." ;
5138 // -=*# Resource for function VARIANZENA #*=-
5139 Resource SC_OPCODE_VAR_P_A
5141 String 1 // Description
5143 Text [ en-US ] = "Returns the variance based on the entire population. Text is evaluated as zero.";
5148 ID_FUNCTION_GRP_STATISTIC;
5149 U2S( HID_FUNC_VARIANZENA );
5153 String 2 // Name of Parameter 1
5155 Text [ en-US ] = "value ";
5157 String 3 // Description of Parameter 1
5159 Text [ en-US ] = "Value 1; value 2;... are 1 to 30 arguments representing a population.";
5162 // -=*# Resource for function STABW #*=-
5163 Resource SC_OPCODE_ST_DEV
5165 String 1 // Description
5167 Text [ en-US ] = "Calculates the standard deviation based on a sample." ;
5172 ID_FUNCTION_GRP_STATISTIC;
5173 U2S( HID_FUNC_STABW );
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 portray a sample of a population." ;
5186 // -=*# Resource for function STABWA #*=-
5187 Resource SC_OPCODE_ST_DEV_A
5189 String 1 // Description
5191 Text [ en-US ] = "Returns the standard deviation based on a sample. Text is evaluated as zero.";
5196 ID_FUNCTION_GRP_STATISTIC;
5197 U2S( HID_FUNC_STABWA );
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 sample taken from a basic total population.";
5210 // -=*# Resource for function STABWN #*=-
5211 Resource SC_OPCODE_ST_DEV_P
5213 String 1 // Description
5215 Text [ en-US ] = "Calculates the standard deviation based on the entire population." ;
5220 ID_FUNCTION_GRP_STATISTIC;
5221 U2S( HID_FUNC_STABWN );
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 STABWNA #*=-
5235 Resource SC_OPCODE_ST_DEV_P_A
5237 String 1 // Description
5239 Text [ en-US ] = "Returns the standard deviation based on the entire population. Text is evaluated as zero.";
5244 ID_FUNCTION_GRP_STATISTIC;
5245 U2S( HID_FUNC_STABWNA );
5249 String 2 // Name of Parameter 1
5251 Text [ en-US ] = "value ";
5253 String 3 // Description of Parameter 1
5255 Text [ en-US ] = "Value 1; value 2;... are 1 to 30 arguments corresponding to a population.";
5258 // -=*# Resource for function MITTELWERT #*=-
5259 Resource SC_OPCODE_AVERAGE
5261 String 1 // Description
5263 Text [ en-US ] = "Returns the average of a sample." ;
5268 ID_FUNCTION_GRP_STATISTIC;
5269 U2S( HID_FUNC_MITTELWERT );
5273 String 2 // Name of Parameter 1
5275 Text [ en-US ] = "number " ;
5277 String 3 // Description of Parameter 1
5279 Text [ en-US ] = "Number 1, number 2;...are 1 to 30 numeric arguments representing a population sample." ;
5282 // -=*# Resource for function MITTELWERTA #*=-
5283 Resource SC_OPCODE_AVERAGE_A
5285 String 1 // Description
5287 Text [ en-US ] = "Returns the average value for a sample. Text is evaluated as zero.";
5292 ID_FUNCTION_GRP_STATISTIC;
5293 U2S( HID_FUNC_MITTELWERTA );
5297 String 2 // Name of Parameter 1
5299 Text [ en-US ] = "value ";
5301 String 3 // Description of Parameter 1
5303 Text [ en-US ] = "Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from a basic total population.";
5306 // -=*# Resource for function SUMQUADABW #*=-
5307 Resource SC_OPCODE_DEV_SQ
5309 String 1 // Description
5311 Text [ en-US ] = "Returns the sum of squares of deviations from the sample mean value" ;
5316 ID_FUNCTION_GRP_STATISTIC;
5317 U2S( HID_FUNC_SUMQUADABW );
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 sample." ;
5330 // -=*# Resource for function MITTELABW #*=-
5331 Resource SC_OPCODE_AVE_DEV
5333 String 1 // Description
5335 Text [ en-US ] = "Returns the average of the absolute deviations of a sample from the mean." ;
5340 ID_FUNCTION_GRP_STATISTIC;
5341 U2S( HID_FUNC_MITTELABW );
5345 String 2 // Name of Parameter 1
5347 Text [ en-US ] = "number " ;
5349 String 3 // Description of Parameter 1
5351 Text [ en-US ] = "Number 1, number 2;...are 1 to 30 numerical arguments representing a sample." ;
5354 // -=*# Resource for function SCHIEFE #*=-
5355 Resource SC_OPCODE_SCHIEFE
5357 String 1 // Description
5359 Text [ en-US ] = "Returns the skewness of a distribution." ;
5364 ID_FUNCTION_GRP_STATISTIC;
5365 U2S( HID_FUNC_SCHIEFE );
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 numerical arguments portraying a sample of the distribution." ;
5378 // -=*# Resource for function SKEWP #*=-
5379 Resource SC_OPCODE_SKEWP
5381 String 1 // Description
5383 Text [ en-US ] = "Returns the skewness of a distribution using the population of a random variable." ;
5388 ID_FUNCTION_GRP_STATISTIC;
5389 U2S( HID_FUNC_SKEWP );
5393 String 2 // Name of Parameter 1
5395 Text [ en-US ] = "number " ;
5397 String 3 // Description of Parameter 1
5399 Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments portraying the population." ;
5402 // -=*# Resource for function KURT #*=-
5403 Resource SC_OPCODE_KURT
5405 String 1 // Description
5407 Text [ en-US ] = "Returns the kurtosis of a distribution." ;
5412 ID_FUNCTION_GRP_STATISTIC;
5413 U2S( HID_FUNC_KURT );
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, representing a sample of the distribution." ;
5426 // -=*# Resource for function GEOMITTEL #*=-
5427 Resource SC_OPCODE_GEO_MEAN
5429 String 1 // Description
5431 Text [ en-US ] = "Returns the geometric mean of a sample." ;
5436 ID_FUNCTION_GRP_STATISTIC;
5437 U2S( HID_FUNC_GEOMITTEL );
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 which portray a sample." ;
5450 // -=*# Resource for function HARMITTEL #*=-
5451 Resource SC_OPCODE_HAR_MEAN
5453 String 1 // Description
5455 Text [ en-US ] = "Returns the harmonic mean of a sample." ;
5460 ID_FUNCTION_GRP_STATISTIC;
5461 U2S( HID_FUNC_HARMITTEL );
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 which portray a sample." ;
5474 // -=*# Resource for function MODALWERT #*=-
5475 Resource SC_OPCODE_MODAL_VALUE
5477 String 1 // Description
5479 Text [ en-US ] = "Returns the most common value in a sample." ;
5484 ID_FUNCTION_GRP_STATISTIC;
5485 U2S( HID_FUNC_MODALWERT );
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 which portray a sample." ;
5498 // -=*# Resource for function MEDIAN #*=-
5499 Resource SC_OPCODE_MEDIAN
5501 String 1 // Description
5503 Text [ en-US ] = "Returns the median of a given sample." ;
5508 ID_FUNCTION_GRP_STATISTIC;
5509 U2S( HID_FUNC_MEDIAN );
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 which portray a sample." ;
5522 // -=*# Resource for function QUANTIL #*=-
5523 Resource SC_OPCODE_PERCENTILE
5525 String 1 // Description
5527 Text [ en-US ] = "Returns the alpha quantile of a sample." ;
5532 ID_FUNCTION_GRP_STATISTIC;
5533 U2S( HID_FUNC_QUANTIL );
5537 String 2 // Name of Parameter 1
5539 Text [ en-US ] = "data" ;
5541 String 3 // Description of Parameter 1
5543 Text [ en-US ] = "The array of the data in the sample." ;
5545 String 4 // Name of Parameter 2
5547 Text [ en-US ] = "Alpha" ;
5549 String 5 // Description of Parameter 2
5551 Text [ en-US ] = "The percentage rate of the quantile between 0 and 1." ;
5554 // -=*# Resource for function QUARTILE #*=-
5555 Resource SC_OPCODE_QUARTILE
5557 String 1 // Description
5559 Text [ en-US ] = "Returns the quartile of a sample." ;
5564 ID_FUNCTION_GRP_STATISTIC;
5565 U2S( HID_FUNC_QUARTILE );
5569 String 2 // Name of Parameter 1
5571 Text [ en-US ] = "data" ;
5573 String 3 // Description of Parameter 1
5575 Text [ en-US ] = "The array of the data in the sample." ;
5577 String 4 // Name of Parameter 2
5579 Text [ en-US ] = "Type" ;
5581 String 5 // Description of Parameter 2
5583 Text [ en-US ] = "The type of the quartile (0 = MIN, 1 = 25%, 2 = 50 %, 3 = 75 %, 4 =MAX)." ;
5586 // -=*# Resource for function KGRÖSSTE #*=-
5587 Resource SC_OPCODE_LARGE
5589 String 1 // Description
5591 Text [ en-US ] = "Returns the k-th largest value of a sample." ;
5596 ID_FUNCTION_GRP_STATISTIC;
5597 U2S( HID_FUNC_KGROESSTE );
5601 String 2 // Name of Parameter 1
5603 Text [ en-US ] = "data" ;
5605 String 3 // Description of Parameter 1
5607 Text [ en-US ] = "The array of the data in the sample." ;
5609 String 4 // Name of Parameter 2
5611 Text [ en-US ] = "Rank_c" ;
5613 String 5 // Description of Parameter 2
5615 Text [ en-US ] = "The ranking of the value." ;
5618 // -=*# Resource for function KKLEINSTE #*=-
5619 Resource SC_OPCODE_SMALL
5621 String 1 // Description
5623 Text [ en-US ] = "Returns the k-th smallest value of a sample." ;
5628 ID_FUNCTION_GRP_STATISTIC;
5629 U2S( HID_FUNC_KKLEINSTE );
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 ] = "Rank_c" ;
5645 String 5 // Description of Parameter 2
5647 Text [ en-US ] = "The ranking of the value." ;
5650 // -=*# Resource for function QUANTILSRANG #*=-
5651 Resource SC_OPCODE_PERCENT_RANK
5653 String 1 // Description
5655 Text [ en-US ] = "Returns the percentage rank of a value in a sample." ;
5660 ID_FUNCTION_GRP_STATISTIC;
5661 U2S( HID_FUNC_QUANTILSRANG );
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 ] = "value" ;
5677 String 5 // Description of Parameter 2
5679 Text [ en-US ] = "The value for which percentage ranking is to be determined." ;
5682 // -=*# Resource for function RANG #*=-
5683 Resource SC_OPCODE_RANK
5685 String 1 // Description
5687 Text [ en-US ] = "Returns the ranking of a value in a sample." ;
5692 ID_FUNCTION_GRP_STATISTIC;
5693 U2S( HID_FUNC_RANG );
5697 String 2 // Name of Parameter 1
5699 Text [ en-US ] = "value" ;
5701 String 3 // Description of Parameter 1
5703 Text [ en-US ] = "The value for which the rank is to be determined." ;
5705 String 4 // Name of Parameter 2
5707 Text [ en-US ] = "Data" ;
5709 String 5 // Description of Parameter 2
5711 Text [ en-US ] = "The array of the data in the sample." ;
5713 String 6 // Name of Parameter 3
5715 Text [ en-US ] = "Type" ;
5717 String 7 // Description of Parameter 3
5719 Text [ en-US ] = "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." ;
5722 // -=*# Resource for function GESTUTZTMITTEL #*=-
5723 Resource SC_OPCODE_TRIM_MEAN
5725 String 1 // Description
5727 Text [ en-US ] = "Returns the mean of a sample without including the marginal values." ;
5732 ID_FUNCTION_GRP_STATISTIC;
5733 U2S( HID_FUNC_GESTUTZTMITTEL );
5737 String 2 // Name of Parameter 1
5739 Text [ en-US ] = "data" ;
5741 String 3 // Description of Parameter 1
5743 Text [ en-US ] = "The array of the data in the sample." ;
5745 String 4 // Name of Parameter 2
5747 Text [ en-US ] = "Alpha" ;
5749 String 5 // Description of Parameter 2
5751 Text [ en-US ] = "The percentage of marginal data that is not to be taken into account." ;
5754 // -=*# Resource for function WAHRSCHBEREICH #*=-
5755 Resource SC_OPCODE_PROB
5757 String 1 // Description
5759 Text [ en-US ] = "Returns the discrete probability of an interval." ;
5764 ID_FUNCTION_GRP_STATISTIC;
5765 U2S( HID_FUNC_WAHRSCHBEREICH );
5769 String 2 // Name of Parameter 1
5771 Text [ en-US ] = "data" ;
5773 String 3 // Description of Parameter 1
5775 Text [ en-US ] = "The sample data array." ;
5777 String 4 // Name of Parameter 2
5779 Text [ en-US ] = "probability" ;
5781 String 5 // Description of Parameter 2
5783 Text [ en-US ] = "The array of the associated probabilities." ;
5785 String 6 // Name of Parameter 3
5787 Text [ en-US ] = "Start" ;
5789 String 7 // Description of Parameter 3
5791 Text [ en-US ] = "The start of the value interval whose probabilities is to be totalled." ;
5793 String 8 // Name of Parameter 4
5795 Text [ en-US ] = "End" ;
5797 String 9 // Description of Parameter 4
5799 Text [ en-US ] = "The end of the value interval where the probabilities are to be totalled." ;
5802 // -=*# Resource for function B #*=-
5803 Resource SC_OPCODE_B
5805 String 1 // Description
5807 Text [ en-US ] = "Returns the probability of a trial result using binomial distribution." ;
5812 ID_FUNCTION_GRP_STATISTIC;
5817 String 2 // Name of Parameter 1
5819 Text [ en-US ] = "trials" ;
5821 String 3 // Description of Parameter 1
5823 Text [ en-US ] = "The number of trials." ;
5825 String 4 // Name of Parameter 2
5827 Text [ en-US ] = "SP" ;
5829 String 5 // Description of Parameter 2
5831 Text [ en-US ] = "The individual probability of a trial result." ;
5833 String 6 // Name of Parameter 3
5835 Text [ en-US ] = "T_1" ;
5837 String 7 // Description of Parameter 3
5839 Text [ en-US ] = "Lower limit for the number of trials." ;
5841 String 8 // Name of Parameter 4
5843 Text [ en-US ] = "T_2" ;
5845 String 9 // Description of Parameter 4
5847 Text [ en-US ] = "Upper limit for the number of trials." ;
5850 // -=*# Resource for function PHI #*=-
5851 Resource SC_OPCODE_PHI
5853 String 1 // Description
5855 Text [ en-US ] = "Values of the distribution function for a standard normal distribution." ;
5860 ID_FUNCTION_GRP_STATISTIC;
5861 U2S( HID_FUNC_PHI );
5865 String 2 // Name of Parameter 1
5867 Text [ en-US ] = "number" ;
5869 String 3 // Description of Parameter 1
5871 Text [ en-US ] = "The value for which the standard normal distribution is to be calculated." ;
5874 // -=*# Resource for function GAUSS #*=-
5875 Resource SC_OPCODE_GAUSS
5877 String 1 // Description
5879 Text [ en-US ] = "Returns the integral values of the standard normal cumulative distribution." ;
5884 ID_FUNCTION_GRP_STATISTIC;
5885 U2S( HID_FUNC_GAUSS );
5889 String 2 // Name of Parameter 1
5891 Text [ en-US ] = "Number" ;
5893 String 3 // Description of Parameter 1
5895 Text [ en-US ] = "The value for which the integral value of the standard normal distribution is to be calculated." ;
5898 // -=*# Resource for function FISHER #*=-
5899 Resource SC_OPCODE_FISHER
5901 String 1 // Description
5903 Text [ en-US ] = "Returns the Fisher transformation." ;
5908 ID_FUNCTION_GRP_STATISTIC;
5909 U2S( HID_FUNC_FISHER );
5913 String 2 // Name of Parameter 1
5915 Text [ en-US ] = "Number" ;
5917 String 3 // Description of Parameter 1
5919 Text [ en-US ] = "The value to be transformed (-1 < VALUE < 1)." ;
5922 // -=*# Resource for function FISHERINV #*=-
5923 Resource SC_OPCODE_FISHER_INV
5925 String 1 // Description
5927 Text [ en-US ] = "Returns the inverse of the Fisher transformation." ;
5932 ID_FUNCTION_GRP_STATISTIC;
5933 U2S( HID_FUNC_FISHERINV );
5937 String 2 // Name of Parameter 1
5939 Text [ en-US ] = "Number" ;
5941 String 3 // Description of Parameter 1
5943 Text [ en-US ] = "The value that is to be transformed back." ;
5946 // -=*# Resource for function BINOMVERT #*=-
5947 Resource SC_OPCODE_BINOM_DIST
5949 String 1 // Description
5951 Text [ en-US ] = "Values of the binomial distribution." ;
5956 ID_FUNCTION_GRP_STATISTIC;
5957 U2S( HID_FUNC_BINOMVERT );
5961 String 2 // Name of Parameter 1
5963 Text [ en-US ] = "X" ;
5965 String 3 // Description of Parameter 1
5967 Text [ en-US ] = "The number of successes in a series of trials." ;
5969 String 4 // Name of Parameter 2
5971 Text [ en-US ] = "trials" ;
5973 String 5 // Description of Parameter 2
5975 Text [ en-US ] = "The total number of trials." ;
5977 String 6 // Name of Parameter 3
5979 Text [ en-US ] = "SP" ;
5981 String 7 // Description of Parameter 3
5983 Text [ en-US ] = "The success probability of a trial." ;
5985 String 8 // Name of Parameter 4
5987 Text [ en-US ] = "C" ;
5989 String 9 // Description of Parameter 4
5991 Text [ en-US ] = "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability." ;
5994 // -=*# Resource for function NEGBINOMVERT #*=-
5995 Resource SC_OPCODE_NEG_BINOM_VERT
5997 String 1 // Description
5999 Text [ en-US ] = "Values of the negative binomial distribution." ;
6004 ID_FUNCTION_GRP_STATISTIC;
6005 U2S( HID_FUNC_NEGBINOMVERT );
6009 String 2 // Name of Parameter 1
6011 Text [ en-US ] = "X" ;
6013 String 3 // Description of Parameter 1
6015 Text [ en-US ] = "The number of failures in the trial range." ;
6017 String 4 // Name of Parameter 2
6019 Text [ en-US ] = "R" ;
6021 String 5 // Description of Parameter 2
6023 Text [ en-US ] = "The number of successes in the trial sequence." ;
6025 String 6 // Name of Parameter 3
6027 Text [ en-US ] = "SP" ;
6029 String 7 // Description of Parameter 3
6031 Text [ en-US ] = "The success probability of a trial." ;
6034 // -=*# Resource for function KRITBINOM #*=-
6035 Resource SC_OPCODE_KRIT_BINOM
6037 String 1 // Description
6039 Text [ en-US ] = "Border arguments of the binomial distribution." ;
6044 ID_FUNCTION_GRP_STATISTIC;
6045 U2S( HID_FUNC_KRITBINOM );
6049 String 2 // Name of Parameter 1
6051 Text [ en-US ] = "trials" ;
6053 String 3 // Description of Parameter 1
6055 Text [ en-US ] = "The total number of trials." ;
6057 String 4 // Name of Parameter 2
6059 Text [ en-US ] = "SP" ;
6061 String 5 // Description of Parameter 2
6063 Text [ en-US ] = "The success probability of a trial." ;
6065 String 6 // Name of Parameter 3
6067 Text [ en-US ] = "alpha" ;
6069 String 7 // Description of Parameter 3
6071 Text [ en-US ] = "The border probability that is attained or exceeded." ;
6074 // -=*# Resource for function POISSON #*=-
6075 Resource SC_OPCODE_POISSON_DIST
6077 String 1 // Description
6079 Text [ en-US ] = "Returns the Poisson distribution." ;
6084 ID_FUNCTION_GRP_STATISTIC;
6085 U2S( HID_FUNC_POISSON );
6089 String 2 // Name of Parameter 1
6091 Text [ en-US ] = "Number" ;
6093 String 3 // Description of Parameter 1
6095 Text [ en-US ] = "The value for which the Poisson distribution is to be calculated." ;
6097 String 4 // Name of Parameter 2
6099 Text [ en-US ] = "mean" ;
6101 String 5 // Description of Parameter 2
6103 Text [ en-US ] = "Mean. The mean value of the Poisson distribution." ;
6105 String 6 // Name of Parameter 3
6107 Text [ en-US ] = "Cumulative" ;
6109 String 7 // Description of Parameter 3
6111 Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
6114 // -=*# Resource for function NORMVERT #*=-
6115 Resource SC_OPCODE_NORM_DIST
6117 String 1 // Description
6119 Text [ en-US ] = "Values of the normal distribution." ;
6124 ID_FUNCTION_GRP_STATISTIC;
6125 U2S( HID_FUNC_NORMVERT );
6129 String 2 // Name of Parameter 1
6131 Text [ en-US ] = "Number" ;
6133 String 3 // Description of Parameter 1
6135 Text [ en-US ] = "The value for which the normal distribution is to be calculated." ;
6137 String 4 // Name of Parameter 2
6139 Text [ en-US ] = "Mean" ;
6141 String 5 // Description of Parameter 2
6143 Text [ en-US ] = "The mean value. The mean value of the normal distribution." ;
6145 String 6 // Name of Parameter 3
6147 Text [ en-US ] = "STDEV" ;
6149 String 7 // Description of Parameter 3
6151 Text [ en-US ] = "Standard deviation. The standard deviation of the normal distribution." ;
6153 String 8 // Name of Parameter 4
6155 Text [ en-US ] = "C" ;
6157 String 9 // Description of Parameter 4
6159 Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
6162 // -=*# Resource for function NORMINV #*=-
6163 Resource SC_OPCODE_NORM_INV
6165 String 1 // Description
6167 Text [ en-US ] = "Values of the inverse normal distribution." ;
6172 ID_FUNCTION_GRP_STATISTIC;
6173 U2S( HID_FUNC_NORMINV );
6177 String 2 // Name of Parameter 1
6179 Text [ en-US ] = "number" ;
6181 String 3 // Description of Parameter 1
6183 Text [ en-US ] = "The probability value for which the inverse normal distribution is to be calculated." ;
6185 String 4 // Name of Parameter 2
6187 Text [ en-US ] = "mean" ;
6189 String 5 // Description of Parameter 2
6191 Text [ en-US ] = "The mean value. The mean value of the normal distribution." ;
6193 String 6 // Name of Parameter 3
6195 Text [ en-US ] = "STDEV" ;
6197 String 7 // Description of Parameter 3
6199 Text [ en-US ] = "Standard deviation. The standard deviation of the normal distribution." ;
6202 // -=*# Resource for function STANDNORMVERT #*=-
6203 Resource SC_OPCODE_STD_NORM_DIST
6205 String 1 // Description
6207 Text [ en-US ] = "The values of the standard normal cumulative distribution." ;
6212 ID_FUNCTION_GRP_STATISTIC;
6213 U2S( HID_FUNC_STANDNORMVERT );
6217 String 2 // Name of Parameter 1
6219 Text [ en-US ] = "Number" ;
6221 String 3 // Description of Parameter 1
6223 Text [ en-US ] = "The value for which the standard normal distribution is to be calculated." ;
6226 // -=*# Resource for function STANDNORMINV #*=-
6227 Resource SC_OPCODE_S_NORM_INV
6229 String 1 // Description
6231 Text [ en-US ] = "Values of the inverse standard normal distribution." ;
6236 ID_FUNCTION_GRP_STATISTIC;
6237 U2S( HID_FUNC_STANDNORMINV );
6241 String 2 // Name of Parameter 1
6243 Text [ en-US ] = "number" ;
6245 String 3 // Description of Parameter 1
6247 Text [ en-US ] = "The probability value for which the inverse standard normal distribution is to be calculated." ;
6250 // -=*# Resource for function LOGNORMVERT #*=-
6251 Resource SC_OPCODE_LOG_NORM_DIST
6253 String 1 // Description
6255 Text [ en-US ] = "Values of the log normal distribution." ;
6260 ID_FUNCTION_GRP_STATISTIC;
6261 U2S( HID_FUNC_LOGNORMVERT );
6265 String 2 // Name of Parameter 1
6267 Text [ en-US ] = "Number" ;
6269 String 3 // Description of Parameter 1
6271 Text [ en-US ] = "The value for which the log normal distribution is to be calculated." ;
6273 String 4 // Name of Parameter 2
6275 Text [ en-US ] = "mean" ;
6277 String 5 // Description of Parameter 2
6279 Text [ en-US ] = "The mean value of the log normal distribution. It is set to 0 if omitted." ;
6281 String 6 // Name of Parameter 3
6283 Text [ en-US ] = "STDEV" ;
6285 String 7 // Description of Parameter 3
6287 Text [ en-US ] = "The standard deviation of the log normal distribution. It is set to 1 if omitted." ;
6289 String 8 // Name of Parameter 4
6291 Text [ en-US] = "Cumulative";
6293 String 9 // Description of Parameter 4
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 LOGINV #*=-
6299 Resource SC_OPCODE_LOG_INV
6301 String 1 // Description
6303 Text [ en-US ] = "Values of the inverse of the lognormal distribution." ;
6308 ID_FUNCTION_GRP_STATISTIC;
6309 U2S( HID_FUNC_LOGINV );
6313 String 2 // Name of Parameter 1
6315 Text [ en-US ] = "number" ;
6317 String 3 // Description of Parameter 1
6319 Text [ en-US ] = "The probability value for which the inverse log normal 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 value. The mean value of the log normal distribution." ;
6329 String 6 // Name of Parameter 3
6331 Text [ en-US ] = "STDEV" ;
6333 String 7 // Description of Parameter 3
6335 Text [ en-US ] = "Standard deviation. The standard deviation of the log normal distribution." ;
6338 // -=*# Resource for function EXPONVERT #*=-
6339 Resource SC_OPCODE_EXP_DIST
6341 String 1 // Description
6343 Text [ en-US ] = "Values of the exponential distribution." ;
6348 ID_FUNCTION_GRP_STATISTIC;
6349 U2S( HID_FUNC_EXPONVERT );
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 to which the exponential distribution is to be calculated." ;
6361 String 4 // Name of Parameter 2
6363 Text [ en-US ] = "lambda" ;
6365 String 5 // Description of Parameter 2
6367 Text [ en-US ] = "The parameters of the exponential distribution." ;
6369 String 6 // Name of Parameter 3
6371 Text [ en-US ] = "C" ;
6373 String 7 // Description of Parameter 3
6375 Text [ en-US ] = "Cumulated. C=0 calculates the density function, C=1 the distribution." ;
6378 // -=*# Resource for function GAMMAVERT #*=-
6379 Resource SC_OPCODE_GAMMA_DIST
6381 String 1 // Description
6383 Text [ en-US ] = "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution." ;
6388 ID_FUNCTION_GRP_STATISTIC;
6389 U2S( HID_FUNC_GAMMAVERT );
6393 String 2 // Name of Parameter 1
6395 Text [ en-US ] = "Number" ;
6397 String 3 // Description of Parameter 1
6399 Text [ en-US ] = "The value for which the gamma distribution is to be calculated." ;
6401 String 4 // Name of Parameter 2
6403 Text [ en-US ] = "alpha" ;
6405 String 5 // Description of Parameter 2
6407 Text [ en-US ] = "The Alpha parameter of the Gamma distribution." ;
6409 String 6 // Name of Parameter 3
6411 Text [ en-US ] = "beta" ;
6413 String 7 // Description of Parameter 3
6415 Text [ en-US ] = "The Beta parameter of the Gamma distribution." ;
6417 String 8 // Name of Parameter 4
6419 Text [ en-US ] = "Cumulative" ;
6421 String 9 // Description of Parameter 4
6423 Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
6426 // -=*# Resource for function GAMMAINV #*=-
6427 Resource SC_OPCODE_GAMMA_INV
6429 String 1 // Description
6431 Text [ en-US ] = "Values of the inverse gamma distribution." ;
6436 ID_FUNCTION_GRP_STATISTIC;
6437 U2S( HID_FUNC_GAMMAINV );
6441 String 2 // Name of Parameter 1
6443 Text [ en-US ] = "Number" ;
6445 String 3 // Description of Parameter 1
6447 Text [ en-US ] = "The probability value for which the inverse gamma distribution is to be calculated." ;
6449 String 4 // Name of Parameter 2
6451 Text [ en-US ] = "alpha" ;
6453 String 5 // Description of Parameter 2
6455 Text [ en-US ] = "The Alpha (shape) parameter of the Gamma distribution." ;
6457 String 6 // Name of Parameter 3
6459 Text [ en-US ] = "beta" ;
6461 String 7 // Description of Parameter 3
6463 Text [ en-US ] = "The Beta (scale) parameter of the Gamma distribution." ;
6466 // -=*# Resource for function GAMMALN #*=-
6467 Resource SC_OPCODE_GAMMA_LN
6469 String 1 // Description
6471 Text [ en-US ] = "Returns the natural logarithm of the gamma function." ;
6476 ID_FUNCTION_GRP_STATISTIC;
6477 U2S( HID_FUNC_GAMMALN );
6481 String 2 // Name of Parameter 1
6483 Text [ en-US ] = "Number" ;
6485 String 3 // Description of Parameter 1
6487 Text [ en-US ] = "The value for which the natural logarithm of the gamma function is to be calculated." ;
6491 // -=*# Resource for function GAMMA #*=-
6492 Resource SC_OPCODE_GAMMA
6494 String 1 // Description
6496 Text [ en-US ] = "Returns the value of the Gamma function." ;
6501 ID_FUNCTION_GRP_STATISTIC;
6502 U2S( HID_FUNC_GAMMA );
6506 String 2 // Name of Parameter 1
6508 Text [ en-US ] = "Number" ;
6510 String 3 // Description of Parameter 1
6512 Text [ en-US ] = "The value for which the Gamma function is to be calculated." ;
6516 // -=*# Resource for function BETAVERT #*=-
6517 Resource SC_OPCODE_BETA_DIST
6519 String 1 // Description
6521 Text [ en-US ] = "Values of the beta distribution." ;
6526 ID_FUNCTION_GRP_STATISTIC;
6527 U2S( HID_FUNC_BETAVERT );
6528 6; 0; 0; 0; 1; 1; 1;
6531 String 2 // Name of Parameter 1
6533 Text [ en-US ] = "number" ;
6535 String 3 // Description of Parameter 1
6537 Text [ en-US ] = "The value for which the beta distribution is to be calculated." ;
6539 String 4 // Name of Parameter 2
6541 Text [ en-US ] = "alpha" ;
6543 String 5 // Description of Parameter 2
6545 Text [ en-US ] = "The Alpha parameter of the Beta distribution." ;
6547 String 6 // Name of Parameter 3
6549 Text [ en-US ] = "beta" ;
6551 String 7 // Description of Parameter 3
6553 Text [ en-US ] = "The Beta parameter of the Beta distribution." ;
6555 String 8 // Name of Parameter 4
6557 Text [ en-US ] = "Start" ;
6559 String 9 // Description of Parameter 4
6561 Text [ en-US ] = "The starting value for the value interval of the distribution." ;
6563 String 10 // Name of Parameter 5
6565 Text [ en-US ] = "End" ;
6567 String 11 // Description of Parameter 5
6569 Text [ en-US ] = "The final value for the value interval of the distribution." ;
6571 String 12 // Name of Parameter 6
6573 Text [en-US ] = "Cumulative" ;
6575 String 13 // Description of Parameter 6
6577 Text [ en-US ] = "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function.";
6580 // -=*# Resource for function BETAINV #*=-
6581 Resource SC_OPCODE_BETA_INV
6583 String 1 // Description
6585 Text [ en-US ] = "Values of the inverse beta distribution." ;
6590 ID_FUNCTION_GRP_STATISTIC;
6591 U2S( HID_FUNC_BETAINV );
6595 String 2 // Name of Parameter 1
6597 Text [ en-US ] = "number" ;
6599 String 3 // Description of Parameter 1
6601 Text [ en-US ] = "The probability value for which the inverse beta distribution is to be calculated." ;
6603 String 4 // Name of Parameter 2
6605 Text [ en-US ] = "alpha" ;
6607 String 5 // Description of Parameter 2
6609 Text [ en-US ] = "The Alpha parameter of the Beta distribution." ;
6611 String 6 // Name of Parameter 3
6613 Text [ en-US ] = "beta" ;
6615 String 7 // Description of Parameter 3
6617 Text [ en-US ] = "The Beta parameter of the Beta distribution." ;
6619 String 8 // Name of Parameter 4
6621 Text [ en-US ] = "Start" ;
6623 String 9 // Description of Parameter 4
6625 Text [ en-US ] = "The starting value for the value interval of the distribution." ;
6627 String 10 // Name of Parameter 5
6629 Text [ en-US ] = "End" ;
6631 String 11 // Description of Parameter 5
6633 Text [ en-US ] = "The final value for the value interval of the distribution." ;
6636 // -=*# Resource for function WEIBULL #*=-
6637 Resource SC_OPCODE_WEIBULL
6639 String 1 // Description
6641 Text [ en-US ] = "Returns the values of the Weibull distribution." ;
6646 ID_FUNCTION_GRP_STATISTIC;
6647 U2S( HID_FUNC_WEIBULL );
6651 String 2 // Name of Parameter 1
6653 Text [ en-US ] = "Number" ;
6655 String 3 // Description of Parameter 1
6657 Text [ en-US ] = "The value for which the Weibull distribution is to be calculated." ;
6659 String 4 // Name of Parameter 2
6661 Text [ en-US ] = "Alpha" ;
6663 String 5 // Description of Parameter 2
6665 Text [ en-US ] = "The Alpha parameter of the Weibull distribution." ;
6667 String 6 // Name of Parameter 3
6669 Text [ en-US ] = "beta" ;
6671 String 7 // Description of Parameter 3
6673 Text [ en-US ] = "The Beta parameter of the Weibull distribution." ;
6675 String 8 // Name of Parameter 4
6677 Text [ en-US ] = "C" ;
6679 String 9 // Description of Parameter 4
6681 Text [ en-US ] = "Cumulated. C=0 calculates the density function, C=1 the distribution." ;
6684 // -=*# Resource for function HYPGEOMVERT #*=-
6685 Resource SC_OPCODE_HYP_GEOM_DIST
6687 String 1 // Description
6689 Text [ en-US ] = "Values of the hypergeometric distribution." ;
6694 ID_FUNCTION_GRP_STATISTIC;
6695 U2S( HID_FUNC_HYPGEOMVERT );
6699 String 2 // Name of Parameter 1
6701 Text [ en-US ] = "X" ;
6703 String 3 // Description of Parameter 1
6705 Text [ en-US ] = "The number of successes in the sample." ;
6707 String 4 // Name of Parameter 2
6709 Text [ en-US ] = "n_sample" ;
6711 String 5 // Description of Parameter 2
6713 Text [ en-US ] = "The size of the sample." ;
6715 String 6 // Name of Parameter 3
6717 Text [ en-US ] = "successes" ;
6719 String 7 // Description of Parameter 3
6721 Text [ en-US ] = "The number of successes in the population." ;
6723 String 8 // Name of Parameter 4
6725 Text [ en-US ] = "n_population" ;
6727 String 9 // Description of Parameter 4
6729 Text [ en-US ] = "The population size." ;
6732 // -=*# Resource for function TVERT #*=-
6733 Resource SC_OPCODE_T_DIST
6735 String 1 // Description
6737 Text [ en-US ] = "Returns the t-distribution." ;
6742 ID_FUNCTION_GRP_STATISTIC;
6743 U2S( HID_FUNC_TVERT );
6747 String 2 // Name of Parameter 1
6749 Text [ en-US ] = "Number" ;
6751 String 3 // Description of Parameter 1
6753 Text [ en-US ] = "The value for which the T distribution is to be calculated." ;
6755 String 4 // Name of Parameter 2
6757 Text [ en-US ] = "degrees_freedom" ;
6759 String 5 // Description of Parameter 2
6761 Text [ en-US ] = "The degrees of freedom of the T distribution." ;
6763 String 6 // Name of Parameter 3
6765 Text [ en-US ] = "mode" ;
6767 String 7 // Description of Parameter 3
6769 Text [ en-US ] = "Mode = 1 calculates the one-tailed test, 2 = two-tailed distribution." ;
6772 // -=*# Resource for function TINV #*=-
6773 Resource SC_OPCODE_T_INV
6775 String 1 // Description
6777 Text [ en-US ] = "Values of the inverse t-distribution." ;
6782 ID_FUNCTION_GRP_STATISTIC;
6783 U2S( HID_FUNC_TINV );
6787 String 2 // Name of Parameter 1
6789 Text [ en-US ] = "number" ;
6791 String 3 // Description of Parameter 1
6793 Text [ en-US ] = "The probability value for which the inverse T distribution is to be calculated." ;
6795 String 4 // Name of Parameter 2
6797 Text [ en-US ] = "degrees_freedom" ;
6799 String 5 // Description of Parameter 2
6801 Text [ en-US ] = "The degrees of freedom of the T distribution." ;
6804 // -=*# Resource for function FVERT #*=-
6805 Resource SC_OPCODE_F_DIST
6807 String 1 // Description
6809 Text [ en-US ] = "Values of the F probability distribution." ;
6814 ID_FUNCTION_GRP_STATISTIC;
6815 U2S( HID_FUNC_FVERT );
6819 String 2 // Name of Parameter 1
6821 Text [ en-US ] = "Number" ;
6823 String 3 // Description of Parameter 1
6825 Text [ en-US ] = "The value for which the F distribution is to be calculated." ;
6827 String 4 // Name of Parameter 2
6829 Text [ en-US ] = "degrees_freedom_1" ;
6831 String 5 // Description of Parameter 2
6833 Text [ en-US ] = "The degrees of freedom in the numerator of the F distribution." ;
6835 String 6 // Name of Parameter 3
6837 Text [ en-US ] = "degrees_freedom_2" ;
6839 String 7 // Description of Parameter 3
6841 Text [ en-US ] = "The degrees of freedom in the denominator of the F distribution." ;
6844 // -=*# Resource for function FINV #*=-
6845 Resource SC_OPCODE_F_INV
6847 String 1 // Description
6849 Text [ en-US ] = "Values of the inverse F distribution." ;
6854 ID_FUNCTION_GRP_STATISTIC;
6855 U2S( HID_FUNC_FINV );
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 F distribution is to be calculated." ;
6867 String 4 // Name of Parameter 2
6869 Text [ en-US ] = "degrees_freedom_1" ;
6871 String 5 // Description of Parameter 2
6873 Text [ en-US ] = "The degrees of freedom in the numerator of the F distribution." ;
6875 String 6 // Name of Parameter 3
6877 Text [ en-US ] = "degrees_freedom_2" ;
6879 String 7 // Description of Parameter 3
6881 Text [ en-US ] = "The degrees of freedom in the denominator of the F distribution." ;
6884 // -=*# Resource for function CHIVERT #*=-
6885 Resource SC_OPCODE_CHI_DIST
6887 String 1 // Description
6889 Text [ en-US ] = "Returns the right-tail probability of the chi-square distribution." ;
6894 ID_FUNCTION_GRP_STATISTIC;
6895 U2S( HID_FUNC_CHIVERT );
6899 String 2 // Name of Parameter 1
6901 Text [ en-US ] = "Number" ;
6903 String 3 // Description of Parameter 1
6905 Text [ en-US ] = "The value for which the chi square distribution is to be calculated." ;
6907 String 4 // Name of Parameter 2
6909 Text [ en-US ] = "degrees_freedom" ;
6911 String 5 // Description of Parameter 2
6913 Text [ en-US ] = "The degrees of freedom of the chi square distribution." ;
6917 // -=*# Resource for function CHISQDIST #*=-
6918 Resource SC_OPCODE_CHISQ_DIST
6920 String 1 // Description
6922 Text [ en-US ] = "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." ;
6927 ID_FUNCTION_GRP_STATISTIC;
6928 U2S( HID_FUNC_CHISQDIST );
6932 String 2 // Name of Parameter 1
6934 Text [ en-US ] = "Number" ;
6936 String 3 // Description of Parameter 1
6938 Text [ en-US ] = "The value for which the probability density function or cumulative distribution function is to be calculated." ;
6940 String 4 // Name of Parameter 2
6942 Text [ en-US ] = "Degrees of Freedom" ;
6944 String 5 // Description of Parameter 2
6946 Text [ en-US ] = "The degrees of freedom of the chi-square distribution." ;
6948 String 6 // Name of Parameter 3
6950 Text [ en-US ] = "Cumulative" ;
6952 String 7 // Description of Parameter 3
6954 Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
6959 // -=*# Resource for function CHIINV #*=-
6960 Resource SC_OPCODE_CHI_INV
6962 String 1 // Description
6964 Text [ en-US ] = "Values of the inverse of CHIDIST(x; DegreesOfFreedom)." ;
6969 ID_FUNCTION_GRP_STATISTIC;
6970 U2S( HID_FUNC_CHIINV );
6974 String 2 // Name of Parameter 1
6976 Text [ en-US ] = "number" ;
6978 String 3 // Description of Parameter 1
6980 Text [ en-US ] = "The probability value for which the inverse chi square distribution is to be calculated." ;
6982 String 4 // Name of Parameter 2
6984 Text [ en-US ] = "degrees_freedom" ;
6986 String 5 // Description of Parameter 2
6988 Text [ en-US ] = "The degrees of freedom of the chi square distribution." ;
6992 // -=*# Resource for function CHISQINV #*=-
6993 Resource SC_OPCODE_CHISQ_INV
6995 String 1 // Description
6997 Text [ en-US ] = "Values of the inverse of CHISQDIST(x;DegreesOfFreedom;TRUE())." ;
7002 ID_FUNCTION_GRP_STATISTIC;
7003 U2S( HID_FUNC_CHISQINV );
7007 String 2 // Name of Parameter 1
7009 Text [ en-US ] = "Probability" ;
7011 String 3 // Description of Parameter 1
7013 Text [ en-US ] = "The probability value for which the inverse of the chi square distribution is to be calculated." ;
7015 String 4 // Name of Parameter 2
7017 Text [ en-US ] = "Degrees of Freedom" ;
7019 String 5 // Description of Parameter 2
7021 Text [ en-US ] = "The degrees of freedom of the chi square distribution." ;
7025 // -=*# Resource for function STANDARDISIERUNG #*=-
7026 Resource SC_OPCODE_STANDARD
7028 String 1 // Description
7030 Text [ en-US ] = "Converts a random variable to a normalized value." ;
7035 ID_FUNCTION_GRP_STATISTIC;
7036 U2S( HID_FUNC_STANDARDISIERUNG );
7040 String 2 // Name of Parameter 1
7042 Text [ en-US ] = "Number" ;
7044 String 3 // Description of Parameter 1
7046 Text [ en-US ] = "The value to be standardized." ;
7048 String 4 // Name of Parameter 2
7050 Text [ en-US ] = "mean" ;
7052 String 5 // Description of Parameter 2
7054 Text [ en-US ] = "The mean value used for moving." ;
7056 String 6 // Name of Parameter 3
7058 Text [ en-US ] = "STDEV" ;
7060 String 7 // Description of Parameter 3
7062 Text [ en-US ] = "The standard deviation used for scaling." ;
7065 // -=*# Resource for function VARIATIONEN #*=-
7066 Resource SC_OPCODE_VARIATIONEN
7068 String 1 // Description
7070 Text [ en-US ] = "Returns the number of permutations for a given number of elements without repetition." ;
7075 ID_FUNCTION_GRP_STATISTIC;
7076 U2S( HID_FUNC_VARIATIONEN );
7080 String 2 // Name of Parameter 1
7082 Text [ en-US ] = "Count_1" ;
7084 String 3 // Description of Parameter 1
7086 Text [ en-US ] = "The total number of elements." ;
7088 String 4 // Name of Parameter 2
7090 Text [ en-US ] = "Count_2" ;
7092 String 5 // Description of Parameter 2
7094 Text [ en-US ] = "The selection number taken from the elements." ;
7097 // -=*# Resource for function VARIATIONEN2 #*=-
7098 Resource SC_OPCODE_VARIATIONEN_2
7100 String 1 // Description
7102 Text [ en-US ] = "Returns the number of permutations for a given number of objects (repetition allowed)." ;
7107 ID_FUNCTION_GRP_STATISTIC;
7108 U2S( HID_FUNC_VARIATIONEN2 );
7112 String 2 // Name of Parameter 1
7114 Text [ en-US ] = "Count_1" ;
7116 String 3 // Description of Parameter 1
7118 Text [ en-US ] = "The total number of elements." ;
7120 String 4 // Name of Parameter 2
7122 Text [ en-US ] = "Count_2" ;
7124 String 5 // Description of Parameter 2
7126 Text [ en-US ] = "The selection number taken from the elements." ;
7129 // -=*# Resource for function KONFIDENZ #*=-
7130 Resource SC_OPCODE_CONFIDENCE
7132 String 1 // Description
7134 Text [ en-US ] = "Returns a (1 alpha) confidence interval for a normal distribution." ;
7139 ID_FUNCTION_GRP_STATISTIC;
7140 U2S( HID_FUNC_KONFIDENZ );
7144 String 2 // Name of Parameter 1
7146 Text [ en-US ] = "alpha" ;
7148 String 3 // Description of Parameter 1
7150 Text [ en-US ] = "The level of the confidence interval." ;
7152 String 4 // Name of Parameter 2
7154 Text [ en-US ] = "STDEV" ;
7156 String 5 // Description of Parameter 2
7158 Text [ en-US ] = "The standard deviation of the population." ;
7160 String 6 // Name of Parameter 3
7162 Text [ en-US ] = "size" ;
7164 String 7 // Description of Parameter 3
7166 Text [ en-US ] = "The size of the population." ;
7169 // -=*# Resource for function GTEST #*=-
7170 Resource SC_OPCODE_Z_TEST
7172 String 1 // Description
7174 Text [ en-US ] = "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." ;
7179 ID_FUNCTION_GRP_STATISTIC;
7180 U2S( HID_FUNC_GTEST );
7184 String 2 // Name of Parameter 1
7186 Text [ en-US ] = "data" ;
7188 String 3 // Description of Parameter 1
7190 Text [ en-US ] = "The given sample, drawn from a normally distributed population." ;
7192 String 4 // Name of Parameter 2
7194 Text [ en-US ] = "mu" ;
7196 String 5 // Description of Parameter 2
7198 Text [ en-US ] = "The known mean of the population." ;
7200 String 6 // Name of Parameter 3
7202 Text [ en-US ] = "sigma" ;
7204 String 7 // Description of Parameter 3
7206 Text [ en-US ] = "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used." ;
7209 // -=*# Resource for function CHITEST #*=-
7210 Resource SC_OPCODE_CHI_TEST
7212 String 1 // Description
7214 Text [ en-US ] = "Returns the chi square independence test." ;
7219 ID_FUNCTION_GRP_STATISTIC;
7220 U2S( HID_FUNC_CHITEST );
7224 String 2 // Name of Parameter 1
7226 Text [ en-US ] = "Data_B" ;
7228 String 3 // Description of Parameter 1
7230 Text [ en-US ] = "The observed data array." ;
7232 String 4 // Name of Parameter 2
7234 Text [ en-US ] = "data_E" ;
7236 String 5 // Description of Parameter 2
7238 Text [ en-US ] = "The expected data array." ;
7241 // -=*# Resource for function FTEST #*=-
7242 Resource SC_OPCODE_F_TEST
7244 String 1 // Description
7246 Text [ en-US ] = "Calculates the F test." ;
7251 ID_FUNCTION_GRP_STATISTIC;
7252 U2S( HID_FUNC_FTEST );
7256 String 2 // Name of Parameter 1
7258 Text [ en-US ] = "data_1" ;
7260 String 3 // Description of Parameter 1
7262 Text [ en-US ] = "The first record array." ;
7264 String 4 // Name of Parameter 2
7266 Text [ en-US ] = "data_2" ;
7268 String 5 // Description of Parameter 2
7270 Text [ en-US ] = "The second record array." ;
7273 // -=*# Resource for function TTEST #*=-
7274 Resource SC_OPCODE_T_TEST
7276 String 1 // Description
7278 Text [ en-US ] = "Calculates the T test." ;
7283 ID_FUNCTION_GRP_STATISTIC;
7284 U2S( HID_FUNC_TTEST );
7288 String 2 // Name of Parameter 1
7290 Text [ en-US ] = "data_1" ;
7292 String 3 // Description of Parameter 1
7294 Text [ en-US ] = "The first record array." ;
7296 String 4 // Name of Parameter 2
7298 Text [ en-US ] = "data_2" ;
7300 String 5 // Description of Parameter 2
7302 Text [ en-US ] = "The second record array." ;
7304 String 6 // Name of Parameter 3
7306 Text [ en-US ] = "mode" ;
7308 String 7 // Description of Parameter 3
7310 Text [ en-US ] = "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution" ;
7312 String 8 // Name of Parameter 4
7314 Text [ en-US ] = "Type" ;
7316 String 9 // Description of Parameter 4
7318 Text [ en-US ] = "The type of the T test." ;
7321 // -=*# Resource for function BESTIMMTHEITSMASS #*=-
7322 Resource SC_OPCODE_RSQ
7324 String 1 // Description
7326 Text [ en-US ] = "Returns the square of the Pearson product moment correlation coefficient." ;
7331 ID_FUNCTION_GRP_STATISTIC;
7332 U2S( HID_FUNC_BESTIMMTHEITSMASS );
7336 String 2 // Name of Parameter 1
7338 Text [ en-US ] = "data_Y" ;
7340 String 3 // Description of Parameter 1
7342 Text [ en-US ] = "The Y data array." ;
7344 String 4 // Name of Parameter 2
7346 Text [ en-US ] = "data_X" ;
7348 String 5 // Description of Parameter 2
7350 Text [ en-US ] = "The X data array." ;
7353 // -=*# Resource for function ACHSENABSCHNITT #*=-
7354 Resource SC_OPCODE_INTERCEPT
7356 String 1 // Description
7358 Text [ en-US ] = "Returns the intercept of the linear regression line and the Y axis." ;
7363 ID_FUNCTION_GRP_STATISTIC;
7364 U2S( HID_FUNC_ACHSENABSCHNITT );
7368 String 2 // Name of Parameter 1
7370 Text [ en-US ] = "data_Y" ;
7372 String 3 // Description of Parameter 1
7374 Text [ en-US ] = "The Y data array." ;
7376 String 4 // Name of Parameter 2
7378 Text [ en-US ] = "data_X" ;
7380 String 5 // Description of Parameter 2
7382 Text [ en-US ] = "The X data array." ;
7385 // -=*# Resource for function STEIGUNG #*=-
7386 Resource SC_OPCODE_SLOPE
7388 String 1 // Description
7390 Text [ en-US ] = "Returns the slope of the linear regression line." ;
7395 ID_FUNCTION_GRP_STATISTIC;
7396 U2S( HID_FUNC_STEIGUNG );
7400 String 2 // Name of Parameter 1
7402 Text [ en-US ] = "data_Y" ;
7404 String 3 // Description of Parameter 1
7406 Text [ en-US ] = "The Y data array." ;
7408 String 4 // Name of Parameter 2
7410 Text [ en-US ] = "data_X" ;
7412 String 5 // Description of Parameter 2
7414 Text [ en-US ] = "The X data array." ;
7417 // -=*# Resource for function STFEHLERYX #*=-
7418 Resource SC_OPCODE_STEYX
7420 String 1 // Description
7422 Text [ en-US ] = "Returns the standard error of the linear regression." ;
7427 ID_FUNCTION_GRP_STATISTIC;
7428 U2S( HID_FUNC_STFEHLERYX );
7432 String 2 // Name of Parameter 1
7434 Text [ en-US ] = "data_Y" ;
7436 String 3 // Description of Parameter 1
7438 Text [ en-US ] = "The Y data array." ;
7440 String 4 // Name of Parameter 2
7442 Text [ en-US ] = "data_X" ;
7444 String 5 // Description of Parameter 2
7446 Text [ en-US ] = "The X data array." ;
7449 // -=*# Resource for function PEARSON #*=-
7450 Resource SC_OPCODE_PEARSON
7452 String 1 // Description
7454 Text [ en-US ] = "Returns the Pearson product moment correlation coefficient." ;
7459 ID_FUNCTION_GRP_STATISTIC;
7460 U2S( HID_FUNC_PEARSON );
7464 String 2 // Name of Parameter 1
7466 Text [ en-US ] = "Data_1" ;
7468 String 3 // Description of Parameter 1
7470 Text [ en-US ] = "The first record array." ;
7472 String 4 // Name of Parameter 2
7474 Text [ en-US ] = "Data_2" ;
7476 String 5 // Description of Parameter 2
7478 Text [ en-US ] = "The second record array." ;
7481 // -=*# Resource for function KORREL #*=-
7482 Resource SC_OPCODE_CORREL
7484 String 1 // Description
7486 Text [ en-US ] = "Returns the correlation coefficient." ;
7491 ID_FUNCTION_GRP_STATISTIC;
7492 U2S( HID_FUNC_KORREL );
7496 String 2 // Name of Parameter 1
7498 Text [ en-US ] = "Data_1" ;
7500 String 3 // Description of Parameter 1
7502 Text [ en-US ] = "The first record array." ;
7504 String 4 // Name of Parameter 2
7506 Text [ en-US ] = "Data_2" ;
7508 String 5 // Description of Parameter 2
7510 Text [ en-US ] = "The second record array." ;
7513 // -=*# Resource for function KOVAR #*=-
7514 Resource SC_OPCODE_COVAR
7516 String 1 // Description
7518 Text [ en-US ] = "Calculates the covariance." ;
7523 ID_FUNCTION_GRP_STATISTIC;
7524 U2S( HID_FUNC_KOVAR );
7528 String 2 // Name of Parameter 1
7530 Text [ en-US ] = "Data_1" ;
7532 String 3 // Description of Parameter 1
7534 Text [ en-US ] = "The first record array." ;
7536 String 4 // Name of Parameter 2
7538 Text [ en-US ] = "Data_2" ;
7540 String 5 // Description of Parameter 2
7542 Text [ en-US ] = "The second record array." ;
7545 // -=*# Resource for function SCHÄTZER #*=-
7546 Resource SC_OPCODE_FORECAST
7548 String 1 // Description
7550 Text [ en-US ] = "Returns a value along a linear regression" ;
7555 ID_FUNCTION_GRP_STATISTIC;
7556 U2S( HID_FUNC_SCHAETZER );
7560 String 2 // Name of Parameter 1
7562 Text [ en-US ] = "value" ;
7564 String 3 // Description of Parameter 1
7566 Text [ en-US ] = "The X value for which the Y value on the regression linear is to be calculated." ;
7568 String 4 // Name of Parameter 2
7570 Text [ en-US ] = "data_Y" ;
7572 String 5 // Description of Parameter 2
7574 Text [ en-US ] = "The Y data array." ;
7576 String 6 // Name of Parameter 3
7578 Text [ en-US ] = "data_X" ;
7580 String 7 // Description of Parameter 3
7582 Text [ en-US ] = "The X data array." ;
7585 // -=*# Resource for function ADRESSE #*=-
7586 Resource SC_OPCODE_ADDRESS
7588 String 1 // Description
7590 Text [ en-US ] = "Returns the reference to a cell as text." ;
7595 ID_FUNCTION_GRP_TABLE;
7596 U2S( HID_FUNC_ADRESSE );
7600 String 2 // Name of Parameter 1
7602 Text [ en-US ] = "row" ;
7604 String 3 // Description of Parameter 1
7606 Text [ en-US ] = "The row number of the cell." ;
7608 String 4 // Name of Parameter 2
7610 Text [ en-US ] = "column" ;
7612 String 5 // Description of Parameter 2
7614 Text [ en-US ] = "The column number of the cell." ;
7616 String 6 // Name of Parameter 3
7618 Text [ en-US ] = "ABS" ;
7620 String 7 // Description of Parameter 3
7622 Text [ en-US ] = "Specifies whether absolute or relative referencing is to be used." ;
7624 String 8 // Name of Parameter 4
7626 Text [ en-US ] = "A1" ;
7628 String 9 // Description of Parameter 4
7630 Text [ en-US ] = "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style." ;
7632 String 10 // Name of Parameter 5
7634 Text [ en-US ] = "sheet" ;
7635 Text [ x-comment ] = "previously to OOo3.0 this was String resource RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ADDRESS 8" ;
7637 String 11 // Description of Parameter 5
7639 Text [ en-US ] = "The spreadsheet name of the cell reference." ;
7640 Text [ x-comment ] = "previously to OOo3.0 this was String resource RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ADDRESS 9" ;
7643 // -=*# Resource for function BEREICHE #*=-
7644 Resource SC_OPCODE_AREAS
7646 String 1 // Description
7648 Text [ en-US ] = "Returns the number of individual ranges that belong to a (multiple) range." ;
7653 ID_FUNCTION_GRP_TABLE;
7654 U2S( HID_FUNC_BEREICHE );
7658 String 2 // Name of Parameter 1
7660 Text [ en-US ] = "reference" ;
7662 String 3 // Description of Parameter 1
7664 Text [ en-US ] = "The reference to a (multiple) range." ;
7667 // -=*# Resource for function WAHL #*=-
7668 Resource SC_OPCODE_CHOSE
7670 String 1 // Description
7672 Text [ en-US ] = "Selects a value from a list of up to 30 value arguments." ;
7677 ID_FUNCTION_GRP_TABLE;
7678 U2S( HID_FUNC_WAHL );
7682 String 2 // Name of Parameter 1
7684 Text [ en-US ] = "Index" ;
7686 String 3 // Description of Parameter 1
7688 Text [ en-US ] = "The index of the value (1..30) selected." ;
7690 String 4 // Name of Parameter 2
7692 Text [ en-US ] = "value " ;
7694 String 5 // Description of Parameter 2
7696 Text [ en-US ] = "Value 1, value 2,... The list of arguments from which a value is chosen." ;
7699 // -=*# Resource for function SPALTE #*=-
7700 Resource SC_OPCODE_COLUMN
7702 String 1 // Description
7704 Text [ en-US ] = "Returns the internal column number of a reference." ;
7709 ID_FUNCTION_GRP_TABLE;
7710 U2S( HID_FUNC_SPALTE );
7714 String 2 // Name of Parameter 1
7716 Text [ en-US ] = "reference" ;
7718 String 3 // Description of Parameter 1
7720 Text [ en-US ] = "The reference to a cell or a range." ;
7723 // -=*# Resource for function ZEILE #*=-
7724 Resource SC_OPCODE_ROW
7726 String 1 // Description
7728 Text [ en-US ] = "Defines the internal row number of a reference." ;
7733 ID_FUNCTION_GRP_TABLE;
7734 U2S( HID_FUNC_ZEILE );
7738 String 2 // Name of Parameter 1
7740 Text [ en-US ] = "reference" ;
7742 String 3 // Description of Parameter 1
7744 Text [ en-US ] = "The reference to a cell or a range." ;
7747 // -=*# Resource for function TABELLE #*=-
7748 Resource SC_OPCODE_TABLE
7750 String 1 // Description
7752 Text [ en-US ] = "Returns the internal sheet number of a reference or a string." ;
7757 ID_FUNCTION_GRP_TABLE;
7758 U2S( HID_FUNC_TABELLE );
7762 String 2 // Name of Parameter 1
7764 Text [ en-US ] = "reference" ;
7766 String 3 // Description of Parameter 1
7768 Text [ en-US ] = "The reference to a cell or a range or the character string of a sheet name." ;
7771 // -=*# Resource for function SPALTEN #*=-
7772 Resource SC_OPCODE_COLUMNS
7774 String 1 // Description
7776 Text [ en-US ] = "Returns the number of columns in an array or reference." ;
7781 ID_FUNCTION_GRP_TABLE;
7782 U2S( HID_FUNC_SPALTEN );
7786 String 2 // Name of Parameter 1
7788 Text [ en-US ] = "array" ;
7790 String 3 // Description of Parameter 1
7792 Text [ en-US ] = "The array (reference) for which the number of columns is to be determined." ;
7795 // -=*# Resource for function ZEILEN #*=-
7796 Resource SC_OPCODE_ROWS
7798 String 1 // Description
7800 Text [ en-US ] = "Returns the number of rows in a reference or array." ;
7805 ID_FUNCTION_GRP_TABLE;
7806 U2S( HID_FUNC_ZEILEN );
7810 String 2 // Name of Parameter 1
7812 Text [ en-US ] = "array" ;
7814 String 3 // Description of Parameter 1
7816 Text [ en-US ] = "The array (reference) for which the number of rows is to be determined." ;
7819 // -=*# Resource for function TABELLEN #*=-
7820 Resource SC_OPCODE_TABLES
7822 String 1 // Description
7824 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." ;
7829 ID_FUNCTION_GRP_TABLE;
7830 U2S( HID_FUNC_TABELLEN );
7834 String 2 // Name of Parameter 1
7836 Text [ en-US ] = "reference" ;
7838 String 3 // Description of Parameter 1
7840 Text [ en-US ] = "The reference to a cell or a range." ;
7843 // -=*# Resource for function WVERWEIS #*=-
7844 Resource SC_OPCODE_H_LOOKUP
7846 String 1 // Description
7848 Text [ en-US ] = "Horizontal search and reference to the cells located below." ;
7853 ID_FUNCTION_GRP_TABLE;
7854 U2S( HID_FUNC_WVERWEIS );
7858 String 2 // Name of Parameter 1
7860 Text [ en-US ] = "search_criteria" ;
7862 String 3 // Description of Parameter 1
7864 Text [ en-US ] = "The value to be found in the first row." ;
7866 String 4 // Name of Parameter 2
7868 Text [ en-US ] = "array" ;
7870 String 5 // Description of Parameter 2
7872 Text [ en-US ] = "The array or the range for the reference." ;
7874 String 6 // Name of Parameter 3
7876 Text [ en-US ] = "Index" ;
7878 String 7 // Description of Parameter 3
7880 Text [ en-US ] = "The row index in the array." ;
7882 String 8 // Name of Parameter 4
7884 Text [ en-US ] = "sorted" ;
7886 String 9 // Description of Parameter 4
7888 Text [ en-US ] = "If the value is TRUE or not given, the search row of the array must be sorted in ascending order." ;
7891 // -=*# Resource for function SVERWEIS #*=-
7892 Resource SC_OPCODE_V_LOOKUP
7894 String 1 // Description
7896 Text [ en-US ] = "Vertical search and reference to indicated cells." ;
7901 ID_FUNCTION_GRP_TABLE;
7902 U2S( HID_FUNC_SVERWEIS );
7906 String 2 // Name of Parameter 1
7908 Text [ en-US ] = "Search criterion" ;
7910 String 3 // Description of Parameter 1
7912 Text [ en-US ] = "The value to be found in the first column." ;
7914 String 4 // Name of Parameter 2
7916 Text [ en-US ] = "array" ;
7918 String 5 // Description of Parameter 2
7920 Text [ en-US ] = "The array or range for referencing." ;
7922 String 6 // Name of Parameter 3
7924 Text [ en-US ] = "Index" ;
7926 String 7 // Description of Parameter 3
7928 Text [ en-US ] = "Column index number in the array." ;
7930 String 8 // Name of Parameter 4
7932 Text [ en-US ] = "sort order" ;
7934 String 9 // Description of Parameter 4
7936 Text [ en-US ] = "If the value is TRUE or not given, the search column of the array must be sorted in ascending order." ;
7939 // -=*# Resource for function INDEX #*=-
7940 Resource SC_OPCODE_INDEX
7942 String 1 // Description
7944 Text [ en-US ] = "Returns a reference to a cell from a defined range." ;
7949 ID_FUNCTION_GRP_TABLE;
7950 U2S( HID_FUNC_INDEX );
7954 String 2 // Name of Parameter 1
7956 Text [ en-US ] = "reference" ;
7958 String 3 // Description of Parameter 1
7960 Text [ en-US ] = "The reference to a (multiple) range." ;
7962 String 4 // Name of Parameter 2
7964 Text [ en-US ] = "row" ;
7966 String 5 // Description of Parameter 2
7968 Text [ en-US ] = "The row in the range." ;
7970 String 6 // Name of Parameter 3
7972 Text [ en-US ] = "column" ;
7974 String 7 // Description of Parameter 3
7976 Text [ en-US ] = "The column in the range." ;
7978 String 8 // Name of Parameter 4
7980 Text [ en-US ] = "range" ;
7982 String 9 // Description of Parameter 4
7984 Text [ en-US ] = "The index of the subrange if referring to a multiple range." ;
7987 // -=*# Resource for function INDIREKT #*=-
7988 Resource SC_OPCODE_INDIRECT
7990 String 1 // Description
7992 Text [ en-US ] = "Returns the contents of a cell that is referenced in text form." ;
7997 ID_FUNCTION_GRP_TABLE;
7998 U2S( HID_FUNC_INDIREKT );
8002 String 2 // Name of Parameter 1
8004 Text [ en-US ] = "ref " ;
8006 String 3 // Description of Parameter 1
8008 Text [ en-US ] = "The cell whose contents are to be evaluated is to be referenced in text form (e.g. \"A1\")." ;
8010 String 4 // Name of Parameter 2
8012 Text [ en-US ] = "A1" ;
8014 String 5 // Description of Parameter 2
8016 Text [ en-US ] = "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style." ;
8019 // -=*# Resource for function VERWEIS #*=-
8020 Resource SC_OPCODE_LOOKUP
8022 String 1 // Description
8024 Text [ en-US ] = "Determines a value in a vector by comparison to values in another vector." ;
8029 ID_FUNCTION_GRP_TABLE;
8030 U2S( HID_FUNC_VERWEIS );
8034 String 2 // Name of Parameter 1
8036 Text [ en-US ] = "Search criterion" ;
8038 String 3 // Description of Parameter 1
8040 Text [ en-US ] = "The value to be used for comparison." ;
8042 String 4 // Name of Parameter 2
8044 Text [ en-US ] = "Search vector" ;
8046 String 5 // Description of Parameter 2
8048 Text [ en-US ] = "The vector (row or column) in which to search." ;
8050 String 6 // Name of Parameter 3
8052 Text [ en-US ] = "result_vector" ;
8054 String 7 // Description of Parameter 3
8056 Text [ en-US ] = "The vector (row or range) from which the value is to be determined." ;
8059 // -=*# Resource for function VERGLEICH #*=-
8060 Resource SC_OPCODE_MATCH
8062 String 1 // Description
8064 Text [ en-US ] = "Defines a position in a array after comparing values." ;
8069 ID_FUNCTION_GRP_TABLE;
8070 U2S( HID_FUNC_VERGLEICH );
8074 String 2 // Name of Parameter 1
8076 Text [ en-US ] = "Search criterion" ;
8078 String 3 // Description of Parameter 1
8080 Text [ en-US ] = "The value to be used for comparison." ;
8082 String 4 // Name of Parameter 2
8084 Text [ en-US ] = "lookup_array" ;
8086 String 5 // Description of Parameter 2
8088 Text [ en-US ] = "The array (range) in which the search is made." ;
8090 String 6 // Name of Parameter 3
8092 Text [ en-US ] = "Type" ;
8094 String 7 // Description of Parameter 3
8096 Text [ en-US ] = "Type can take the value 1, 0 or -1 and determines the criteria are to be used for comparison purposes." ;
8099 // -=*# Resource for function VERSCHIEBUNG #*=-
8100 Resource SC_OPCODE_OFFSET
8102 String 1 // Description
8104 Text [ en-US ] = "Returns a reference which has been moved in relation to the starting point." ;
8109 ID_FUNCTION_GRP_TABLE;
8110 U2S( HID_FUNC_VERSCHIEBUNG );
8114 String 2 // Name of Parameter 1
8116 Text [ en-US ] = "reference" ;
8118 String 3 // Description of Parameter 1
8120 Text [ en-US ] = "The reference (cell) from which to base the movement." ;
8122 String 4 // Name of Parameter 2
8124 Text [ en-US ] = "rows" ;
8126 String 5 // Description of Parameter 2
8128 Text [ en-US ] = "The number of rows to be moved either up or down." ;
8130 String 6 // Name of Parameter 3
8132 Text [ en-US ] = "columns" ;
8134 String 7 // Description of Parameter 3
8136 Text [ en-US ] = "The number of columns that are to be moved to the left or to the right." ;
8138 String 8 // Name of Parameter 4
8140 Text [ en-US ] = "height" ;
8142 String 9 // Description of Parameter 4
8144 Text [ en-US ] = "The number of rows of the moved reference." ;
8146 String 10 // Name of Parameter 5
8148 Text [ en-US ] = "width" ;
8150 String 11 // Description of Parameter 5
8152 Text [ en-US ] = "The number of columns in the moved reference." ;
8155 // -=*# Resource for function FEHLERTYP #*=-
8156 Resource SC_OPCODE_ERROR_TYPE
8158 String 1 // Description
8160 Text [ en-US ] = "Returns a number corresponding to an error type" ;
8165 ID_FUNCTION_GRP_TABLE;
8166 U2S( HID_FUNC_FEHLERTYP );
8170 String 2 // Name of Parameter 1
8172 Text [ en-US ] = "reference" ;
8174 String 3 // Description of Parameter 1
8176 Text [ en-US ] = "The reference (cell) in which the error occurred." ;
8179 // -=*# Resource for function VORLAGE #*=-
8180 Resource SC_OPCODE_STYLE
8182 String 1 // Description
8184 Text [ en-US ] = "Applies a Style to the formula cell." ;
8189 ID_FUNCTION_GRP_TABLE;
8190 U2S( HID_FUNC_VORLAGE );
8194 String 2 // Name of Parameter 1
8196 Text [ en-US ] = "Style" ;
8198 String 3 // Description of Parameter 1
8200 Text [ en-US ] = "The name of the Style to be applied." ;
8202 String 4 // Name of Parameter 2
8204 Text [ en-US ] = "Time" ;
8206 String 5 // Description of Parameter 2
8208 Text [ en-US ] = "The time (in seconds) that the Style is to remain valid." ;
8210 String 6 // Name of Parameter 3
8212 Text [ en-US ] = "Style2" ;
8214 String 7 // Description of Parameter 3
8216 Text [ en-US ] = "The Style to be applied after time expires." ;
8219 // -=*# Resource for function DDE #*=-
8220 Resource SC_OPCODE_DDE
8222 String 1 // Description
8224 Text [ en-US ] = "Result of a DDE link." ;
8229 ID_FUNCTION_GRP_TABLE;
8230 U2S( HID_FUNC_DDE );
8234 String 2 // Name of Parameter 1
8236 Text [ en-US ] = "server" ;
8238 String 3 // Description of Parameter 1
8240 Text [ en-US ] = "The name of the server application." ;
8242 String 4 // Name of Parameter 2
8244 Text [ en-US ] = "File" ;
8246 String 5 // Description of Parameter 2
8248 Text [ en-US ] = "The name of the file." ;
8250 String 6 // Name of Parameter 3
8252 Text [ en-US ] = "range" ;
8254 String 7 // Description of Parameter 3
8256 Text [ en-US ] = "The range from which data is to be taken." ;
8258 String 8 // Name of Parameter 4
8260 Text [ en-US ] = "mode" ;
8262 String 9 // Description of Parameter 4
8264 Text [ en-US ] = "Defines how data is to be converted to numbers." ;
8267 // -=*# Resource for function HYPERLINK #*=-
8268 Resource SC_OPCODE_HYPERLINK
8270 String 1 // Description
8272 Text [ en-US ] = "Hyperlink." ;
8277 ID_FUNCTION_GRP_TABLE;
8278 U2S( HID_FUNC_HYPERLINK );
8282 String 2 // Name of Parameter 1
8284 Text [ en-US ] = "URL " ;
8286 String 3 // Description of Parameter 1
8288 Text [ en-US ] = "URL";
8290 String 4 // Name of Parameter 2
8292 Text [ en-US ] = "CellText " ;
8294 String 5 // Description of Parameter 2
8296 Text [ en-US ] = "Cell Text";
8299 // -=*# Resource for function GETPIVOTDATA #*=-
8300 Resource SC_OPCODE_GET_PIVOT_DATA
8302 String 1 // Description
8304 Text [ en-US ] = "Extracts value(s) from a pivot table.";
8309 ID_FUNCTION_GRP_TABLE;
8310 U2S( HID_FUNC_GETPIVOTDATA );
8311 VAR_ARGS+2; 0; 0; 1;
8314 String 2 // Name of Parameter 1
8316 Text [ en-US ] = "Data Field";
8318 String 3 // Description of Parameter 1
8320 Text [ en-US ] = "The name of the pivot table field to extract.";
8322 String 4 // Name of Parameter 2
8324 Text [ en-US ] = "Pivot Table";
8326 String 5 // Description of Parameter 2
8328 Text [ en-US ] = "A reference to a cell or range in the pivot table.";
8330 String 6 // Name of Parameter 3
8332 Text [ en-US ] = "Field Name / Item";
8334 String 7 // Description of Parameter 3
8336 Text [ en-US ] = "Field name/value pair to filter the target data.";
8339 // -=*# Resource for function BAHTTEXT #*=-
8340 Resource SC_OPCODE_BAHTTEXT
8342 String 1 // Description
8344 Text [ en-US ] = "Converts a number to text (Baht)." ;
8349 ID_FUNCTION_GRP_TEXT;
8350 U2S( HID_FUNC_BAHTTEXT );
8354 String 2 // Name of Parameter 1
8356 Text [ en-US ] = "Number" ;
8358 String 3 // Description of Parameter 1
8360 Text [ en-US ] = "The number to convert.";
8363 // -=*# Resource for function JIS #*=-
8364 Resource SC_OPCODE_JIS
8366 String 1 // Description
8368 Text [ en-US ] = "Converts half-width ASCII and katakana characters to full-width." ;
8373 ID_FUNCTION_GRP_TEXT;
8374 U2S( HID_FUNC_JIS );
8378 String 2 // Name of Parameter 1
8380 Text [ en-US ] = "text" ;
8382 String 3 // Description of Parameter 1
8384 Text [ en-US ] = "The text to convert.";
8387 // -=*# Resource for function ASC #*=-
8388 Resource SC_OPCODE_ASC
8390 String 1 // Description
8392 Text [ en-US ] = "Converts full-width ASCII and katakana characters to half-width." ;
8397 ID_FUNCTION_GRP_TEXT;
8398 U2S( HID_FUNC_ASC );
8402 String 2 // Name of Parameter 1
8404 Text [ en-US ] = "text" ;
8406 String 3 // Description of Parameter 1
8408 Text [ en-US ] = "The text to convert.";
8411 // -=*# Resource for function CODE #*=-
8412 Resource SC_OPCODE_CODE
8414 String 1 // Description
8416 Text [ en-US ] = "Returns a numeric code for the first character in a text string." ;
8421 ID_FUNCTION_GRP_TEXT;
8422 U2S( HID_FUNC_CODE );
8426 String 2 // Name of Parameter 1
8428 Text [ en-US ] = "text" ;
8430 String 3 // Description of Parameter 1
8432 Text [ en-US ] = "This is the text for which the code of the first character is to be found." ;
8435 // -=*# Resource for function DM #*=-
8436 Resource SC_OPCODE_CURRENCY
8438 String 1 // Description
8440 Text [ en-US ] = "Converts a number to text in currency format." ;
8445 ID_FUNCTION_GRP_TEXT;
8450 String 2 // Name of Parameter 1
8452 Text [ en-US ] = "value" ;
8454 String 3 // Description of Parameter 1
8456 Text [ en-US ] = "Value is a number, a reference to a cell containing a number or a formula that results in a number." ;
8458 String 4 // Name of Parameter 2
8460 Text [ en-US ] = "decimals" ;
8462 String 5 // Description of Parameter 2
8464 Text [ en-US ] = "Decimal places. Denotes the number of digits to the right of the decimal point." ;
8467 // -=*# Resource for function ZEICHEN #*=-
8468 Resource SC_OPCODE_CHAR
8470 String 1 // Description
8472 Text [ en-US ] = "Converts a code number into a character or letter." ;
8477 ID_FUNCTION_GRP_TEXT;
8478 U2S( HID_FUNC_ZEICHEN );
8482 String 2 // Name of Parameter 1
8484 Text [ en-US ] = "number" ;
8486 String 3 // Description of Parameter 1
8488 Text [ en-US ] = "The code value for the character." ;
8491 // -=*# Resource for function SÄUBERN #*=-
8492 Resource SC_OPCODE_CLEAN
8494 String 1 // Description
8496 Text [ en-US ] = "Removes all nonprintable characters from text." ;
8501 ID_FUNCTION_GRP_TEXT;
8502 U2S( HID_FUNC_SAEUBERN );
8506 String 2 // Name of Parameter 1
8508 Text [ en-US ] = "text" ;
8510 String 3 // Description of Parameter 1
8512 Text [ en-US ] = "The text from which nonprintable characters are to be removed." ;
8515 // -=*# Resource for function VERKETTEN #*=-
8516 Resource SC_OPCODE_CONCAT
8518 String 1 // Description
8520 Text [ en-US ] = "Combines several text items into one." ;
8525 ID_FUNCTION_GRP_TEXT;
8526 U2S( HID_FUNC_VERKETTEN );
8530 String 2 // Name of Parameter 1
8532 Text [ en-US ] = "text " ;
8534 String 3 // Description of Parameter 1
8536 Text [ en-US ] = "Text for the concatentation." ;
8539 // -=*# Resource for function IDENTISCH #*=-
8540 Resource SC_OPCODE_EXACT
8542 String 1 // Description
8544 Text [ en-US ] = "Specifies whether two texts are identical." ;
8549 ID_FUNCTION_GRP_TEXT;
8550 U2S( HID_FUNC_IDENTISCH );
8554 String 2 // Name of Parameter 1
8556 Text [ en-US ] = "text_1" ;
8558 String 3 // Description of Parameter 1
8560 Text [ en-US ] = "The first text to be used for comparing texts." ;
8562 String 4 // Name of Parameter 2
8564 Text [ en-US ] = "text_2" ;
8566 String 5 // Description of Parameter 2
8568 Text [ en-US ] = "The second text for comparing texts." ;
8571 // -=*# Resource for function FINDEN #*=-
8572 Resource SC_OPCODE_FIND
8574 String 1 // Description
8576 Text [ en-US ] = "Looks for a string of text within another (case sensitive)" ;
8581 ID_FUNCTION_GRP_TEXT;
8582 U2S( HID_FUNC_FINDEN );
8586 String 2 // Name of Parameter 1
8588 Text [ en-US ] = "find_text" ;
8590 String 3 // Description of Parameter 1
8592 Text [ en-US ] = "The text to be found." ;
8594 String 4 // Name of Parameter 2
8596 Text [ en-US ] = "text" ;
8598 String 5 // Description of Parameter 2
8600 Text [ en-US ] = "The text in which a search is to be made." ;
8602 String 6 // Name of Parameter 3
8604 Text [ en-US ] = "position" ;
8606 String 7 // Description of Parameter 3
8608 Text [ en-US ] = "The position in the text from which the search starts." ;
8611 // -=*# Resource for function SUCHEN #*=-
8612 Resource SC_OPCODE_SEARCH
8614 String 1 // Description
8616 Text [ en-US ] = "Looks for one text value within another (not case-sensitive)." ;
8621 ID_FUNCTION_GRP_TEXT;
8622 U2S( HID_FUNC_SUCHEN );
8626 String 2 // Name of Parameter 1
8628 Text [ en-US ] = "find_text" ;
8630 String 3 // Description of Parameter 1
8632 Text [ en-US ] = "The text to be found." ;
8634 String 4 // Name of Parameter 2
8636 Text [ en-US ] = "text" ;
8638 String 5 // Description of Parameter 2
8640 Text [ en-US ] = "The text in which a search is to be made." ;
8642 String 6 // Name of Parameter 3
8644 Text [ en-US ] = "position" ;
8646 String 7 // Description of Parameter 3
8648 Text [ en-US ] = "The position in the text where the search is started." ;
8651 // -=*# Resource for function GLÄTTEN #*=-
8652 Resource SC_OPCODE_TRIM
8654 String 1 // Description
8656 Text [ en-US ] = "Removes extra spaces from text." ;
8661 ID_FUNCTION_GRP_TEXT;
8662 U2S( HID_FUNC_GLAETTEN );
8666 String 2 // Name of Parameter 1
8668 Text [ en-US ] = "text" ;
8670 String 3 // Description of Parameter 1
8672 Text [ en-US ] = "The text in which extra spaces between words are to be deleted." ;
8675 // -=*# Resource for function GROSS2 #*=-
8676 Resource SC_OPCODE_PROPPER
8678 String 1 // Description
8680 Text [ en-US ] = "Capitalizes the first letter in all words." ;
8685 ID_FUNCTION_GRP_TEXT;
8686 U2S( HID_FUNC_GROSS2 );
8690 String 2 // Name of Parameter 1
8692 Text [ en-US ] = "text" ;
8694 String 3 // Description of Parameter 1
8696 Text [ en-US ] = "The text in which the beginning of words are to be replaced by capital letters." ;
8699 // -=*# Resource for function GROSS #*=-
8700 Resource SC_OPCODE_UPPER
8702 String 1 // Description
8704 Text [ en-US ] = "Converts text to uppercase." ;
8709 ID_FUNCTION_GRP_TEXT;
8710 U2S( HID_FUNC_GROSS );
8714 String 2 // Name of Parameter 1
8716 Text [ en-US ] = "text" ;
8718 String 3 // Description of Parameter 1
8720 Text [ en-US ] = "The text in which lower case letters are to be converted to capitals." ;
8723 // -=*# Resource for function KLEIN #*=-
8724 Resource SC_OPCODE_LOWER
8726 String 1 // Description
8728 Text [ en-US ] = "Converts text to lowercase." ;
8733 ID_FUNCTION_GRP_TEXT;
8734 U2S( HID_FUNC_KLEIN );
8738 String 2 // Name of Parameter 1
8740 Text [ en-US ] = "text" ;
8742 String 3 // Description of Parameter 1
8744 Text [ en-US ] = "The text in which capitals are converted to lower case letters." ;
8747 // -=*# Resource for function WERT #*=-
8748 Resource SC_OPCODE_VALUE
8750 String 1 // Description
8752 Text [ en-US ] = "Converts text to a number." ;
8757 ID_FUNCTION_GRP_TEXT;
8758 U2S( HID_FUNC_WERT );
8762 String 2 // Name of Parameter 1
8764 Text [ en-US ] = "text" ;
8766 String 3 // Description of Parameter 1
8768 Text [ en-US ] = "The text to be converted to a number." ;
8771 // -=*# Resource for function TEXT #*=-
8772 Resource SC_OPCODE_TEXT
8774 String 1 // Description
8776 Text [ en-US ] = "Converts a number to text according to a given format." ;
8781 ID_FUNCTION_GRP_TEXT;
8782 U2S( HID_FUNC_TEXT );
8786 String 2 // Name of Parameter 1
8788 Text [ en-US ] = "number" ;
8790 String 3 // Description of Parameter 1
8792 Text [ en-US ] = "The numeric value to be converted." ;
8794 String 4 // Name of Parameter 2
8796 Text [ en-US ] = "Format" ;
8798 String 5 // Description of Parameter 2
8800 Text [ en-US ] = "The text that describes the format." ;
8803 // -=*# Resource for function T #*=-
8804 Resource SC_OPCODE_T
8806 String 1 // Description
8808 Text [ en-US ] = "Returns a value if it is text, otherwise an empty string." ;
8813 ID_FUNCTION_GRP_TEXT;
8818 String 2 // Name of Parameter 1
8820 Text [ en-US ] = "value" ;
8822 String 3 // Description of Parameter 1
8824 Text [ en-US ] = "The value to be checked and returned if it is text." ;
8827 // -=*# Resource for function ERSETZEN #*=-
8828 Resource SC_OPCODE_REPLACE
8830 String 1 // Description
8832 Text [ en-US ] = "Replaces characters within a text string with a different text string." ;
8837 ID_FUNCTION_GRP_TEXT;
8838 U2S( HID_FUNC_ERSETZEN );
8842 String 2 // Name of Parameter 1
8844 Text [ en-US ] = "Text" ;
8846 String 3 // Description of Parameter 1
8848 Text [ en-US ] = "The text in which some characters are to be replaced." ;
8850 String 4 // Name of Parameter 2
8852 Text [ en-US ] = "position" ;
8854 String 5 // Description of Parameter 2
8856 Text [ en-US ] = "The character position from which text is to be replaced." ;
8858 String 6 // Name of Parameter 3
8860 Text [ en-US ] = "length" ;
8862 String 7 // Description of Parameter 3
8864 Text [ en-US ] = "The number of characters to be replaced." ;
8866 String 8 // Name of Parameter 4
8868 Text [ en-US ] = "new text" ;
8870 String 9 // Description of Parameter 4
8872 Text [ en-US ] = "The text to be inserted." ;
8875 // -=*# Resource for function FEST #*=-
8876 Resource SC_OPCODE_FIXED
8878 String 1 // Description
8880 Text [ en-US ] = "Formats a number with a fixed number of places after the decimal point and thousands separator." ;
8885 ID_FUNCTION_GRP_TEXT;
8886 U2S( HID_FUNC_FEST );
8890 String 2 // Name of Parameter 1
8892 Text [ en-US ] = "number" ;
8894 String 3 // Description of Parameter 1
8896 Text [ en-US ] = "The number to be formatted." ;
8898 String 4 // Name of Parameter 2
8900 Text [ en-US ] = "Decimals" ;
8902 String 5 // Description of Parameter 2
8904 Text [ en-US ] = "Decimal places. The number of fixed decimal places that are to be displayed." ;
8906 String 6 // Name of Parameter 3
8908 Text [ en-US ] = "No thousands separators" ;
8910 String 7 // Description of Parameter 3
8912 Text [ en-US ] = "No thousands separator. True value, if existing and TRUE (unequal to 0), no thousands separators are set." ;
8915 // -=*# Resource for function LÄNGE #*=-
8916 Resource SC_OPCODE_LEN
8918 String 1 // Description
8920 Text [ en-US ] = "Calculates length of a text string." ;
8925 ID_FUNCTION_GRP_TEXT;
8926 U2S( HID_FUNC_LAENGE );
8930 String 2 // Name of Parameter 1
8932 Text [ en-US ] = "text" ;
8934 String 3 // Description of Parameter 1
8936 Text [ en-US ] = "The text in which the length is to be determined." ;
8939 // -=*# Resource for function LINKS #*=-
8940 Resource SC_OPCODE_LEFT
8942 String 1 // Description
8944 Text [ en-US ] = "Returns the first character or characters of a text." ;
8949 ID_FUNCTION_GRP_TEXT;
8950 U2S( HID_FUNC_LINKS );
8954 String 2 // Name of Parameter 1
8956 Text [ en-US ] = "text" ;
8958 String 3 // Description of Parameter 1
8960 Text [ en-US ] = "The text where the initial partial words are to be determined." ;
8962 String 4 // Name of Parameter 2
8964 Text [ en-US ] = "number" ;
8966 String 5 // Description of Parameter 2
8968 Text [ en-US ] = "The number of characters for the start text." ;
8971 // -=*# Resource for function RECHTS #*=-
8972 Resource SC_OPCODE_RIGHT
8974 String 1 // Description
8976 Text [ en-US ] = "Returns the last character or characters of a text." ;
8981 ID_FUNCTION_GRP_TEXT;
8982 U2S( HID_FUNC_RECHTS );
8986 String 2 // Name of Parameter 1
8988 Text [ en-US ] = "text" ;
8990 String 3 // Description of Parameter 1
8992 Text [ en-US ] = "The text in which the end partial words are to be determined." ;
8994 String 4 // Name of Parameter 2
8996 Text [ en-US ] = "number" ;
8998 String 5 // Description of Parameter 2
9000 Text [ en-US ] = "The number of characters for the end text." ;
9003 // -=*# Resource for function TEIL #*=-
9004 Resource SC_OPCODE_MID
9006 String 1 // Description
9008 Text [ en-US ] = "Returns a partial text string of a text." ;
9013 ID_FUNCTION_GRP_TEXT;
9014 U2S( HID_FUNC_TEIL );
9018 String 2 // Name of Parameter 1
9020 Text [ en-US ] = "text" ;
9022 String 3 // Description of Parameter 1
9024 Text [ en-US ] = "The text in which partial words are to be determined." ;
9026 String 4 // Name of Parameter 2
9028 Text [ en-US ] = "start" ;
9030 String 5 // Description of Parameter 2
9032 Text [ en-US ] = "The position from which the part word is to be determined." ;
9034 String 6 // Name of Parameter 3
9036 Text [ en-US ] = "number" ;
9038 String 7 // Description of Parameter 3
9040 Text [ en-US ] = "The number of characters for the text." ;
9043 // -=*# Resource for function WIEDERHOLEN #*=-
9044 Resource SC_OPCODE_REPT
9046 String 1 // Description
9048 Text [ en-US ] = "Repeats text a given number of times." ;
9053 ID_FUNCTION_GRP_TEXT;
9054 U2S( HID_FUNC_WIEDERHOLEN );
9058 String 2 // Name of Parameter 1
9060 Text [ en-US ] = "text" ;
9062 String 3 // Description of Parameter 1
9064 Text [ en-US ] = "The text to be repeated." ;
9066 String 4 // Name of Parameter 2
9068 Text [ en-US ] = "number" ;
9070 String 5 // Description of Parameter 2
9072 Text [ en-US ] = "The number of times the text is to be repeated." ;
9075 // -=*# Resource for function WECHSELN #*=-
9076 Resource SC_OPCODE_SUBSTITUTE
9078 String 1 // Description
9080 Text [ en-US ] = "Substitutes new text for old text in a string." ;
9085 ID_FUNCTION_GRP_TEXT;
9086 U2S( HID_FUNC_WECHSELN );
9090 String 2 // Name of Parameter 1
9092 Text [ en-US ] = "text" ;
9094 String 3 // Description of Parameter 1
9096 Text [ en-US ] = "The text in which partial words are to be replaced." ;
9098 String 4 // Name of Parameter 2
9100 Text [ en-US ] = "search_text" ;
9102 String 5 // Description of Parameter 2
9104 Text [ en-US ] = "The partial string to be (repeatedly) replaced." ;
9106 String 6 // Name of Parameter 3
9108 Text [ en-US ] = "new text" ;
9110 String 7 // Description of Parameter 3
9112 Text [ en-US ] = "The text which is to replace the text string." ;
9114 String 8 // Name of Parameter 4
9116 Text [ en-US ] = "occurrence" ;
9118 String 9 // Description of Parameter 4
9120 Text [ en-US ] = "Which occurrence of the old text is to be replaced." ;
9123 // -=*# Resource for function BASIS #*=-
9124 Resource SC_OPCODE_BASE
9126 String 1 // Description
9128 Text [ en-US ] = "Converts a positive integer to text from a number system to the base defined." ;
9133 ID_FUNCTION_GRP_TEXT;
9134 U2S( HID_FUNC_BASIS );
9138 String 2 // Name of Parameter 1
9140 Text [ en-US ] = "number" ;
9142 String 3 // Description of Parameter 1
9144 Text [ en-US ] = "The number to be converted." ;
9146 String 4 // Name of Parameter 2
9148 Text [ en-US ] = "radix" ;
9150 String 5 // Description of Parameter 2
9152 Text [ en-US ] = "The base number for conversion must be in the range 2 - 36." ;
9154 String 6 // Name of Parameter 3
9156 Text [ en-US ] = "Minimum length" ;
9158 String 7 // Description of Parameter 3
9160 Text [ en-US ] = "If the text is shorter than the specified length, zeros are added to the left of the string." ;
9163 // -=*# Resource for function DEZIMAL #*=-
9164 Resource SC_OPCODE_DECIMAL
9166 String 1 // Description
9168 Text [ en-US ] = "Converts a text of a specified number system to a positive integer in the base given." ;
9173 ID_FUNCTION_GRP_TEXT;
9174 U2S( HID_FUNC_DEZIMAL );
9178 String 2 // Name of Parameter 1
9180 Text [ en-US ] = "text" ;
9182 String 3 // Description of Parameter 1
9184 Text [ en-US ] = "The text to be converted." ;
9186 String 4 // Name of Parameter 2
9188 Text [ en-US ] = "radix" ;
9190 String 5 // Description of Parameter 2
9192 Text [ en-US ] = "The base number for conversion must be in the range 2 - 36." ;
9195 // -=*# Resource for function CONVERT #*=-
9196 Resource SC_OPCODE_CONVERT
9198 String 1 // Description
9200 Text [ en-US ] = "Converts a value according to a conversion table in the configuration (main.xcd).";
9205 ID_FUNCTION_GRP_MATH;
9206 U2S( HID_FUNC_UMRECHNEN );
9210 String 2 // Name of Parameter 1
9212 Text [ en-US ] = "value" ;
9214 String 3 // Description of Parameter 1
9216 Text [ en-US ] = "The value to be converted.";
9218 String 4 // Name of Parameter 2
9220 Text [ en-US ] = "text" ;
9222 String 5 // Description of Parameter 2
9224 Text [ en-US ] = "Unit from which something is converted, case-sensitive.";
9226 String 6 // Name of Parameter 3
9228 Text [ en-US ] = "text" ;
9230 String 7 // Description of Parameter 3
9232 Text [ en-US ] = "Unit into which something is converted, case-sensitive.";
9235 // -=*# Resource for function ROEMISCH #*=-
9236 Resource SC_OPCODE_ROMAN
9238 String 1 // Description
9240 Text [ en-US ] = "Converts a number to a Roman numeral.";
9245 ID_FUNCTION_GRP_TEXT;
9246 U2S( HID_FUNC_ROEMISCH );
9250 String 2 // Name of Parameter 1
9252 Text [ en-US ] = "Number";
9254 String 3 // Description of Parameter 1
9256 Text [ en-US ] = "The number to be converted to a Roman numeral must be in the 0 - 3999 range.";
9258 String 4 // Name of Parameter 2
9260 Text [ en-US ] = "Mode";
9262 String 5 // Description of Parameter 2
9264 Text [ en-US ] = "The more this value increases, the more the Roman numeral is simplified. The value must be in the 0 - 4 range.";
9267 // -=*# Resource for function ARABISCH #*=-
9268 Resource SC_OPCODE_ARABIC
9270 String 1 // Description
9272 Text [ en-US ] = "Calculates the value of a Roman numeral.";
9277 ID_FUNCTION_GRP_TEXT;
9278 U2S( HID_FUNC_ARABISCH );
9282 String 2 // Name of Parameter 1
9284 Text [ en-US ] = "Text";
9286 String 3 // Description of Parameter 1
9288 Text [ en-US ] = "The text that represents a Roman numeral.";
9291 Resource SC_OPCODE_INFO
9295 Text [ en-US ] = "Returns information about the environment.";
9300 ID_FUNCTION_GRP_INFO;
9301 U2S( HID_FUNC_INFO );
9307 Text [ en-US ] = "Text";
9311 Text [ en-US ] = "Can be \"osversion\", \"system\", \"release\", \"numfile\", and \"recalc\".";
9314 Resource SC_OPCODE_UNICODE
9316 String 1 // Description
9318 Text [ en-US ] = "Returns the numeric code for the first Unicode character in a text string." ;
9323 ID_FUNCTION_GRP_TEXT;
9324 U2S( HID_FUNC_UNICODE );
9328 String 2 // Name of Parameter 1
9330 Text [ en-US ] = "text" ;
9332 String 3 // Description of Parameter 1
9334 Text [ en-US ] = "This is the text for which the code of the first character is to be found." ;
9337 Resource SC_OPCODE_UNICHAR
9339 String 1 // Description
9341 Text [ en-US ] = "Converts a code number into a Unicode character or letter." ;
9346 ID_FUNCTION_GRP_TEXT;
9347 U2S( HID_FUNC_UNICHAR );
9351 String 2 // Name of Parameter 1
9353 Text [ en-US ] = "number" ;
9355 String 3 // Description of Parameter 1
9357 Text [ en-US ] = "The code value for the character." ;
9360 Resource SC_OPCODE_EUROCONVERT
9362 String 1 // Description
9364 Text [ en-US ] = "Converts a value from one to another Euro currency.";
9369 ID_FUNCTION_GRP_MATH;
9370 U2S( HID_FUNC_EUROCONVERT );
9374 String 2 // Name of Parameter 1
9376 Text [ en-US ] = "value" ;
9378 String 3 // Description of Parameter 1
9380 Text [ en-US ] = "The value to be converted.";
9382 String 4 // Name of Parameter 2
9384 Text [ en-US ] = "from_currency" ;
9386 String 5 // Description of Parameter 2
9388 Text [ en-US ] = "ISO 4217 code of the currency from which is converted, case-sensitive.";
9390 String 6 // Name of Parameter 3
9392 Text [ en-US ] = "to_currency" ;
9394 String 7 // Description of Parameter 3
9396 Text [ en-US ] = "ISO 4217 code of the currency into which is converted, case-sensitive.";
9398 String 8 // Name of Parameter 4
9400 Text [ en-US ] = "full_precision" ;
9402 String 9 // Description of Parameter 4
9404 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.";
9406 String 10 // Name of Parameter 5
9408 Text [ en-US ] = "triangulation_precision" ;
9410 String 11 // Description of Parameter 5
9412 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.";
9413 Text [ x-comment ] = "This description uses almost all available space in the dialog, make sure translations fit in size." ;
9416 Resource SC_OPCODE_NUMBERVALUE
9418 String 1 // Description
9420 Text [ en-US ] = "Converts text to a number, in a locale-independent way." ;
9425 ID_FUNCTION_GRP_TEXT;
9426 U2S( HID_FUNC_NUMBERVALUE );
9430 String 2 // Name of Parameter 1
9432 Text [ en-US ] = "text" ;
9434 String 3 // Description of Parameter 1
9436 Text [ en-US ] = "The text to be converted to a number." ;
9438 String 4 // Name of Parameter 2
9440 Text [ en-US ] = "decimal_separator" ;
9442 String 5 // Description of Parameter 2
9444 Text [ en-US ] = "Defines the character used as the decimal separator." ;
9446 String 6 // Name of Parameter 3
9448 Text [ en-US ] = "group_separator" ;
9450 String 7 // Description of Parameter 3
9452 Text [ en-US ] = "Defines the character(s) used as the group separator." ;
9456 Resource SC_OPCODE_BITAND
9458 String 1 // Description
9460 Text [ en-US ] = "Bitwise \"AND\" of two integers.";
9465 ID_FUNCTION_GRP_MATH;
9466 U2S( HID_FUNC_BITAND );
9470 String 2 // Name of Parameter 1
9472 Text [ en-US ] = "Number" ;
9474 String 3 // Description of Parameter 1
9476 Text [ en-US ] = "Positive integer less than 2^48." ;
9478 String 4 // Name of Parameter 2
9480 Text [ en-US ] = "Number" ;
9482 String 5 // Description of Parameter 2
9484 Text [ en-US ] = "Positive integer less than 2^48." ;
9487 Resource SC_OPCODE_BITOR
9489 String 1 // Description
9491 Text [ en-US ] = "Bitwise \"OR\" of two integers.";
9496 ID_FUNCTION_GRP_MATH;
9497 U2S( HID_FUNC_BITOR );
9501 String 2 // Name of Parameter 1
9503 Text [ en-US ] = "Number" ;
9505 String 3 // Description of Parameter 1
9507 Text [ en-US ] = "Positive integer less than 2^48." ;
9509 String 4 // Name of Parameter 2
9511 Text [ en-US ] = "Number" ;
9513 String 5 // Description of Parameter 2
9515 Text [ en-US ] = "Positive integer less than 2^48." ;
9518 Resource SC_OPCODE_BITXOR
9520 String 1 // Description
9522 Text [ en-US ] = "Bitwise \"exclusive OR\" of two integers.";
9527 ID_FUNCTION_GRP_MATH;
9528 U2S( HID_FUNC_BITXOR );
9532 String 2 // Name of Parameter 1
9534 Text [ en-US ] = "Number" ;
9536 String 3 // Description of Parameter 1
9538 Text [ en-US ] = "Positive integer less than 2^48." ;
9540 String 4 // Name of Parameter 2
9542 Text [ en-US ] = "Number" ;
9544 String 5 // Description of Parameter 2
9546 Text [ en-US ] = "Positive integer less than 2^48." ;
9549 Resource SC_OPCODE_BITRSHIFT
9551 String 1 // Description
9553 Text [ en-US ] = "Bitwise right shift of an integer value.";
9558 ID_FUNCTION_GRP_MATH;
9559 U2S( HID_FUNC_BITRSHIFT );
9563 String 2 // Name of Parameter 1
9565 Text [ en-US ] = "Number" ;
9567 String 3 // Description of Parameter 1
9569 Text [ en-US ] = "The value to be shifted. Positive integer less than 2^48." ;
9571 String 4 // Name of Parameter 2
9573 Text [ en-US ] = "Shift" ;
9575 String 5 // Description of Parameter 2
9577 Text [ en-US ] = "The integer number of bits the value is to be shifted." ;
9580 Resource SC_OPCODE_BITLSHIFT
9582 String 1 // Description
9584 Text [ en-US ] = "Bitwise left shift of an integer value.";
9589 ID_FUNCTION_GRP_MATH;
9590 U2S( HID_FUNC_BITLSHIFT );
9594 String 2 // Name of Parameter 1
9596 Text [ en-US ] = "Number" ;
9598 String 3 // Description of Parameter 1
9600 Text [ en-US ] = "The value to be shifted. Positive integer less than 2^48." ;
9602 String 4 // Name of Parameter 2
9604 Text [ en-US ] = "Shift" ;
9606 String 5 // Description of Parameter 2
9608 Text [ en-US ] = "The integer number of bits the value is to be shifted." ;
9617 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */