Stop leaking all ScPostIt instances.
[LibreOffice.git] / sc / source / ui / src / scfuncs.src
blobac37c4d600ad0b12663e435a5662747a778da84c
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
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/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
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 .
18  */
20 /* Resource file for the function wizard / autopilot.
21  *
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.
25  *
26  *  For every function there is a sub resource with the number of the OpCode of
27  *  the function.
28  *
29  *      In this sub resource, with index 1 the description of the function is
30  *      given, after that follows an
31  *
32  *      ExtraData block with:
33  *
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
38  *          API then.
39  *
40  *          Function group (text, math, ...), one of ID_FUNCTION_GRP_...
41  *
42  *          Help ID, U2S(HID_FUNC_...)
43  *
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.
49  *
50  *          For every parameter:
51  *
52  *              Boolean flag whether the parameter is optional.
53  *
54  *          Number of suppressed parameters. Usually 0. Same meaning and
55  *          mechanism as the flag for the entire function above.
56  *
57  *          For every suppressed parameter:
58  *
59  *              The parameter number, offset starting with 0. Variable
60  *              arguments can't be suppressed!
61  *
62  *
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
65  *      parameter.
66  */
68 // Hack:
69 //#define   U2S(x)  ((x)-HID_START)
70 #define U2S(x) x
71 // Macro U2S: unsigned to signed
72 // is needed because the resource compiler only knows signed short int in
73 // ExtraData, but the HID_XXX are unsigned and exceed 32k. Code reading the
74 // resource entries must consider this and undo the conversion.
76 #include "scfuncs.hrc"
77 #include "formula/compiler.hrc"
79 Resource RID_SC_FUNCTION_DESCRIPTIONS1
81      // -=*# Resource for function DBANZAHL #*=-
82     Resource SC_OPCODE_DB_COUNT
83     {
84         String 1 // Description
85         {
86             Text [ en-US ] = "Counts the cells of a data range whose contents match the search criteria." ;
87         };
88         ExtraData =
89         {
90             0;
91             ID_FUNCTION_GRP_DATABASE;
92             U2S( HID_FUNC_DBANZAHL );
93             3;  0;  0;  0;
94             0;
95         };
96         String 2 // Name of Parameter 1
97         {
98             Text [ en-US ] = "Database" ;
99         };
100         String 3 // Description of Parameter 1
101         {
102             Text [ en-US ] = "The range of cells containing data." ;
103         };
104         String 4 // Name of Parameter 2
105         {
106             Text [ en-US ] = "Database field" ;
107         };
108         String 5 // Description of Parameter 2
109         {
110             Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
111         };
112         String 6 // Name of Parameter 3
113         {
114             Text [ en-US ] = "Search criteria" ;
115         };
116         String 7 // Description of Parameter 3
117         {
118             Text [ en-US ] = "Defines the cell range containing the search criteria." ;
119         };
120     };
121      // -=*# Resource for function DBANZAHL2 #*=-
122     Resource SC_OPCODE_DB_COUNT_2
123     {
124         String 1 // Description
125         {
126             Text [ en-US ] = "Counts all non-blank cells of a data range where the content corresponds to the search criteria." ;
127         };
128         ExtraData =
129         {
130             0;
131             ID_FUNCTION_GRP_DATABASE;
132             U2S( HID_FUNC_DBANZAHL2 );
133             3;  0;  0;  0;
134             0;
135         };
136         String 2 // Name of Parameter 1
137         {
138             Text [ en-US ] = "Database" ;
139         };
140         String 3 // Description of Parameter 1
141         {
142             Text [ en-US ] = "The range of cells containing data." ;
143         };
144         String 4 // Name of Parameter 2
145         {
146             Text [ en-US ] = "Database field" ;
147         };
148         String 5 // Description of Parameter 2
149         {
150             Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
151         };
152         String 6 // Name of Parameter 3
153         {
154             Text [ en-US ] = "Search criteria" ;
155         };
156         String 7 // Description of Parameter 3
157         {
158             Text [ en-US ] = "Defines the cell range containing the search criteria." ;
159         };
160     };
161      // -=*# Resource for function DBMITTELWERT #*=-
162     Resource SC_OPCODE_DB_AVERAGE
163     {
164         String 1 // Description
165         {
166             Text [ en-US ] = "Returns the average value of all the cells of a data range whose contents match the search criteria." ;
167         };
168         ExtraData =
169         {
170             0;
171             ID_FUNCTION_GRP_DATABASE;
172             U2S( HID_FUNC_DBMITTELWERT );
173             3;  0;  0;  0;
174             0;
175         };
176         String 2 // Name of Parameter 1
177         {
178             Text [ en-US ] = "Database" ;
179         };
180         String 3 // Description of Parameter 1
181         {
182             Text [ en-US ] = "The range of cells containing data." ;
183         };
184         String 4 // Name of Parameter 2
185         {
186             Text [ en-US ] = "Database field" ;
187         };
188         String 5 // Description of Parameter 2
189         {
190             Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
191         };
192         String 6 // Name of Parameter 3
193         {
194             Text [ en-US ] = "Search criteria" ;
195         };
196         String 7 // Description of Parameter 3
197         {
198             Text [ en-US ] = "Defines the cell range containing the search criteria." ;
199         };
200     };
201      // -=*# Resource for function DBAUSZUG #*=-
202     Resource SC_OPCODE_DB_GET
203     {
204         String 1 // Description
205         {
206             Text [ en-US ] = "Defines the contents of the cell of a data range which matches the search criteria." ;
207         };
208         ExtraData =
209         {
210             0;
211             ID_FUNCTION_GRP_DATABASE;
212             U2S( HID_FUNC_DBAUSZUG );
213             3;  0;  0;  0;
214             0;
215         };
216         String 2 // Name of Parameter 1
217         {
218             Text [ en-US ] = "Database" ;
219         };
220         String 3 // Description of Parameter 1
221         {
222             Text [ en-US ] = "The range of cells containing data." ;
223         };
224         String 4 // Name of Parameter 2
225         {
226             Text [ en-US ] = "Database field" ;
227         };
228         String 5 // Description of Parameter 2
229         {
230             Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
231         };
232         String 6 // Name of Parameter 3
233         {
234             Text [ en-US ] = "Search criteria" ;
235         };
236         String 7 // Description of Parameter 3
237         {
238             Text [ en-US ] = "Defines the cell range containing the search criteria." ;
239         };
240     };
241      // -=*# Resource for function DBMAX #*=-
242     Resource SC_OPCODE_DB_MAX
243     {
244         String 1 // Description
245         {
246             Text [ en-US ] = "Returns the maximum value from all of the cells of a data range which correspond to the search criteria." ;
247         };
248         ExtraData =
249         {
250             0;
251             ID_FUNCTION_GRP_DATABASE;
252             U2S( HID_FUNC_DBMAX );
253             3;  0;  0;  0;
254             0;
255         };
256         String 2 // Name of Parameter 1
257         {
258             Text [ en-US ] = "Database" ;
259         };
260         String 3 // Description of Parameter 1
261         {
262             Text [ en-US ] = "The range of cells containing data." ;
263         };
264         String 4 // Name of Parameter 2
265         {
266             Text [ en-US ] = "Database field" ;
267         };
268         String 5 // Description of Parameter 2
269         {
270             Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
271         };
272         String 6 // Name of Parameter 3
273         {
274             Text [ en-US ] = "Search criteria" ;
275         };
276         String 7 // Description of Parameter 3
277         {
278             Text [ en-US ] = "Defines the cell range containing the search criteria." ;
279         };
280     };
281      // -=*# Resource for function DBMIN #*=-
282     Resource SC_OPCODE_DB_MIN
283     {
284         String 1 // Description
285         {
286             Text [ en-US ] = "Returns the minimum of all cells of a data range where the contents correspond to the search criteria." ;
287         };
288         ExtraData =
289         {
290             0;
291             ID_FUNCTION_GRP_DATABASE;
292             U2S( HID_FUNC_DBMIN );
293             3;  0;  0;  0;
294             0;
295         };
296         String 2 // Name of Parameter 1
297         {
298             Text [ en-US ] = "Database" ;
299         };
300         String 3 // Description of Parameter 1
301         {
302             Text [ en-US ] = "The range of cells containing data." ;
303         };
304         String 4 // Name of Parameter 2
305         {
306             Text [ en-US ] = "Database field" ;
307         };
308         String 5 // Description of Parameter 2
309         {
310             Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
311         };
312         String 6 // Name of Parameter 3
313         {
314             Text [ en-US ] = "Search criteria" ;
315         };
316         String 7 // Description of Parameter 3
317         {
318             Text [ en-US ] = "Defines the cell range containing the search criteria." ;
319         };
320     };
321      // -=*# Resource for function DBPRODUKT #*=-
322     Resource SC_OPCODE_DB_PRODUCT
323     {
324         String 1 // Description
325         {
326             Text [ en-US ] = "Multiplies all cells of a data range where the contents match the search criteria." ;
327         };
328         ExtraData =
329         {
330             0;
331             ID_FUNCTION_GRP_DATABASE;
332             U2S( HID_FUNC_DBPRODUKT );
333             3;  0;  0;  0;
334             0;
335         };
336         String 2 // Name of Parameter 1
337         {
338             Text [ en-US ] = "Database" ;
339         };
340         String 3 // Description of Parameter 1
341         {
342             Text [ en-US ] = "The range of cells containing data." ;
343         };
344         String 4 // Name of Parameter 2
345         {
346             Text [ en-US ] = "Database field" ;
347         };
348         String 5 // Description of Parameter 2
349         {
350             Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
351         };
352         String 6 // Name of Parameter 3
353         {
354             Text [ en-US ] = "Search criteria" ;
355         };
356         String 7 // Description of Parameter 3
357         {
358             Text [ en-US ] = "Defines the cell range containing the search criteria." ;
359         };
360     };
361      // -=*# Resource for function DBSTDABW #*=-
362     Resource SC_OPCODE_DB_STD_DEV
363     {
364         String 1 // Description
365         {
366             Text [ en-US ] = "Calculates the standard deviation of all cells in a data range whose contents match the search criteria." ;
367         };
368         ExtraData =
369         {
370             0;
371             ID_FUNCTION_GRP_DATABASE;
372             U2S( HID_FUNC_DBSTDABW );
373             3;  0;  0;  0;
374             0;
375         };
376         String 2 // Name of Parameter 1
377         {
378             Text [ en-US ] = "Database" ;
379         };
380         String 3 // Description of Parameter 1
381         {
382             Text [ en-US ] = "The range of cells containing data." ;
383         };
384         String 4 // Name of Parameter 2
385         {
386             Text [ en-US ] = "Database field" ;
387         };
388         String 5 // Description of Parameter 2
389         {
390             Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
391         };
392         String 6 // Name of Parameter 3
393         {
394             Text [ en-US ] = "Search criteria" ;
395         };
396         String 7 // Description of Parameter 3
397         {
398             Text [ en-US ] = "Defines the cell range containing the search criteria." ;
399         };
400     };
401      // -=*# Resource for function DBSTDABWN #*=-
402     Resource SC_OPCODE_DB_STD_DEV_P
403     {
404         String 1 // Description
405         {
406             Text [ en-US ] = "Returns the standard deviation with regards to the population of all cells of a data range matching the search criteria." ;
407         };
408         ExtraData =
409         {
410             0;
411             ID_FUNCTION_GRP_DATABASE;
412             U2S( HID_FUNC_DBSTDABWN );
413             3;  0;  0;  0;
414             0;
415         };
416         String 2 // Name of Parameter 1
417         {
418             Text [ en-US ] = "Database" ;
419         };
420         String 3 // Description of Parameter 1
421         {
422             Text [ en-US ] = "The range of cells containing data." ;
423         };
424         String 4 // Name of Parameter 2
425         {
426             Text [ en-US ] = "Database field" ;
427         };
428         String 5 // Description of Parameter 2
429         {
430             Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
431         };
432         String 6 // Name of Parameter 3
433         {
434             Text [ en-US ] = "Search criteria" ;
435         };
436         String 7 // Description of Parameter 3
437         {
438             Text [ en-US ] = "Defines the cell range containing the search criteria." ;
439         };
440     };
441      // -=*# Resource for function DBSUMME #*=-
442     Resource SC_OPCODE_DB_SUM
443     {
444         String 1 // Description
445         {
446             Text [ en-US ] = "Adds all the cells of a data range where the contents match the search criteria." ;
447         };
448         ExtraData =
449         {
450             0;
451             ID_FUNCTION_GRP_DATABASE;
452             U2S( HID_FUNC_DBSUMME );
453             3;  0;  0;  0;
454             0;
455         };
456         String 2 // Name of Parameter 1
457         {
458             Text [ en-US ] = "Database" ;
459         };
460         String 3 // Description of Parameter 1
461         {
462             Text [ en-US ] = "The range of cells containing data." ;
463         };
464         String 4 // Name of Parameter 2
465         {
466             Text [ en-US ] = "Database field" ;
467         };
468         String 5 // Description of Parameter 2
469         {
470             Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
471         };
472         String 6 // Name of Parameter 3
473         {
474             Text [ en-US ] = "Search criteria" ;
475         };
476         String 7 // Description of Parameter 3
477         {
478             Text [ en-US ] = "Defines the cell range containing the search criteria." ;
479         };
480     };
481      // -=*# Resource for function DBVARIANZ #*=-
482     Resource SC_OPCODE_DB_VAR
483     {
484         String 1 // Description
485         {
486             Text [ en-US ] = "Determines the variance of all the cells in a data range where the contents match the search criteria." ;
487         };
488         ExtraData =
489         {
490             0;
491             ID_FUNCTION_GRP_DATABASE;
492             U2S( HID_FUNC_DBVARIANZ );
493             3;  0;  0;  0;
494             0;
495         };
496         String 2 // Name of Parameter 1
497         {
498             Text [ en-US ] = "Database" ;
499         };
500         String 3 // Description of Parameter 1
501         {
502             Text [ en-US ] = "The range of cells containing data." ;
503         };
504         String 4 // Name of Parameter 2
505         {
506             Text [ en-US ] = "Database field" ;
507         };
508         String 5 // Description of Parameter 2
509         {
510             Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
511         };
512         String 6 // Name of Parameter 3
513         {
514             Text [ en-US ] = "Search criteria" ;
515         };
516         String 7 // Description of Parameter 3
517         {
518             Text [ en-US ] = "Defines the cell range containing the search criteria." ;
519         };
520     };
521      // -=*# Resource for function DBVARIANZEN #*=-
522     Resource SC_OPCODE_DB_VAR_P
523     {
524         String 1 // Description
525         {
526             Text [ en-US ] = "Determines variance of a population based on all cells in a data range where contents match the search criteria." ;
527         };
528         ExtraData =
529         {
530             0;
531             ID_FUNCTION_GRP_DATABASE;
532             U2S( HID_FUNC_DBVARIANZEN );
533             3;  0;  0;  0;
534             0;
535         };
536         String 2 // Name of Parameter 1
537         {
538             Text [ en-US ] = "Database" ;
539         };
540         String 3 // Description of Parameter 1
541         {
542             Text [ en-US ] = "The range of cells containing data." ;
543         };
544         String 4 // Name of Parameter 2
545         {
546             Text [ en-US ] = "Database field" ;
547         };
548         String 5 // Description of Parameter 2
549         {
550             Text [ en-US ] = "Indicates which database field (column) is to be used for the search criteria." ;
551         };
552         String 6 // Name of Parameter 3
553         {
554             Text [ en-US ] = "Search criteria" ;
555         };
556         String 7 // Description of Parameter 3
557         {
558             Text [ en-US ] = "Defines the cell range containing the search criteria." ;
559         };
560     };
561      // -=*# Resource for function DATUM #*=-
562     Resource SC_OPCODE_GET_DATE
563     {
564         String 1 // Description
565         {
566             Text [ en-US ] = "Provides an internal number for the date given." ;
567         };
568         ExtraData =
569         {
570             0;
571             ID_FUNCTION_GRP_DATETIME;
572             U2S( HID_FUNC_DATUM );
573             3;  0;  0;  0;
574             0;
575         };
576         String 2 // Name of Parameter 1
577         {
578             Text [ en-US ] = "year" ;
579         };
580         String 3 // Description of Parameter 1
581         {
582             Text [ en-US ] = "An integer between 1583 and 9956 or 0 and 99 (19xx or 20xx depending on the defined option)." ;
583         };
584         String 4 // Name of Parameter 2
585         {
586             Text [ en-US ] = "month" ;
587         };
588         String 5 // Description of Parameter 2
589         {
590             Text [ en-US ] = "An integer between 1 and 12 representing the month." ;
591         };
592         String 6 // Name of Parameter 3
593         {
594             Text [ en-US ] = "day" ;
595         };
596         String 7 // Description of Parameter 3
597         {
598             Text [ en-US ] = "An integer between 1 and 31 representing the day of the month." ;
599         };
600     };
601      // -=*# Resource for function DATWERT #*=-
602     Resource SC_OPCODE_GET_DATE_VALUE
603     {
604         String 1 // Description
605         {
606             Text [ en-US ] = "Returns an internal number for a text having a possible date format." ;
607         };
608         ExtraData =
609         {
610             0;
611             ID_FUNCTION_GRP_DATETIME;
612             U2S( HID_FUNC_DATWERT );
613             1;  0;
614             0;
615         };
616         String 2 // Name of Parameter 1
617         {
618             Text [ en-US ] = "text" ;
619         };
620         String 3 // Description of Parameter 1
621         {
622             Text [ en-US ] = "A text enclosed in quotation marks which returns a date in a %PRODUCTNAME date format." ;
623         };
624     };
625      // -=*# Resource for function TAG #*=-
626     Resource SC_OPCODE_GET_DAY
627     {
628         String 1 // Description
629         {
630             Text [ en-US ] = "Returns the sequential date of the month as an integer (1-31) in relation to the date value." ;
631         };
632         ExtraData =
633         {
634             0;
635             ID_FUNCTION_GRP_DATETIME;
636             U2S( HID_FUNC_TAG );
637             1;  0;
638             0;
639         };
640         String 2 // Name of Parameter 1
641         {
642             Text [ en-US ] = "Number" ;
643         };
644         String 3 // Description of Parameter 1
645         {
646             Text [ en-US ] = "The internal number for the date." ;
647         };
648     };
649      // -=*# Resource for function TAGE360 #*=-
650     Resource SC_OPCODE_GET_DIFF_DATE_360
651     {
652         String 1 // Description
653         {
654             Text [ en-US ] = "Calculates the number of days between two dates based on a 360-day year." ;
655         };
656         ExtraData =
657         {
658             0;
659             ID_FUNCTION_GRP_DATETIME;
660             U2S( HID_FUNC_TAGE360 );
661             3;  0;  0;  1;
662             0;
663         };
664         String 2 // Name of Parameter 1
665         {
666             Text [ en-US ] = "Date_1" ;
667         };
668         String 3 // Description of Parameter 1
669         {
670             Text [ en-US ] = "The start date for calculating the difference in days." ;
671         };
672         String 4 // Name of Parameter 2
673         {
674             Text [ en-US ] = "Date_2" ;
675         };
676         String 5 // Description of Parameter 2
677         {
678             Text [ en-US ] = "The end date for calculating the difference in days." ;
679         };
680         String 6 // Name of Parameter 3
681         {
682             Text [ en-US ] = "Type" ;
683         };
684         String 7 // Description of Parameter 3
685         {
686             Text [ en-US ] = "Method used to form differences: Type = 0 denotes US method (NASD), Type = 1 denotes the European method." ;
687         };
688     };
689      // -=*# Resource for function STUNDE #*=-
690     Resource SC_OPCODE_GET_HOUR
691     {
692         String 1 // Description
693         {
694             Text [ en-US ] = "Determines the sequential number of the hour of the day (0-23) for the time value." ;
695         };
696         ExtraData =
697         {
698             0;
699             ID_FUNCTION_GRP_DATETIME;
700             U2S( HID_FUNC_STUNDE );
701             1;  0;
702             0;
703         };
704         String 2 // Name of Parameter 1
705         {
706             Text [ en-US ] = "Number" ;
707         };
708         String 3 // Description of Parameter 1
709         {
710             Text [ en-US ] = "Internal time value" ;
711         };
712     };
713      // -=*# Resource for function MINUTE #*=-
714     Resource SC_OPCODE_GET_MIN
715     {
716         String 1 // Description
717         {
718             Text [ en-US ] = "Determines the sequential number for the minute of the hour (0-59) for the time value." ;
719         };
720         ExtraData =
721         {
722             0;
723             ID_FUNCTION_GRP_DATETIME;
724             U2S( HID_FUNC_MINUTE );
725             1;  0;
726             0;
727         };
728         String 2 // Name of Parameter 1
729         {
730             Text [ en-US ] = "Number" ;
731         };
732         String 3 // Description of Parameter 1
733         {
734             Text [ en-US ] = "Internal time value." ;
735         };
736     };
737      // -=*# Resource for function MONAT #*=-
738     Resource SC_OPCODE_GET_MONTH
739     {
740         String 1 // Description
741         {
742             Text [ en-US ] = "Determines the sequential number of a month of the year (1-12) for the date value." ;
743         };
744         ExtraData =
745         {
746             0;
747             ID_FUNCTION_GRP_DATETIME;
748             U2S( HID_FUNC_MONAT );
749             1;  0;
750             0;
751         };
752         String 2 // Name of Parameter 1
753         {
754             Text [ en-US ] = "Number" ;
755         };
756         String 3 // Description of Parameter 1
757         {
758             Text [ en-US ] = "The internal number of the date." ;
759         };
760     };
761      // -=*# Resource for function JETZT #*=-
762     Resource SC_OPCODE_GET_ACT_TIME
763     {
764         String 1 // Description
765         {
766             Text [ en-US ] = "Determines the current time of the computer." ;
767         };
768         ExtraData =
769         {
770             0;
771             ID_FUNCTION_GRP_DATETIME;
772             U2S( HID_FUNC_JETZT );
773             0;
774             0;
775         };
776     };
777      // -=*# Resource for function SEKUNDE #*=-
778     Resource SC_OPCODE_GET_SEC
779     {
780         String 1 // Description
781         {
782             Text [ en-US ] = "Determines the sequential number of the second of a minute (0-59) for the time value." ;
783         };
784         ExtraData =
785         {
786             0;
787             ID_FUNCTION_GRP_DATETIME;
788             U2S( HID_FUNC_SEKUNDE );
789             1;  0;
790             0;
791         };
792         String 2 // Name of Parameter 1
793         {
794             Text [ en-US ] = "Number" ;
795         };
796         String 3 // Description of Parameter 1
797         {
798             Text [ en-US ] = "The internal time value." ;
799         };
800     };
801      // -=*# Resource for function ZEIT #*=-
802     Resource SC_OPCODE_GET_TIME
803     {
804         String 1 // Description
805         {
806             Text [ en-US ] = "Determines a time value from the details for hour, minute and second." ;
807         };
808         ExtraData =
809         {
810             0;
811             ID_FUNCTION_GRP_DATETIME;
812             U2S( HID_FUNC_ZEIT );
813             3;  0;  0;  0;
814             0;
815         };
816         String 2 // Name of Parameter 1
817         {
818             Text [ en-US ] = "hour" ;
819         };
820         String 3 // Description of Parameter 1
821         {
822             Text [ en-US ] = "The integer for the hour." ;
823         };
824         String 4 // Name of Parameter 2
825         {
826             Text [ en-US ] = "minute" ;
827         };
828         String 5 // Description of Parameter 2
829         {
830             Text [ en-US ] = "The integer for the minute." ;
831         };
832         String 6 // Name of Parameter 3
833         {
834             Text [ en-US ] = "second" ;
835         };
836         String 7 // Description of Parameter 3
837         {
838             Text [ en-US ] = "The integer for the second." ;
839         };
840     };
841      // -=*# Resource for function ZEITWERT #*=-
842     Resource SC_OPCODE_GET_TIME_VALUE
843     {
844         String 1 // Description
845         {
846             Text [ en-US ] = "Returns a sequential number for a text shown in a possible time entry format." ;
847         };
848         ExtraData =
849         {
850             0;
851             ID_FUNCTION_GRP_DATETIME;
852             U2S( HID_FUNC_ZEITWERT );
853             1;  0;
854             0;
855         };
856         String 2 // Name of Parameter 1
857         {
858             Text [ en-US ] = "text" ;
859         };
860         String 3 // Description of Parameter 1
861         {
862             Text [ en-US ] = "A text enclosed in quotation marks which returns a time in a %PRODUCTNAME time format." ;
863         };
864     };
865      // -=*# Resource for function HEUTE #*=-
866     Resource SC_OPCODE_GET_ACT_DATE
867     {
868         String 1 // Description
869         {
870             Text [ en-US ] = "Determines the current date of the computer." ;
871         };
872         ExtraData =
873         {
874             0;
875             ID_FUNCTION_GRP_DATETIME;
876             U2S( HID_FUNC_HEUTE );
877             0;
878             0;
879         };
880     };
881      // -=*# Resource for function WOCHENTAG #*=-
882     Resource SC_OPCODE_GET_DAY_OF_WEEK
883     {
884         String 1 // Description
885         {
886             Text [ en-US ] = "Returns the day of the week for the date value as an integer (1-7)." ;
887         };
888         ExtraData =
889         {
890             0;
891             ID_FUNCTION_GRP_DATETIME;
892             U2S( HID_FUNC_WOCHENTAG );
893             2;  0;  1;
894             0;
895         };
896         String 2 // Name of Parameter 1
897         {
898             Text [ en-US ] = "Number" ;
899         };
900         String 3 // Description of Parameter 1
901         {
902             Text [ en-US ] = "The internal number for the date." ;
903         };
904         String 4 // Name of Parameter 2
905         {
906             Text [ en-US ] = "Type" ;
907         };
908         String 5 // Description of Parameter 2
909         {
910             Text [ en-US ] = "Fixes the beginning of the week and the type of calculation to be used." ;
911         };
912     };
913      // -=*# Resource for function JAHR #*=-
914     Resource SC_OPCODE_GET_YEAR
915     {
916         String 1 // Description
917         {
918             Text [ en-US ] = "Returns the year of a date value as an integer." ;
919         };
920         ExtraData =
921         {
922             0;
923             ID_FUNCTION_GRP_DATETIME;
924             U2S( HID_FUNC_JAHR );
925             1;  0;
926             0;
927         };
928         String 2 // Name of Parameter 1
929         {
930             Text [ en-US ] = "Number" ;
931         };
932         String 3 // Description of Parameter 1
933         {
934             Text [ en-US ] = "Internal number of the date." ;
935         };
936     };
937      // -=*# Resource for function TAGE #*=-
938     Resource SC_OPCODE_GET_DIFF_DATE
939     {
940         String 1 // Description
941         {
942             Text [ en-US ] = "Calculates the number of days between two dates." ;
943         };
944         ExtraData =
945         {
946             0;
947             ID_FUNCTION_GRP_DATETIME;
948             U2S( HID_FUNC_TAGE );
949             2;  0;  0;
950             0;
951         };
952         String 2 // Name of Parameter 1
953         {
954             Text [ en-US ] = "Date_2" ;
955         };
956         String 3 // Description of Parameter 1
957         {
958             Text [ en-US ] = "The end date for calculating the difference in days." ;
959         };
960         String 4 // Name of Parameter 2
961         {
962             Text [ en-US ] = "Date_1" ;
963         };
964         String 5 // Description of Parameter 2
965         {
966             Text [ en-US ] = "The start date for calculating the difference in days." ;
967         };
968     };
969      // -=*# Resource for function DATEDIF #*=-
970     Resource SC_OPCODE_GET_DATEDIF
971     {
972         String 1    // description
973         {
974             Text [ en-US ] = "Returns the number of whole days, months or years between 'start date' and 'end date'.";
975         };
976         ExtraData =
977         {
978             0;
979             ID_FUNCTION_GRP_DATETIME;
980             U2S( HID_FUNC_DATEDIF );
981             3;  0;  0; 0;
982             0;
983         };
985         String 2 // name of parameter 1         DateDif
986         {
987             Text [ en-US ] = "Start date";
988         };
990         String 3 // description of parameter 1  DateDif
991         {
992             Text [ en-US ] = "The start date.";
993         };
995         String 4 // name of parameter 2         DateDif
996         {
997             Text [ en-US ] = "End date";
998         };
1000         String 5 // description of parameter 2  DateDif
1001         {
1002             Text [ en-US ] = "The end date.";
1003         };
1005         String 6 // name of parameter 3         DateDif
1006         {
1007             Text [ en-US ] = "Interval";
1008         };
1010         String 7 // description of parameter 3  DateDif
1011         {
1012             Text [ en-US ] = "Interval to be calculated. Can be \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\".";
1013         };
1014     };
1015      // -=*# Resource for function KALENDERWOCHE #*=-
1016     Resource SC_OPCODE_WEEK
1017     {
1018         String 1 // Description
1019         {
1020             Text [ en-US ] = "Calculates the calendar week corresponding to the given date." ;
1021         };
1022         ExtraData =
1023         {
1024             0;
1025             ID_FUNCTION_GRP_DATETIME;
1026             U2S( HID_FUNC_KALENDERWOCHE );
1027             2;  0;  0;
1028             0;
1029         };
1030         String 2 // Name of Parameter 1
1031         {
1032             Text [ en-US ] = "Number" ;
1033         };
1034         String 3 // Description of Parameter 1
1035         {
1036             Text [ en-US ] = "The internal number of the date." ;
1037         };
1038         String 4 // Name of Parameter 2
1039         {
1040             Text [ en-US ] = "mode" ;
1041         };
1042         String 5 // Description of Parameter 2
1043         {
1044             Text [ en-US ] = "Indicates the first day of the week (1 = Sunday, other values = Monday)." ;
1045         };
1046     };
1047      // -=*# Resource for function OSTERSONNTAG #*=-
1048     Resource SC_OPCODE_EASTERSUNDAY
1049     {
1050         String 1 // Description
1051         {
1052             Text [ en-US ] = "Calculates the date of Easter Sunday in a given year.";
1053         };
1054         ExtraData =
1055         {
1056             0;
1057             ID_FUNCTION_GRP_DATETIME;
1058             U2S( HID_FUNC_OSTERSONNTAG );
1059             1;  0;
1060             0;
1061         };
1062         String 2 // Name of Parameter 1
1063         {
1064             Text [ en-US ] = "year";
1065         };
1066         String 3 // Description of Parameter 1
1067         {
1068             Text [ en-US ] = "An integer between 1583 and 9956, or 0 and 99 (19xx or 20xx depending on the option set).";
1069         };
1070     };
1071      // -=*# Resource for function BW #*=-
1072     Resource SC_OPCODE_BW
1073     {
1074         String 1 // Description
1075         {
1076             Text [ en-US ] = "Present value. Calculates the present value of an investment." ;
1077         };
1078         ExtraData =
1079         {
1080             0;
1081             ID_FUNCTION_GRP_FINANZ;
1082             U2S( HID_FUNC_BW );
1083             5;  0;  0;  0;  1;  1;
1084             0;
1085         };
1086         String 2 // Name of Parameter 1
1087         {
1088             Text [ en-US ] = "Rate" ;
1089         };
1090         String 3 // Description of Parameter 1
1091         {
1092             Text [ en-US ] = "The rate of interest for the period given." ;
1093         };
1094         String 4 // Name of Parameter 2
1095         {
1096             Text [ en-US ] = "NPER" ;
1097         };
1098         String 5 // Description of Parameter 2
1099         {
1100             Text [ en-US ] = "The payment period. The total number of periods in which the annuity is paid." ;
1101         };
1102         String 6 // Name of Parameter 3
1103         {
1104             Text [ en-US ] = "PMT" ;
1105         };
1106         String 7 // Description of Parameter 3
1107         {
1108             Text [ en-US ] = "Regular payments. The constant amount of annuity that is paid in each period." ;
1109         };
1110         String 8 // Name of Parameter 4
1111         {
1112             Text [ en-US ] = "FV" ;
1113         };
1114         String 9 // Description of Parameter 4
1115         {
1116             Text [ en-US ] = "Future value. The value (final value) to be attained after the last payment." ;
1117         };
1118         String 10 // Name of Parameter 5
1119         {
1120             Text [ en-US ] = "Type" ;
1121         };
1122         String 11 // Description of Parameter 5
1123         {
1124             Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1125         };
1126     };
1127      // -=*# Resource for function ZW #*=-
1128     Resource SC_OPCODE_ZW
1129     {
1130         String 1 // Description
1131         {
1132             Text [ en-US ] = "Future value. Returns the future value of an investment based on regular payments and a constant interest rate." ;
1133         };
1134         ExtraData =
1135         {
1136             0;
1137             ID_FUNCTION_GRP_FINANZ;
1138             U2S( HID_FUNC_ZW );
1139             5;  0;  0;  0;  1;  1;
1140             0;
1141         };
1142         String 2 // Name of Parameter 1
1143         {
1144             Text [ en-US ] = "Rate" ;
1145         };
1146         String 3 // Description of Parameter 1
1147         {
1148             Text [ en-US ] = "The rate of interest per period." ;
1149         };
1150         String 4 // Name of Parameter 2
1151         {
1152             Text [ en-US ] = "NPER" ;
1153         };
1154         String 5 // Description of Parameter 2
1155         {
1156             Text [ en-US ] = "Payment period. The total number of periods in which the annuity (pension) is paid." ;
1157         };
1158         String 6 // Name of Parameter 3
1159         {
1160             Text [ en-US ] = "PMT" ;
1161         };
1162         String 7 // Description of Parameter 3
1163         {
1164             Text [ en-US ] = "Regular payments. The constant annuity to be paid in each period." ;
1165         };
1166         String 8 // Name of Parameter 4
1167         {
1168             Text [ en-US ] = "PV" ;
1169         };
1170         String 9 // Description of Parameter 4
1171         {
1172             Text [ en-US ] = "Present value. The current value of a series of payments" ;
1173         };
1174         String 10 // Name of Parameter 5
1175         {
1176             Text [ en-US ] = "Type" ;
1177         };
1178         String 11 // Description of Parameter 5
1179         {
1180             Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1181         };
1182     };
1183      // -=*# Resource for function ZZR #*=-
1184     Resource SC_OPCODE_ZZR
1185     {
1186         String 1 // Description
1187         {
1188             Text [ en-US ] = "Payment period. Calculates the number of payment periods for an investment based on regular payments and a constant interest rate." ;
1189         };
1190         ExtraData =
1191         {
1192             0;
1193             ID_FUNCTION_GRP_FINANZ;
1194             U2S( HID_FUNC_ZZR );
1195             5;  0;  0;  0;  1;  1;
1196             0;
1197         };
1198         String 2 // Name of Parameter 1
1199         {
1200             Text [ en-US ] = "Rate" ;
1201         };
1202         String 3 // Description of Parameter 1
1203         {
1204             Text [ en-US ] = "The rate of interest per period." ;
1205         };
1206         String 4 // Name of Parameter 2
1207         {
1208             Text [ en-US ] = "PMT" ;
1209         };
1210         String 5 // Description of Parameter 2
1211         {
1212             Text [ en-US ] = "Regular payments. The constant annuity to be paid in each period." ;
1213         };
1214         String 6 // Name of Parameter 3
1215         {
1216             Text [ en-US ] = "PV" ;
1217         };
1218         String 7 // Description of Parameter 3
1219         {
1220             Text [ en-US ] = "Present value. The current value of a series of payments" ;
1221         };
1222         String 8 // Name of Parameter 4
1223         {
1224             Text [ en-US ] = "FV" ;
1225         };
1226         String 9 // Description of Parameter 4
1227         {
1228             Text [ en-US ] = "Future value. The value (end value) to be attained after the final payment." ;
1229         };
1230         String 10 // Name of Parameter 5
1231         {
1232             Text [ en-US ] = "Type" ;
1233         };
1234         String 11 // Description of Parameter 5
1235         {
1236             Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1237         };
1238     };
1239      // -=*# Resource for function RMZ #*=-
1240     Resource SC_OPCODE_RMZ
1241     {
1242         String 1 // Description
1243         {
1244             Text [ en-US ] = "Regular payments. Returns the periodic payment of an annuity, based on regular payments and a fixed periodic interest rate." ;
1245         };
1246         ExtraData =
1247         {
1248             0;
1249             ID_FUNCTION_GRP_FINANZ;
1250             U2S( HID_FUNC_RMZ );
1251             5;  0;  0;  0;  1;  1;
1252             0;
1253         };
1254         String 2 // Name of Parameter 1
1255         {
1256             Text [ en-US ] = "Rate" ;
1257         };
1258         String 3 // Description of Parameter 1
1259         {
1260             Text [ en-US ] = "The rate of interest per period." ;
1261         };
1262         String 4 // Name of Parameter 2
1263         {
1264             Text [ en-US ] = "NPER" ;
1265         };
1266         String 5 // Description of Parameter 2
1267         {
1268             Text [ en-US ] = "Payment period. The total number of periods in which the annuity (pension) is paid." ;
1269         };
1270         String 6 // Name of Parameter 3
1271         {
1272             Text [ en-US ] = "PV" ;
1273         };
1274         String 7 // Description of Parameter 3
1275         {
1276             Text [ en-US ] = "Present value. The current value of a series of payments" ;
1277         };
1278         String 8 // Name of Parameter 4
1279         {
1280             Text [ en-US ] = "FV" ;
1281         };
1282         String 9 // Description of Parameter 4
1283         {
1284             Text [ en-US ] = "Future value. The value (end value) to be attained after the final payment." ;
1285         };
1286         String 10 // Name of Parameter 5
1287         {
1288             Text [ en-US ] = "Type" ;
1289         };
1290         String 11 // Description of Parameter 5
1291         {
1292             Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1293         };
1294     };
1295      // -=*# Resource for function ZINS #*=-
1296     Resource SC_OPCODE_ZINS
1297     {
1298         String 1 // Description
1299         {
1300             Text [ en-US ] = "Calculates the constant interest rate of an investment with regular payments." ;
1301         };
1302         ExtraData =
1303         {
1304             0;
1305             ID_FUNCTION_GRP_FINANZ;
1306             U2S( HID_FUNC_ZINS );
1307             6;  0;  0;  0;  1;  1;  1;
1308             0;
1309         };
1310         String 2 // Name of Parameter 1
1311         {
1312             Text [ en-US ] = "NPER" ;
1313         };
1314         String 3 // Description of Parameter 1
1315         {
1316             Text [ en-US ] = "Payment period. The total number of periods in which the annuity (pension) is paid." ;
1317         };
1318         String 4 // Name of Parameter 2
1319         {
1320             Text [ en-US ] = "PMT" ;
1321         };
1322         String 5 // Description of Parameter 2
1323         {
1324             Text [ en-US ] = "Regular payments. The constant annuity to be paid in each period." ;
1325         };
1326         String 6 // Name of Parameter 3
1327         {
1328             Text [ en-US ] = "PV" ;
1329         };
1330         String 7 // Description of Parameter 3
1331         {
1332             Text [ en-US ] = "Present value. The current value of a series of payments" ;
1333         };
1334         String 8 // Name of Parameter 4
1335         {
1336             Text [ en-US ] = "FV" ;
1337         };
1338         String 9 // Description of Parameter 4
1339         {
1340             Text [ en-US ] = "Future value. The value (end value) to be attained after the final payment." ;
1341         };
1342         String 10 // Name of Parameter 5
1343         {
1344             Text [ en-US ] = "Type" ;
1345         };
1346         String 11 // Description of Parameter 5
1347         {
1348             Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1349         };
1350         String 12 // Name of Parameter 6
1351         {
1352             Text [ en-US ] = "Guess" ;
1353         };
1354         String 13 // Description of Parameter 6
1355         {
1356             Text [ en-US ] = "Guess. The estimate of the interest rate for the iterative calculating method." ;
1357         };
1358     };
1359      // -=*# Resource for function ZINSZ #*=-
1360     Resource SC_OPCODE_ZINS_Z
1361     {
1362         String 1 // Description
1363         {
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." ;
1365         };
1366         ExtraData =
1367         {
1368             0;
1369             ID_FUNCTION_GRP_FINANZ;
1370             U2S( HID_FUNC_ZINSZ );
1371             6;  0;  0;  0;  0;  1;  1;
1372             0;
1373         };
1374         String 2 // Name of Parameter 1
1375         {
1376             Text [ en-US ] = "Rate" ;
1377         };
1378         String 3 // Description of Parameter 1
1379         {
1380             Text [ en-US ] = "The rate of interest per period." ;
1381         };
1382         String 4 // Name of Parameter 2
1383         {
1384             Text [ en-US ] = "Period" ;
1385         };
1386         String 5 // Description of Parameter 2
1387         {
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." ;
1389         };
1390         String 6 // Name of Parameter 3
1391         {
1392             Text [ en-US ] = "NPER" ;
1393         };
1394         String 7 // Description of Parameter 3
1395         {
1396             Text [ en-US ] = "Payment period. The total number of periods in which the annuity (pension) is paid." ;
1397         };
1398         String 8 // Name of Parameter 4
1399         {
1400             Text [ en-US ] = "pv" ;
1401         };
1402         String 9 // Description of Parameter 4
1403         {
1404             Text [ en-US ] = "Present value. The current value of a series of payments" ;
1405         };
1406         String 10 // Name of Parameter 5
1407         {
1408             Text [ en-US ] = "FV" ;
1409         };
1410         String 11 // Description of Parameter 5
1411         {
1412             Text [ en-US ] = "Future value. The value (end value) to be attained after the final payment." ;
1413         };
1414         String 12 // Name of Parameter 6
1415         {
1416             Text [ en-US ] = "Type" ;
1417         };
1418         String 13 // Description of Parameter 6
1419         {
1420             Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1421         };
1422     };
1423      // -=*# Resource for function KAPZ #*=-
1424     Resource SC_OPCODE_KAPZ
1425     {
1426         String 1 // Description
1427         {
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." ;
1429         };
1430         ExtraData =
1431         {
1432             0;
1433             ID_FUNCTION_GRP_FINANZ;
1434             U2S( HID_FUNC_KAPZ );
1435             6;  0;  0;  0;  0;  1;  1;
1436             0;
1437         };
1438         String 2 // Name of Parameter 1
1439         {
1440             Text [ en-US ] = "Rate" ;
1441         };
1442         String 3 // Description of Parameter 1
1443         {
1444             Text [ en-US ] = "The interest rate per period." ;
1445         };
1446         String 4 // Name of Parameter 2
1447         {
1448             Text [ en-US ] = "Period" ;
1449         };
1450         String 5 // Description of Parameter 2
1451         {
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" ;
1453         };
1454         String 6 // Name of Parameter 3
1455         {
1456             Text [ en-US ] = "NPER" ;
1457         };
1458         String 7 // Description of Parameter 3
1459         {
1460             Text [ en-US ] = "The payment period. The total number of periods in which the annuity (pension) is paid." ;
1461         };
1462         String 8 // Name of Parameter 4
1463         {
1464             Text [ en-US ] = "PV" ;
1465         };
1466         String 9 // Description of Parameter 4
1467         {
1468             Text [ en-US ] = "The present value. The present value or the amount the annuity is currently worth." ;
1469         };
1470         String 10 // Name of Parameter 5
1471         {
1472             Text [ en-US ] = "FV" ;
1473         };
1474         String 11 // Description of Parameter 5
1475         {
1476             Text [ en-US ] = "Future value. The value (end value) attained after the last payment has been made." ;
1477         };
1478         String 12 // Name of Parameter 6
1479         {
1480             Text [ en-US ] = "Type" ;
1481         };
1482         String 13 // Description of Parameter 6
1483         {
1484             Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1485         };
1486     };
1487      // -=*# Resource for function KUMKAPITAL #*=-
1488     Resource SC_OPCODE_KUM_KAP_Z
1489     {
1490         String 1 // Description
1491         {
1492             Text [ en-US ] = "Cumulative Capital. Calculates the total amount of the repayment share in a period for an investment with constant interest rate." ;
1493         };
1494         ExtraData =
1495         {
1496             0;
1497             ID_FUNCTION_GRP_FINANZ;
1498             U2S( HID_FUNC_KUMKAPITAL );
1499             6;  0;  0;  0;  0;  0;  0;
1500             0;
1501         };
1502         String 2 // Name of Parameter 1
1503         {
1504             Text [ en-US ] = "Rate" ;
1505         };
1506         String 3 // Description of Parameter 1
1507         {
1508             Text [ en-US ] = "The rate of interest per period." ;
1509         };
1510         String 4 // Name of Parameter 2
1511         {
1512             Text [ en-US ] = "NPER" ;
1513         };
1514         String 5 // Description of Parameter 2
1515         {
1516             Text [ en-US ] = "Payment period. The total number of periods in which the annuity (pension) is paid." ;
1517         };
1518         String 6 // Name of Parameter 3
1519         {
1520             Text [ en-US ] = "PV" ;
1521         };
1522         String 7 // Description of Parameter 3
1523         {
1524             Text [ en-US ] = "The present value. The present value or the amount the annuity is currently worth." ;
1525         };
1526         String 8 // Name of Parameter 4
1527         {
1528             Text [ en-US ] = "S" ;
1529         };
1530         String 9 // Description of Parameter 4
1531         {
1532             Text [ en-US ] = "The start period. The first period to be taken into account. S = 1 denotes the very first period." ;
1533         };
1534         String 10 // Name of Parameter 5
1535         {
1536             Text [ en-US ] = "E" ;
1537         };
1538         String 11 // Description of Parameter 5
1539         {
1540             Text [ en-US ] = "End period. The last period to be taken into account." ;
1541         };
1542         String 12 // Name of Parameter 6
1543         {
1544             Text [ en-US ] = "Type" ;
1545         };
1546         String 13 // Description of Parameter 6
1547         {
1548             Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1549         };
1550     };
1551      // -=*# Resource for function KUMZINSZ #*=-
1552     Resource SC_OPCODE_KUM_ZINS_Z
1553     {
1554         String 1 // Description
1555         {
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." ;
1557         };
1558         ExtraData =
1559         {
1560             0;
1561             ID_FUNCTION_GRP_FINANZ;
1562             U2S( HID_FUNC_KUMZINSZ );
1563             6;  0;  0;  0;  0;  0;  0;
1564             0;
1565         };
1566         String 2 // Name of Parameter 1
1567         {
1568             Text [ en-US ] = "Rate" ;
1569         };
1570         String 3 // Description of Parameter 1
1571         {
1572             Text [ en-US ] = "The rate of interest per period." ;
1573         };
1574         String 4 // Name of Parameter 2
1575         {
1576             Text [ en-US ] = "NPER" ;
1577         };
1578         String 5 // Description of Parameter 2
1579         {
1580             Text [ en-US ] = "Payment period. The total number of periods in which the annuity (pension) is paid." ;
1581         };
1582         String 6 // Name of Parameter 3
1583         {
1584             Text [ en-US ] = "pv" ;
1585         };
1586         String 7 // Description of Parameter 3
1587         {
1588             Text [ en-US ] = "The present value. The present value or the amount the annuity is currently worth." ;
1589         };
1590         String 8 // Name of Parameter 4
1591         {
1592             Text [ en-US ] = "S" ;
1593         };
1594         String 9 // Description of Parameter 4
1595         {
1596             Text [ en-US ] = "The start period. The first period to be taken into account. S = 1 denotes the very first period." ;
1597         };
1598         String 10 // Name of Parameter 5
1599         {
1600             Text [ en-US ] = "E" ;
1601         };
1602         String 11 // Description of Parameter 5
1603         {
1604             Text [ en-US ] = "The end period. The last period to be taken into account." ;
1605         };
1606         String 12 // Name of Parameter 6
1607         {
1608             Text [ en-US ] = "Type" ;
1609         };
1610         String 13 // Description of Parameter 6
1611         {
1612             Text [ en-US ] = "Type = 1 denotes due at the beginning of the period, = 0 at the end." ;
1613         };
1614     };
1615      // -=*# Resource for function DIA #*=-
1616     Resource SC_OPCODE_DIA
1617     {
1618         String 1 // Description
1619         {
1620             Text [ en-US ] = "Calculates the arithmetically declining value of an asset (depreciation) for a specified period." ;
1621         };
1622         ExtraData =
1623         {
1624             0;
1625             ID_FUNCTION_GRP_FINANZ;
1626             U2S( HID_FUNC_DIA );
1627             4;  0;  0;  0;  0;
1628             0;
1629         };
1630         String 2 // Name of Parameter 1
1631         {
1632             Text [ en-US ] = "Cost" ;
1633         };
1634         String 3 // Description of Parameter 1
1635         {
1636             Text [ en-US ] = "Acquisition costs. The initial cost of the asset." ;
1637         };
1638         String 4 // Name of Parameter 2
1639         {
1640             Text [ en-US ] = "Salvage" ;
1641         };
1642         String 5 // Description of Parameter 2
1643         {
1644             Text [ en-US ] = "Salvage: The remaining value of the asset at the end of its life." ;
1645         };
1646         String 6 // Name of Parameter 3
1647         {
1648             Text [ en-US ] = "Life" ;
1649         };
1650         String 7 // Description of Parameter 3
1651         {
1652             Text [ en-US ] = "Useful life. The number of periods in the useful life of the asset." ;
1653         };
1654         String 8 // Name of Parameter 4
1655         {
1656             Text [ en-US ] = "Period" ;
1657         };
1658         String 9 // Description of Parameter 4
1659         {
1660             Text [ en-US ] = "Period. The depreciation period which must have the same time unit as average useful life." ;
1661         };
1662     };
1663      // -=*# Resource for function LIA #*=-
1664     Resource SC_OPCODE_LIA
1665     {
1666         String 1 // Description
1667         {
1668             Text [ en-US ] = "Calculates the linear depreciation per period." ;
1669         };
1670         ExtraData =
1671         {
1672             0;
1673             ID_FUNCTION_GRP_FINANZ;
1674             U2S( HID_FUNC_LIA );
1675             3;  0;  0;  0;
1676             0;
1677         };
1678         String 2 // Name of Parameter 1
1679         {
1680             Text [ en-US ] = "Cost" ;
1681         };
1682         String 3 // Description of Parameter 1
1683         {
1684             Text [ en-US ] = "Acquisition cost. The initial cost of an asset." ;
1685         };
1686         String 4 // Name of Parameter 2
1687         {
1688             Text [ en-US ] = "Salvage" ;
1689         };
1690         String 5 // Description of Parameter 2
1691         {
1692             Text [ en-US ] = "Salvage: The remaining value of the asset at the end of its life." ;
1693         };
1694         String 6 // Name of Parameter 3
1695         {
1696             Text [ en-US ] = "Life" ;
1697         };
1698         String 7 // Description of Parameter 3
1699         {
1700             Text [ en-US ] = "Useful life. The number of periods in the useful life of the asset." ;
1701         };
1702     };
1703      // -=*# Resource for function GDA #*=-
1704     Resource SC_OPCODE_GDA
1705     {
1706         String 1 // Description
1707         {
1708             Text [ en-US ] = "Calculates the depreciation of an asset for a specific period using the double-declining balance method or declining balance factor." ;
1709         };
1710         ExtraData =
1711         {
1712             0;
1713             ID_FUNCTION_GRP_FINANZ;
1714             U2S( HID_FUNC_GDA );
1715             5;  0;  0;  0;  0;  1;
1716             0;
1717         };
1718         String 2 // Name of Parameter 1
1719         {
1720             Text [ en-US ] = "Cost" ;
1721         };
1722         String 3 // Description of Parameter 1
1723         {
1724             Text [ en-US ] = "Acquisition costs. The initial cost of the asset." ;
1725         };
1726         String 4 // Name of Parameter 2
1727         {
1728             Text [ en-US ] = "Salvage" ;
1729         };
1730         String 5 // Description of Parameter 2
1731         {
1732             Text [ en-US ] = "Salvage: The remaining value of the asset at the end of its life." ;
1733         };
1734         String 6 // Name of Parameter 3
1735         {
1736             Text [ en-US ] = "Life" ;
1737         };
1738         String 7 // Description of Parameter 3
1739         {
1740             Text [ en-US ] = "Useful life. The number of periods in the useful life of the asset." ;
1741         };
1742         String 8 // Name of Parameter 4
1743         {
1744             Text [ en-US ] = "Period" ;
1745         };
1746         String 9 // Description of Parameter 4
1747         {
1748             Text [ en-US ] = "Period. The depreciation period in the same time unit as the average useful life entry." ;
1749         };
1750         String 10 // Name of Parameter 5
1751         {
1752             Text [ en-US ] = "Factor" ;
1753         };
1754         String 11 // Description of Parameter 5
1755         {
1756             Text [ en-US ] = "Factor. The factor for balance decline. F = 2 means a double declining balance factor" ;
1757         };
1758     };
1759      // -=*# Resource for function GDA2 #*=-
1760     Resource SC_OPCODE_GDA_2
1761     {
1762         String 1 // Description
1763         {
1764             Text [ en-US ] = "Returns the real depreciation of an asset for a specified period using the fixed-declining balance method." ;
1765         };
1766         ExtraData =
1767         {
1768             0;
1769             ID_FUNCTION_GRP_FINANZ;
1770             U2S( HID_FUNC_GDA2 );
1771             5;  0;  0;  0;  0;  1;
1772             0;
1773         };
1774         String 2 // Name of Parameter 1
1775         {
1776             Text [ en-US ] = "Cost" ;
1777         };
1778         String 3 // Description of Parameter 1
1779         {
1780             Text [ en-US ] = "Acquisition costs: The initial cost of the asset." ;
1781         };
1782         String 4 // Name of Parameter 2
1783         {
1784             Text [ en-US ] = "Salvage" ;
1785         };
1786         String 5 // Description of Parameter 2
1787         {
1788             Text [ en-US ] = "Salvage: The remaining value of the asset at the end of its life." ;
1789         };
1790         String 6 // Name of Parameter 3
1791         {
1792             Text [ en-US ] = "Life" ;
1793         };
1794         String 7 // Description of Parameter 3
1795         {
1796             Text [ en-US ] = "Useful life. The number of periods in the useful life of the asset." ;
1797         };
1798         String 8 // Name of Parameter 4
1799         {
1800             Text [ en-US ] = "Period" ;
1801         };
1802         String 9 // Description of Parameter 4
1803         {
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." ;
1805         };
1806         String 10 // Name of Parameter 5
1807         {
1808             Text [ en-US ] = "month" ;
1809         };
1810         String 11 // Description of Parameter 5
1811         {
1812             Text [ en-US ] = "Months: The number of months in the first year of depreciation." ;
1813         };
1814     };
1815      // -=*# Resource for function VDB #*=-
1816     Resource SC_OPCODE_VBD
1817     {
1818         String 1 // Description
1819         {
1820             Text [ en-US ] = "Variable declining balance. Returns the declining balance depreciation for a particular period." ;
1821         };
1822         ExtraData =
1823         {
1824             0;
1825             ID_FUNCTION_GRP_FINANZ;
1826             U2S( HID_FUNC_VDB );
1827             7;  0;  0;  0;  0;  0;  1;  1;
1828             0;
1829         };
1830         String 2 // Name of Parameter 1
1831         {
1832             Text [ en-US ] = "Cost" ;
1833         };
1834         String 3 // Description of Parameter 1
1835         {
1836             Text [ en-US ] = "Cost. The initial cost of the asset." ;
1837         };
1838         String 4 // Name of Parameter 2
1839         {
1840             Text [ en-US ] = "Salvage" ;
1841         };
1842         String 5 // Description of Parameter 2
1843         {
1844             Text [ en-US ] = "Salvage. The salvage value of an asset at the end of its useful life." ;
1845         };
1846         String 6 // Name of Parameter 3
1847         {
1848             Text [ en-US ] = "Life" ;
1849         };
1850         String 7 // Description of Parameter 3
1851         {
1852             Text [ en-US ] = "Useful life. The number of periods in the useful life of the asset." ;
1853         };
1854         String 8 // Name of Parameter 4
1855         {
1856             Text [ en-US ] = "S" ;
1857         };
1858         String 9 // Description of Parameter 4
1859         {
1860             Text [ en-US ] = "Start. The first period for depreciation in the same time unit as the useful life." ;
1861         };
1862         String 10 // Name of Parameter 5
1863         {
1864             Text [ en-US ] = "end" ;
1865         };
1866         String 11 // Description of Parameter 5
1867         {
1868             Text [ en-US ] = "End. The last period of the depreciation using the same time unit as for the useful life." ;
1869         };
1870         String 12 // Name of Parameter 6
1871         {
1872             Text [ en-US ] = "Factor" ;
1873         };
1874         String 13 // Description of Parameter 6
1875         {
1876             Text [ en-US ] = "Factor. The factor for the reduction of the depreciation. F = 2 denotes double rate depreciation." ;
1877         };
1878         String 14 // Name of Parameter 7
1879         {
1880             Text [ en-US ] = "Type" ;
1881         };
1882         String 15 // Description of Parameter 7
1883         {
1884             Text [ en-US ] = "Do not alter. Type = 1 denotes switch to linear depreciation, type = 0 do not switch." ;
1885         };
1886     };
1887      // -=*# Resource for function EFFEKTIV #*=-
1888     Resource SC_OPCODE_EFFEKTIV
1889     {
1890         String 1 // Description
1891         {
1892             Text [ en-US ] = "Calculates the annual net interest rate for a nominal interest rate." ;
1893         };
1894         ExtraData =
1895         {
1896             0;
1897             ID_FUNCTION_GRP_FINANZ;
1898             U2S( HID_FUNC_EFFEKTIV );
1899             2;  0;  0;
1900             0;
1901         };
1902         String 2 // Name of Parameter 1
1903         {
1904             Text [ en-US ] = "NOM" ;
1905         };
1906         String 3 // Description of Parameter 1
1907         {
1908             Text [ en-US ] = "Nominal Interest" ;
1909         };
1910         String 4 // Name of Parameter 2
1911         {
1912             Text [ en-US ] = "P" ;
1913         };
1914         String 5 // Description of Parameter 2
1915         {
1916             Text [ en-US ] = "Periods. The number of interest payments per year." ;
1917         };
1918     };
1919      // -=*# Resource for function NOMINAL #*=-
1920     Resource SC_OPCODE_NOMINAL
1921     {
1922         String 1 // Description
1923         {
1924             Text [ en-US ] = "Calculates the yearly nominal interest rate as an effective interest rate." ;
1925         };
1926         ExtraData =
1927         {
1928             0;
1929             ID_FUNCTION_GRP_FINANZ;
1930             U2S( HID_FUNC_NOMINAL );
1931             2;  0;  0;
1932             0;
1933         };
1934         String 2 // Name of Parameter 1
1935         {
1936             Text [ en-US ] = "effect_rate" ;
1937         };
1938         String 3 // Description of Parameter 1
1939         {
1940             Text [ en-US ] = "The effective interest rate" ;
1941         };
1942         String 4 // Name of Parameter 2
1943         {
1944             Text [ en-US ] = "npery" ;
1945         };
1946         String 5 // Description of Parameter 2
1947         {
1948             Text [ en-US ] = "Periods. The number of interest payment per year." ;
1949         };
1950     };
1951      // -=*# Resource for function NBW #*=-
1952     Resource SC_OPCODE_NBW
1953     {
1954         String 1 // Description
1955         {
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." ;
1957         };
1958         ExtraData =
1959         {
1960             0;
1961             ID_FUNCTION_GRP_FINANZ;
1962             U2S( HID_FUNC_NBW );
1963             VAR_ARGS+1; 0;  0;
1964             0;
1965         };
1966         String 2 // Name of Parameter 1
1967         {
1968             Text [ en-US ] = "RATE" ;
1969         };
1970         String 3 // Description of Parameter 1
1971         {
1972             Text [ en-US ] = "The rate of discount for one period." ;
1973         };
1974         String 4 // Name of Parameter 2
1975         {
1976             Text [ en-US ] = "value " ;
1977         };
1978         String 5 // Description of Parameter 2
1979         {
1980             Text [ en-US ] = "Value 1, value 2,... are 1 to 30 arguments representing payments and income." ;
1981         };
1982     };
1983      // -=*# Resource for function IKV #*=-
1984     Resource SC_OPCODE_IKV
1985     {
1986         String 1 // Description
1987         {
1988             Text [ en-US ] = "Returns the actuarial rate of interest of an investment excluding costs or profits." ;
1989         };
1990         ExtraData =
1991         {
1992             0;
1993             ID_FUNCTION_GRP_FINANZ;
1994             U2S( HID_FUNC_IKV );
1995             2;  0;  1;
1996             0;
1997         };
1998         String 2 // Name of Parameter 1
1999         {
2000             Text [ en-US ] = "Values" ;
2001         };
2002         String 3 // Description of Parameter 1
2003         {
2004             Text [ en-US ] = "An array or reference to cells whose contents correspond to the payments. " ;
2005         };
2006         String 4 // Name of Parameter 2
2007         {
2008             Text [ en-US ] = "Guess" ;
2009         };
2010         String 5 // Description of Parameter 2
2011         {
2012             Text [ en-US ] = "Guess. An estimated value of the rate of return to be used for the iteration calculation." ;
2013         };
2014     };
2015      // -=*# Resource for function QIKV/MIRR #*=-
2016     Resource SC_OPCODE_MIRR
2017     {
2018         String 1 // Description
2019         {
2020             Text [ en-US ] = "Returns the modified internal rate of return for a series of investments.";
2021         };
2022         ExtraData =
2023         {
2024             0;
2025             ID_FUNCTION_GRP_FINANZ;
2026             U2S( HID_FUNC_QIKV );
2027             3;  0;  0;  0;
2028             0;
2029         };
2030         String 2 // Name of Parameter 1
2031         {
2032             Text [ en-US ] = "Values";
2033         };
2034         String 3 // Description of Parameter 1
2035         {
2036             Text [ en-US ] = "An array or reference to cells whose contents correspond to the payments.";
2037         };
2038         String 4 // Name of Parameter 2
2039         {
2040             Text [ en-US ] = "investment";
2041         };
2042         String 5 // Description of Parameter 2
2043         {
2044             Text [ en-US ] = "Interest rate for investments (the negative values in the array).";
2045         };
2046         String 6 // Name of Parameter 3
2047         {
2048             Text [ en-US ] = "reinvest_rate";
2049         };
2050         String 7 // Description of Parameter 3
2051         {
2052             Text [ en-US ] = "interest rate for reinvestments (the positive values in the array).";
2053         };
2054     };
2055      // -=*# Resource for function ISPMT #*=-
2056     Resource SC_OPCODE_ISPMT
2057     {
2058         String 1 // Description
2059         {
2060             Text [ en-US ] = "Returns the amount of interest for constant amortization rates.";
2061         };
2062         ExtraData =
2063         {
2064             0;
2065             ID_FUNCTION_GRP_FINANZ;
2066             U2S( HID_FUNC_ISPMT );
2067             4;  0;  0;  0;  0;
2068             0;
2069         };
2070         String 2 // Name of Parameter 1
2071         {
2072             Text [ en-US ] = "rate";
2073         };
2074         String 3 // Description of Parameter 1
2075         {
2076             Text [ en-US ] = "Interest rate for a single amortization rate.";
2077         };
2078         String 4 // Name of Parameter 2
2079         {
2080             Text [ en-US ] = "Period";
2081         };
2082         String 5 // Description of Parameter 2
2083         {
2084             Text [ en-US ] = "Number of amortization periods for the calculation of the interest.";
2085         };
2086         String 6 // Name of Parameter 3
2087         {
2088             Text [ en-US ] = "total_periods";
2089         };
2090         String 7 // Description of Parameter 3
2091         {
2092             Text [ en-US ] = "Sum total of amortization periods.";
2093         };
2094         String 8 // Name of Parameter 4
2095         {
2096             Text [ en-US ] = "invest";
2097         };
2098         String 9 // Description of Parameter 4
2099         {
2100             Text [ en-US ] = "Amount of the investment.";
2101         };
2102     };
2103      // -=*# Resource for function LAUFZEIT #*=-
2104     Resource SC_OPCODE_LAUFZ
2105     {
2106         String 1 // Description
2107         {
2108             Text [ en-US ] = "Duration. Calculates the number of periods required by an investment to attain the desired value." ;
2109         };
2110         ExtraData =
2111         {
2112             0;
2113             ID_FUNCTION_GRP_FINANZ;
2114             U2S( HID_FUNC_LAUFZEIT );
2115             3;  0;  0;  0;
2116             0;
2117         };
2118         String 2 // Name of Parameter 1
2119         {
2120             Text [ en-US ] = "RATE" ;
2121         };
2122         String 3 // Description of Parameter 1
2123         {
2124             Text [ en-US ] = "The constant rate of interest." ;
2125         };
2126         String 4 // Name of Parameter 2
2127         {
2128             Text [ en-US ] = "pv" ;
2129         };
2130         String 5 // Description of Parameter 2
2131         {
2132             Text [ en-US ] = "The present value. The current value of the investment." ;
2133         };
2134         String 6 // Name of Parameter 3
2135         {
2136             Text [ en-US ] = "FV" ;
2137         };
2138         String 7 // Description of Parameter 3
2139         {
2140             Text [ en-US ] = "The future value of the investment." ;
2141         };
2142     };
2143      // -=*# Resource for function ZGZ #*=-
2144     Resource SC_OPCODE_ZGZ
2145     {
2146         String 1 // Description
2147         {
2148             Text [ en-US ] = "Interest. Calculates the interest rate which represents the rate of return from an investment." ;
2149         };
2150         ExtraData =
2151         {
2152             0;
2153             ID_FUNCTION_GRP_FINANZ;
2154             U2S( HID_FUNC_ZGZ );
2155             3;  0;  0;  0;
2156             0;
2157         };
2158         String 2 // Name of Parameter 1
2159         {
2160             Text [ en-US ] = "P" ;
2161         };
2162         String 3 // Description of Parameter 1
2163         {
2164             Text [ en-US ] = "The number of periods used in the calculation." ;
2165         };
2166         String 4 // Name of Parameter 2
2167         {
2168             Text [ en-US ] = "pv" ;
2169         };
2170         String 5 // Description of Parameter 2
2171         {
2172             Text [ en-US ] = "Present value. The current value of the investment." ;
2173         };
2174         String 6 // Name of Parameter 3
2175         {
2176             Text [ en-US ] = "FV" ;
2177         };
2178         String 7 // Description of Parameter 3
2179         {
2180             Text [ en-US ] = "The future value of the investment." ;
2181         };
2182     };
2183      // -=*# Resource for function ISTBEZUG #*=-
2184     Resource SC_OPCODE_IS_REF
2185     {
2186         String 1 // Description
2187         {
2188             Text [ en-US ] = "Returns TRUE if value is a reference." ;
2189         };
2190         ExtraData =
2191         {
2192             0;
2193             ID_FUNCTION_GRP_INFO;
2194             U2S( HID_FUNC_ISTBEZUG );
2195             1;  0;
2196             0;
2197         };
2198         String 2 // Name of Parameter 1
2199         {
2200             Text [ en-US ] = "value" ;
2201         };
2202         String 3 // Description of Parameter 1
2203         {
2204             Text [ en-US ] = "The value to be tested." ;
2205         };
2206     };
2207      // -=*# Resource for function ISTFEHL #*=-
2208     Resource SC_OPCODE_IS_ERR
2209     {
2210         String 1 // Description
2211         {
2212             Text [ en-US ] = "Returns TRUE if the value is an error value not equal to #N/A." ;
2213         };
2214         ExtraData =
2215         {
2216             0;
2217             ID_FUNCTION_GRP_INFO;
2218             U2S( HID_FUNC_ISTFEHL );
2219             1;  0;
2220             0;
2221         };
2222         String 2 // Name of Parameter 1
2223         {
2224             Text [ en-US ] = "value" ;
2225         };
2226         String 3 // Description of Parameter 1
2227         {
2228             Text [ en-US ] = "The value to be tested." ;
2229         };
2230     };
2231      // -=*# Resource for function ISTFEHLER #*=-
2232     Resource SC_OPCODE_IS_ERROR
2233     {
2234         String 1 // Description
2235         {
2236             Text [ en-US ] = "Returns TRUE if the value is an error value." ;
2237         };
2238         ExtraData =
2239         {
2240             0;
2241             ID_FUNCTION_GRP_INFO;
2242             U2S( HID_FUNC_ISTFEHLER );
2243             1;  0;
2244             0;
2245         };
2246         String 2 // Name of Parameter 1
2247         {
2248             Text [ en-US ] = "value" ;
2249         };
2250         String 3 // Description of Parameter 1
2251         {
2252             Text [ en-US ] = "The value to be tested." ;
2253         };
2254     };
2255      // -=*# Resource for function ISTLEER #*=-
2256     Resource SC_OPCODE_IS_EMPTY
2257     {
2258         String 1 // Description
2259         {
2260             Text [ en-US ] = "Returns TRUE if value refers to an empty cell." ;
2261         };
2262         ExtraData =
2263         {
2264             0;
2265             ID_FUNCTION_GRP_INFO;
2266             U2S( HID_FUNC_ISTLEER );
2267             1;  0;
2268             0;
2269         };
2270         String 2 // Name of Parameter 1
2271         {
2272             Text [ en-US ] = "value" ;
2273         };
2274         String 3 // Description of Parameter 1
2275         {
2276             Text [ en-US ] = "The value to be tested." ;
2277         };
2278     };
2279      // -=*# Resource for function ISTLOG #*=-
2280     Resource SC_OPCODE_IS_LOGICAL
2281     {
2282         String 1 // Description
2283         {
2284             Text [ en-US ] = "Returns TRUE if the value carries a logical number format." ;
2285         };
2286         ExtraData =
2287         {
2288             0;
2289             ID_FUNCTION_GRP_INFO;
2290             U2S( HID_FUNC_ISTLOG );
2291             1;  0;
2292             0;
2293         };
2294         String 2 // Name of Parameter 1
2295         {
2296             Text [ en-US ] = "value" ;
2297         };
2298         String 3 // Description of Parameter 1
2299         {
2300             Text [ en-US ] = "The value to be tested." ;
2301         };
2302     };
2303      // -=*# Resource for function ISTNV #*=-
2304     Resource SC_OPCODE_IS_NV
2305     {
2306         String 1 // Description
2307         {
2308             Text [ en-US ] = "Returns TRUE if value equals #N/A." ;
2309         };
2310         ExtraData =
2311         {
2312             0;
2313             ID_FUNCTION_GRP_INFO;
2314             U2S( HID_FUNC_ISTNV );
2315             1;  0;
2316             0;
2317         };
2318         String 2 // Name of Parameter 1
2319         {
2320             Text [ en-US ] = "value" ;
2321         };
2322         String 3 // Description of Parameter 1
2323         {
2324             Text [ en-US ] = "The value to be tested." ;
2325         };
2326     };
2327      // -=*# Resource for function ISTKTEXT #*=-
2328     Resource SC_OPCODE_IS_NON_STRING
2329     {
2330         String 1 // Description
2331         {
2332             Text [ en-US ] = "Returns TRUE if the value is not text." ;
2333         };
2334         ExtraData =
2335         {
2336             0;
2337             ID_FUNCTION_GRP_INFO;
2338             U2S( HID_FUNC_ISTKTEXT );
2339             1;  0;
2340             0;
2341         };
2342         String 2 // Name of Parameter 1
2343         {
2344             Text [ en-US ] = "value" ;
2345         };
2346         String 3 // Description of Parameter 1
2347         {
2348             Text [ en-US ] = "The value to be tested." ;
2349         };
2350     };
2351      // -=*# Resource for function ISTTEXT #*=-
2352     Resource SC_OPCODE_IS_STRING
2353     {
2354         String 1 // Description
2355         {
2356             Text [ en-US ] = "Returns TRUE if value is text." ;
2357         };
2358         ExtraData =
2359         {
2360             0;
2361             ID_FUNCTION_GRP_INFO;
2362             U2S( HID_FUNC_ISTTEXT );
2363             1;  0;
2364             0;
2365         };
2366         String 2 // Name of Parameter 1
2367         {
2368             Text [ en-US ] = "value" ;
2369         };
2370         String 3 // Description of Parameter 1
2371         {
2372             Text [ en-US ] = "The value to be tested." ;
2373         };
2374     };
2375      // -=*# Resource for function ISTZAHL #*=-
2376     Resource SC_OPCODE_IS_VALUE
2377     {
2378         String 1 // Description
2379         {
2380             Text [ en-US ] = "Returns TRUE if value is a number." ;
2381         };
2382         ExtraData =
2383         {
2384             0;
2385             ID_FUNCTION_GRP_INFO;
2386             U2S( HID_FUNC_ISTZAHL );
2387             1;  0;
2388             0;
2389         };
2390         String 2 // Name of Parameter 1
2391         {
2392             Text [ en-US ] = "value" ;
2393         };
2394         String 3 // Description of Parameter 1
2395         {
2396             Text [ en-US ] = "The value to be tested." ;
2397         };
2398     };
2399      // -=*# Resource for function ISTFORMEL #*=-
2400     Resource SC_OPCODE_IS_FORMULA
2401     {
2402         String 1 // Description
2403         {
2404             Text [ en-US ] = "Returns TRUE if the cell is a formula cell." ;
2405         };
2406         ExtraData =
2407         {
2408             0;
2409             ID_FUNCTION_GRP_INFO;
2410             U2S( HID_FUNC_ISTFORMEL );
2411             1;  0;
2412             0;
2413         };
2414         String 2 // Name of Parameter 1
2415         {
2416             Text [ en-US ] = "reference" ;
2417         };
2418         String 3 // Description of Parameter 1
2419         {
2420             Text [ en-US ] = "The cell to be checked." ;
2421         };
2422     };
2423      // -=*# Resource for function FORMEL #*=-
2424     Resource SC_OPCODE_FORMULA
2425     {
2426         String 1 // Description
2427         {
2428             Text [ en-US ] = "Returns the formula of a formula cell.";
2429         };
2430         ExtraData =
2431         {
2432             0;
2433             ID_FUNCTION_GRP_INFO;
2434             U2S( HID_FUNC_FORMEL );
2435             1;  0;
2436             0;
2437         };
2438         String 2 // Name of Parameter 1
2439         {
2440             Text [ en-US ] = "Reference";
2441         };
2442         String 3 // Description of Parameter 1
2443         {
2444             Text [ en-US ] = "The formula cell.";
2445         };
2446     };
2447      // -=*# Resource for function N #*=-
2448     Resource SC_OPCODE_N
2449     {
2450         String 1 // Description
2451         {
2452             Text [ en-US ] = "Converts a value to a number." ;
2453         };
2454         ExtraData =
2455         {
2456             0;
2457             ID_FUNCTION_GRP_INFO;
2458             U2S( HID_FUNC_N );
2459             1;  0;
2460             0;
2461         };
2462         String 2 // Name of Parameter 1
2463         {
2464             Text [ en-US ] = "value" ;
2465         };
2466         String 3 // Description of Parameter 1
2467         {
2468             Text [ en-US ] = "The value to be interpreted as a number." ;
2469         };
2470     };
2471      // -=*# Resource for function NV #*=-
2472     Resource SC_OPCODE_NO_VALUE
2473     {
2474         String 1 // Description
2475         {
2476             Text [ en-US ] = "Not available. Returns the error value #N/A." ;
2477         };
2478         ExtraData =
2479         {
2480             0;
2481             ID_FUNCTION_GRP_INFO;
2482             U2S( HID_FUNC_NV );
2483             0;
2484             0;
2485         };
2486     };
2487      // -=*# Resource for function TYP #*=-
2488     Resource SC_OPCODE_TYPE
2489     {
2490         String 1 // Description
2491         {
2492             Text [ en-US ] = "Defines the data type of a value." ;
2493         };
2494         ExtraData =
2495         {
2496             0;
2497             ID_FUNCTION_GRP_INFO;
2498             U2S( HID_FUNC_TYP );
2499             1;  0;
2500             0;
2501         };
2502         String 2 // Name of Parameter 1
2503         {
2504             Text [ en-US ] = "value" ;
2505         };
2506         String 3 // Description of Parameter 1
2507         {
2508             Text [ en-US ] = "The value for which the data type is to be determined." ;
2509         };
2510     };
2511      // -=*# Resource for function CELL/ZELLE #*=-
2512     Resource SC_OPCODE_CELL
2513     {
2514         String 1 // Description
2515         {
2516             Text [ en-US ] = "Determines information about address, formatting or contents of a cell.";
2517         };
2518         ExtraData =
2519         {
2520             0;
2521             ID_FUNCTION_GRP_INFO;
2522             U2S( HID_FUNC_ZELLE );
2523             2;  0;  1;
2524             0;
2525         };
2526         String 2 // Name of Parameter 1
2527         {
2528             Text [ en-US ] = "info_type";
2529         };
2530         String 3 // Description of Parameter 1
2531         {
2532             Text [ en-US ] = "String that specifies the type of information.";
2533         };
2534         String 4 // Name of Parameter 2
2535         {
2536             Text [ en-US ] = "Reference";
2537         };
2538         String 5 // Description of Parameter 2
2539         {
2540             Text [ en-US ] = "The position of the cell you want to examine.";
2541         };
2542     };
2543      // -=*# Resource for function AKTUELL #*=-
2544     Resource SC_OPCODE_CURRENT
2545     {
2546         String 1 // Description
2547         {
2548             Text [ en-US ] = "Calculates the current value of the formula at the present location. " ;
2549         };
2550         ExtraData =
2551         {
2552             0;
2553             ID_FUNCTION_GRP_INFO;
2554             U2S( HID_FUNC_AKTUELL );
2555             0;
2556             0;
2557         };
2558     };
2559      // -=*# Resource for function FALSCH #*=-
2560     Resource SC_OPCODE_FALSE
2561     {
2562         String 1 // Description
2563         {
2564             Text [ en-US ] = "Defines the logical value as FALSE." ;
2565         };
2566         ExtraData =
2567         {
2568             0;
2569             ID_FUNCTION_GRP_LOGIC;
2570             U2S( HID_FUNC_FALSCH );
2571             0;
2572             0;
2573         };
2574     };
2575      // -=*# Resource for function NICHT #*=-
2576     Resource SC_OPCODE_NOT
2577     {
2578         String 1 // Description
2579         {
2580             Text [ en-US ] = "Reverses the value of the argument." ;
2581         };
2582         ExtraData =
2583         {
2584             0;
2585             ID_FUNCTION_GRP_LOGIC;
2586             U2S( HID_FUNC_NICHT );
2587             1;  0;
2588             0;
2589         };
2590         String 2 // Name of Parameter 1
2591         {
2592             Text [ en-US ] = "Logical value" ;
2593         };
2594         String 3 // Description of Parameter 1
2595         {
2596             Text [ en-US ] = "An expression that can be either TRUE or FALSE." ;
2597         };
2598     };
2599      // -=*# Resource for function WAHR #*=-
2600     Resource SC_OPCODE_TRUE
2601     {
2602         String 1 // Description
2603         {
2604             Text [ en-US ] = "Returns the logical value TRUE." ;
2605         };
2606         ExtraData =
2607         {
2608             0;
2609             ID_FUNCTION_GRP_LOGIC;
2610             U2S( HID_FUNC_WAHR );
2611             0;
2612             0;
2613         };
2614     };
2615      // -=*# Resource for function WENN #*=-
2616     Resource SC_OPCODE_IF
2617     {
2618         String 1 // Description
2619         {
2620             Text [ en-US ] = "Specifies a logical test to be performed." ;
2621         };
2622         ExtraData =
2623         {
2624             0;
2625             ID_FUNCTION_GRP_LOGIC;
2626             U2S( HID_FUNC_WENN );
2627             3;  0;  1;  1;
2628             0;
2629         };
2630         String 2 // Name of Parameter 1
2631         {
2632             Text [ en-US ] = "Test" ;
2633         };
2634         String 3 // Description of Parameter 1
2635         {
2636             Text [ en-US ] = "Any value or expression which can be either TRUE or FALSE." ;
2637         };
2638         String 4 // Name of Parameter 2
2639         {
2640             Text [ en-US ] = "Then_value" ;
2641         };
2642         String 5 // Description of Parameter 2
2643         {
2644             Text [ en-US ] = "The result of the function if the logical test returns a TRUE." ;
2645         };
2646         String 6 // Name of Parameter 3
2647         {
2648             Text [ en-US ] = "Otherwise_value" ;
2649         };
2650         String 7 // Description of Parameter 3
2651         {
2652             Text [ en-US ] = "The result of the function if the logical test returns FALSE." ;
2653         };
2654     };
2655      // -=*# Resource for function IFERROR #*=-
2656     Resource SC_OPCODE_IF_ERROR
2657     {
2658         String 1 // Description
2659         {
2660             Text [ en-US ] = "Returns value if not an error value, else alternative." ;
2661         };
2662         ExtraData =
2663         {
2664             0;
2665             ID_FUNCTION_GRP_LOGIC;
2666             U2S( HID_FUNC_IFERROR );
2667             2;  0;  0;
2668             0;
2669         };
2670         String 2 // Name of Parameter 1
2671         {
2672             Text [ en-US ] = "value" ;
2673         };
2674         String 3 // Description of Parameter 1
2675         {
2676             Text [ en-US ] = "The value to be calculated." ;
2677         };
2678         String 4 // Name of Parameter 2
2679         {
2680             Text [ en-US ] = "alternative value" ;
2681         };
2682         String 5 // Description of Parameter 2
2683         {
2684             Text [ en-US ] = "The alternative to be returned, should value be an error value." ;
2685         };
2686     };
2687      // -=*# Resource for function IFNA #*=-
2688     Resource SC_OPCODE_IF_NA
2689     {
2690         String 1 // Description
2691         {
2692             Text [ en-US ] = "Returns value if not a #N/A error, else alternative." ;
2693         };
2694         ExtraData =
2695         {
2696             0;
2697             ID_FUNCTION_GRP_LOGIC;
2698             U2S( HID_FUNC_IFNA );
2699             2;  0;  0;
2700             0;
2701         };
2702         String 2 // Name of Parameter 1
2703         {
2704             Text [ en-US ] = "value" ;
2705         };
2706         String 3 // Description of Parameter 1
2707         {
2708             Text [ en-US ] = "The value to be calculated." ;
2709         };
2710         String 4 // Name of Parameter 2
2711         {
2712             Text [ en-US ] = "alternative value" ;
2713         };
2714         String 5 // Description of Parameter 2
2715         {
2716             Text [ en-US ] = "The alternative to be returned, should value be a #N/A error." ;
2717       };
2718     };
2719      // -=*# Resource for function ODER #*=-
2720     Resource SC_OPCODE_OR
2721     {
2722         String 1 // Description
2723         {
2724             Text [ en-US ] = "Returns TRUE if an argument is TRUE." ;
2725         };
2726         ExtraData =
2727         {
2728             0;
2729             ID_FUNCTION_GRP_LOGIC;
2730             U2S( HID_FUNC_ODER );
2731             VAR_ARGS;   0;
2732             0;
2733         };
2734         String 2 // Name of Parameter 1
2735         {
2736             Text [ en-US ] = "Logical value " ;
2737         };
2738         String 3 // Description of Parameter 1
2739         {
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." ;
2741         };
2742     };
2743      // -=*# Resource for function XOR (EXKLUSIV ODER) #*=-
2744     Resource SC_OPCODE_XOR
2745     {
2746         String 1 // Description
2747         {
2748             Text [ en-US ] = "Returns TRUE if an odd number of arguments evaluates to TRUE." ;
2749         };
2750         ExtraData =
2751         {
2752             0;
2753             ID_FUNCTION_GRP_LOGIC;
2754             U2S( HID_FUNC_XOR );
2755             VAR_ARGS;  0;
2756             0;
2757         };
2758         String 2 // Name of Parameter 1
2759         {
2760             Text [ en-US ] = "Logical value " ;
2761         };
2762         String 3 // Description of Parameter 1
2763         {
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." ;
2765         };
2766     };
2767      // -=*# Resource for function UND #*=-
2768     Resource SC_OPCODE_AND
2769     {
2770         String 1 // Description
2771         {
2772             Text [ en-US ] = "Returns TRUE if all arguments are TRUE." ;
2773         };
2774         ExtraData =
2775         {
2776             0;
2777             ID_FUNCTION_GRP_LOGIC;
2778             U2S( HID_FUNC_UND );
2779             VAR_ARGS;   0;
2780             0;
2781         };
2782         String 2 // Name of Parameter 1
2783         {
2784             Text [ en-US ] = "Logical value " ;
2785         };
2786         String 3 // Description of Parameter 1
2787         {
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." ;
2789         };
2790     };
2791      // -=*# Resource for function ABS #*=-
2792     Resource SC_OPCODE_ABS
2793     {
2794         String 1 // Description
2795         {
2796             Text [ en-US ] = "Absolute value of a number." ;
2797         };
2798         ExtraData =
2799         {
2800             0;
2801             ID_FUNCTION_GRP_MATH;
2802             U2S( HID_FUNC_ABS );
2803             1;  0;
2804             0;
2805         };
2806         String 2 // Name of Parameter 1
2807         {
2808             Text [ en-US ] = "Number" ;
2809         };
2810         String 3 // Description of Parameter 1
2811         {
2812             Text [ en-US ] = "The number whose absolute value is to be returned." ;
2813         };
2814     };
2815      // -=*# Resource for function POTENZ #*=-
2816     Resource SC_OPCODE_POWER
2817     {
2818         String 1 // Description
2819         {
2820             Text [ en-US ] = "Returns a^b, base a raised to the power of exponent b." ;
2821         };
2822         ExtraData =
2823         {
2824             0;
2825             ID_FUNCTION_GRP_MATH;
2826             U2S( HID_FUNC_POTENZ );
2827             2;  0;  0;
2828             0;
2829         };
2830         String 2 // Name of Parameter 1
2831         {
2832             Text [ en-US ] = "Base" ;
2833         };
2834         String 3 // Description of Parameter 1
2835         {
2836             Text [ en-US ] = "The base a of the power a^b." ;
2837         };
2838         String 4 // Name of Parameter 2
2839         {
2840             Text [ en-US ] = "Exponent" ;
2841         };
2842         String 5 // Description of Parameter 2
2843         {
2844             Text [ en-US ] = "The exponent b of the power a^b." ;
2845         };
2846     };
2847      // -=*# Resource for function ANZAHLLEEREZELLEN #*=-
2848     Resource SC_OPCODE_COUNT_EMPTY_CELLS
2849     {
2850         String 1 // Description
2851         {
2852             Text [ en-US ] = "Counts the blank cells in a specified range." ;
2853         };
2854         ExtraData =
2855         {
2856             0;
2857             ID_FUNCTION_GRP_STATISTIC;
2858             U2S( HID_FUNC_ANZAHLLEEREZELLEN );
2859             1;  0;
2860             0;
2861         };
2862         String 2 // Name of Parameter 1
2863         {
2864             Text [ en-US ] = "range" ;
2865         };
2866         String 3 // Description of Parameter 1
2867         {
2868             Text [ en-US ] = "The range in which empty cells are to be counted." ;
2869         };
2870     };
2871      // -=*# Resource for function PI #*=-
2872     Resource SC_OPCODE_PI
2873     {
2874         String 1 // Description
2875         {
2876             Text [ en-US ] = "Returns the value of the number Pi." ;
2877         };
2878         ExtraData =
2879         {
2880             0;
2881             ID_FUNCTION_GRP_MATH;
2882             U2S( HID_FUNC_PI );
2883             0;
2884             0;
2885         };
2886     };
2887      // -=*# Resource for function SUMME #*=-
2888     Resource SC_OPCODE_SUM
2889     {
2890         String 1 // Description
2891         {
2892             Text [ en-US ] = "Returns the sum of all arguments." ;
2893         };
2894         ExtraData =
2895         {
2896             0;
2897             ID_FUNCTION_GRP_MATH;
2898             U2S( HID_FUNC_SUMME );
2899             VAR_ARGS;   0;
2900             0;
2901         };
2902         String 2 // Name of Parameter 1
2903         {
2904             Text [ en-US ] = "number " ;
2905         };
2906         String 3 // Description of Parameter 1
2907         {
2908             Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 arguments whose total is to be calculated." ;
2909         };
2910     };
2911      // -=*# Resource for function QUADRATESUMME #*=-
2912     Resource SC_OPCODE_SUM_SQ
2913     {
2914         String 1 // Description
2915         {
2916             Text [ en-US ] = "Returns the sum of the squares of the arguments." ;
2917         };
2918         ExtraData =
2919         {
2920             0;
2921             ID_FUNCTION_GRP_MATH;
2922             U2S( HID_FUNC_QUADRATESUMME );
2923             VAR_ARGS;   0;
2924             0;
2925         };
2926         String 2 // Name of Parameter 1
2927         {
2928             Text [ en-US ] = "number " ;
2929         };
2930         String 3 // Description of Parameter 1
2931         {
2932             Text [ en-US ] = "Number 1, number 2,... are 1 to 30 arguments for which the sum of the squares is to be calculated." ;
2933         };
2934     };
2935      // -=*# Resource for function PRODUKT #*=-
2936     Resource SC_OPCODE_PRODUCT
2937     {
2938         String 1 // Description
2939         {
2940             Text [ en-US ] = "Multiplies the arguments." ;
2941         };
2942         ExtraData =
2943         {
2944             0;
2945             ID_FUNCTION_GRP_MATH;
2946             U2S( HID_FUNC_PRODUKT );
2947             VAR_ARGS;   0;
2948             0;
2949         };
2950         String 2 // Name of Parameter 1
2951         {
2952             Text [ en-US ] = "Number " ;
2953         };
2954         String 3 // Description of Parameter 1
2955         {
2956             Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 arguments to be multiplied and a result returned." ;
2957         };
2958     };
2959      // -=*# Resource for function SUMMEWENN #*=-
2960     Resource SC_OPCODE_SUM_IF
2961     {
2962         String 1 // Description
2963         {
2964             Text [ en-US ] = "Totals the arguments that meet the conditions." ;
2965         };
2966         ExtraData =
2967         {
2968             0;
2969             ID_FUNCTION_GRP_MATH;
2970             U2S( HID_FUNC_SUMMEWENN );
2971             3;  0;  0;  1;
2972             0;
2973         };
2974         String 2 // Name of Parameter 1
2975         {
2976             Text [ en-US ] = "range" ;
2977         };
2978         String 3 // Description of Parameter 1
2979         {
2980             Text [ en-US ] = "The range to be evaluated by the criteria given." ;
2981         };
2982         String 4 // Name of Parameter 2
2983         {
2984             Text [ en-US ] = "criteria" ;
2985         };
2986         String 5 // Description of Parameter 2
2987         {
2988             Text [ en-US ] = "The criteria to be applied to the range." ;
2989         };
2990         String 6 // Name of Parameter 3
2991         {
2992             Text [ en-US ] = "sum_range" ;
2993         };
2994         String 7 // Description of Parameter 3
2995         {
2996             Text [ en-US ] = "The range from which the values are to be totalled." ;
2997         };
2998     };
3000     // -=*# Resource for function AVERAGEIF #*=-
3001     Resource SC_OPCODE_AVERAGE_IF
3002     {
3003         String 1 // Description
3004         {
3005             Text [ en-US ] = "Averages the arguments that meet the conditions." ;
3006         };
3007         ExtraData =
3008         {
3009             0;
3010             ID_FUNCTION_GRP_STATISTIC;
3011             U2S( HID_FUNC_AVERAGEIF );
3012             3;  0;  0;  1;
3013             0;
3014         };
3015         String 2 // Name of Parameter 1
3016         {
3017             Text [ en-US ] = "range" ;
3018         };
3019         String 3 // Description of Parameter 1
3020         {
3021             Text [ en-US ] = "The range to be evaluated by the criteria given." ;
3022         };
3023         String 4 // Name of Parameter 2
3024         {
3025             Text [ en-US ] = "criteria" ;
3026         };
3027         String 5 // Description of Parameter 2
3028         {
3029             Text [ en-US ] = "The criteria to be applied to the range." ;
3030         };
3031         String 6 // Name of Parameter 3
3032         {
3033             Text [ en-US ] = "average_range" ;
3034         };
3035         String 7 // Description of Parameter 3
3036         {
3037             Text [ en-US ] = "The range from which the values are to be averaged." ;
3038         };
3039     };
3041     Resource SC_OPCODE_SUM_IFS
3042     {
3043         String 1 // Description
3044         {
3045             Text [ en-US ] = "Totals the values of cells in a range that meet multiple criteria in multiple ranges." ;
3046         };
3047         ExtraData =
3048         {
3049             0;
3050             ID_FUNCTION_GRP_MATH;
3051             U2S( HID_FUNC_SUMIFS );
3052             PAIRED_VAR_ARGS+1;  0;  0;  0;
3053             0;
3054         };
3055         String 2 // Name of Parameter 1
3056         {
3057             Text [ en-US ] = "sum_range" ;
3058         };
3059         String 3 // Description of Parameter 1
3060         {
3061             Text [ en-US ] = "The range from which the values are to be totalled." ;
3062         };
3063         String 4 // Name of Parameter 2
3064         {
3065             Text [ en-US ] = "range " ;
3066         };
3067         String 5 // Description of Parameter 2
3068         {
3069             Text [ en-US ] = "Range 1, range 2,... are the ranges to be evaluated by the criteria given." ;
3070         };
3071         String 6 // Name of Parameter 3
3072         {
3073             Text [ en-US ] = "criteria " ;
3074         };
3075         String 7 // Description of Parameter 3
3076         {
3077             Text [ en-US ] = "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given." ;
3078         };
3079     };
3081     // -=*# Resource for function AVERAGEIFS #*=-
3082     Resource SC_OPCODE_AVERAGE_IFS
3083     {
3084         String 1 // Description
3085         {
3086             Text [ en-US ] = "Averages the value of the cells that meet multiple criteria in multiple ranges." ;
3087         };
3088         ExtraData =
3089         {
3090             0;
3091             ID_FUNCTION_GRP_STATISTIC;
3092             U2S( HID_FUNC_AVERAGEIFS );
3093             PAIRED_VAR_ARGS+1;  0;  0;  0;
3094             0;
3095         };
3096         String 2 // Name of Parameter 1
3097         {
3098             Text [ en-US ] = "average_range" ;
3099         };
3100         String 3 // Description of Parameter 1
3101         {
3102             Text [ en-US ] = "The range from which the values are to be averaged." ;
3103         };
3104         String 4 // Name of Parameter 2
3105         {
3106             Text [ en-US ] = "range " ;
3107         };
3108         String 5 // Description of Parameter 2
3109         {
3110             Text [ en-US ] = "Range 1, range 2,... are the ranges to be evaluated by the criteria given." ;
3111         };
3112         String 6 // Name of Parameter 3
3113         {
3114             Text [ en-US ] = "criteria " ;
3115         };
3116         String 7 // Description of Parameter 3
3117         {
3118             Text [ en-US ] = "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given." ;
3119         };
3120     };
3122     // -=*# Resource for function COUNTIFS #*=-
3123     Resource SC_OPCODE_COUNT_IFS
3124     {
3125         String 1 // Description
3126         {
3127             Text [ en-US ] = "Counts the cells that meet multiple criteria in multiple ranges." ;
3128         };
3129         ExtraData =
3130         {
3131             0;
3132             ID_FUNCTION_GRP_STATISTIC;
3133             U2S( HID_FUNC_COUNTIFS );
3134             PAIRED_VAR_ARGS;    0;  0;
3135             0;
3136         };
3137         String 2 // Name of Parameter 1
3138         {
3139             Text [ en-US ] = "range " ;
3140         };
3141         String 3 // Description of Parameter 1
3142         {
3143             Text [ en-US ] = "Range 1, range 2,... are the ranges to be evaluated by the criteria given." ;
3144         };
3145         String 4 // Name of Parameter 2
3146         {
3147             Text [ en-US ] = "criteria " ;
3148         };
3149         String 5 // Description of Parameter 2
3150         {
3151             Text [ en-US ] = "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given." ;
3152         };
3153     };
3155      // -=*# Resource for function ZÄHLENWENN #*=-
3156     Resource SC_OPCODE_COUNT_IF
3157     {
3158         String 1 // Description
3159         {
3160             Text [ en-US ] = "Counts the arguments which meet the set conditions." ;
3161         };
3162         ExtraData =
3163         {
3164             0;
3165             ID_FUNCTION_GRP_STATISTIC;
3166             U2S( HID_FUNC_ZAEHLENWENN );
3167             2;  0;  0;
3168             0;
3169         };
3170         String 2 // Name of Parameter 1
3171         {
3172             Text [ en-US ] = "range" ;
3173         };
3174         String 3 // Description of Parameter 1
3175         {
3176             Text [ en-US ] = "The range of cells to be evaluated by the criteria given." ;
3177         };
3178         String 4 // Name of Parameter 2
3179         {
3180             Text [ en-US ] = "criteria" ;
3181         };
3182         String 5 // Description of Parameter 2
3183         {
3184             Text [ en-US ] = "The criteria to be applied to the range." ;
3185         };
3186     };
3187      // -=*# Resource for function WURZEL #*=-
3188     Resource SC_OPCODE_SQRT
3189     {
3190         String 1 // Description
3191         {
3192             Text [ en-US ] = "Returns the square root of a number." ;
3193         };
3194         ExtraData =
3195         {
3196             0;
3197             ID_FUNCTION_GRP_MATH;
3198             U2S( HID_FUNC_WURZEL );
3199             1;  0;
3200             0;
3201         };
3202         String 2 // Name of Parameter 1
3203         {
3204             Text [ en-US ] = "number" ;
3205         };
3206         String 3 // Description of Parameter 1
3207         {
3208             Text [ en-US ] = "A positive value for which the square root is to be calculated." ;
3209         };
3210     };
3211      // -=*# Resource for function ZUFALLSZAHL #*=-
3212     Resource SC_OPCODE_RANDOM
3213     {
3214         String 1 // Description
3215         {
3216             Text [ en-US ] = "Returns a random number between 0 and 1." ;
3217         };
3218         ExtraData =
3219         {
3220             0;
3221             ID_FUNCTION_GRP_MATH;
3222             U2S( HID_FUNC_ZUFALLSZAHL );
3223             0;
3224             0;
3225         };
3226     };
3227      // -=*# Resource for function ISTGERADE #*=-
3228     Resource SC_OPCODE_IS_EVEN
3229     {
3230         String 1 // Description
3231         {
3232             Text [ en-US ] = "Returns TRUE if value is an even integer." ;
3233         };
3234         ExtraData =
3235         {
3236             0;
3237             ID_FUNCTION_GRP_MATH;
3238             U2S( HID_FUNC_ISTGERADE );
3239             1;  0;
3240             0;
3241         };
3242         String 2 // Name of Parameter 1
3243         {
3244             Text [ en-US ] = "value" ;
3245         };
3246         String 3 // Description of Parameter 1
3247         {
3248             Text [ en-US ] = "The value to be tested." ;
3249         };
3250     };
3251      // -=*# Resource for function ISTUNGERADE #*=-
3252     Resource SC_OPCODE_IS_ODD
3253     {
3254         String 1 // Description
3255         {
3256             Text [ en-US ] = "Returns TRUE if value is an odd integer." ;
3257         };
3258         ExtraData =
3259         {
3260             0;
3261             ID_FUNCTION_GRP_MATH;
3262             U2S( HID_FUNC_ISTUNGERADE );
3263             1;  0;
3264             0;
3265         };
3266         String 2 // Name of Parameter 1
3267         {
3268             Text [ en-US ] = "value" ;
3269         };
3270         String 3 // Description of Parameter 1
3271         {
3272             Text [ en-US ] = "The value to be tested." ;
3273         };
3274     };
3275      // -=*# Resource for function KOMBINATIONEN #*=-
3276     Resource SC_OPCODE_KOMBIN
3277     {
3278         String 1 // Description
3279         {
3280             Text [ en-US ] = "Calculates the number of combinations for elements without repetition." ;
3281         };
3282         ExtraData =
3283         {
3284             0;
3285             ID_FUNCTION_GRP_MATH;
3286             U2S( HID_FUNC_KOMBINATIONEN );
3287             2;  0;  0;
3288             0;
3289         };
3290         String 2 // Name of Parameter 1
3291         {
3292             Text [ en-US ] = "number_1" ;
3293         };
3294         String 3 // Description of Parameter 1
3295         {
3296             Text [ en-US ] = "The total number of elements." ;
3297         };
3298         String 4 // Name of Parameter 2
3299         {
3300             Text [ en-US ] = "number_2" ;
3301         };
3302         String 5 // Description of Parameter 2
3303         {
3304             Text [ en-US ] = "The number of elements selected." ;
3305         };
3306     };
3307      // -=*# Resource for function KOMBINATIONEN2 #*=-
3308     Resource SC_OPCODE_KOMBIN_2
3309     {
3310         String 1 // Description
3311         {
3312             Text [ en-US ] = "Calculates the number of combinations of elements including repetition." ;
3313         };
3314         ExtraData =
3315         {
3316             0;
3317             ID_FUNCTION_GRP_MATH;
3318             U2S( HID_FUNC_KOMBINATIONEN2 );
3319             2;  0;  0;
3320             0;
3321         };
3322         String 2 // Name of Parameter 1
3323         {
3324             Text [ en-US ] = "number_1" ;
3325         };
3326         String 3 // Description of Parameter 1
3327         {
3328             Text [ en-US ] = "The total number of elements." ;
3329         };
3330         String 4 // Name of Parameter 2
3331         {
3332             Text [ en-US ] = "number_2" ;
3333         };
3334         String 5 // Description of Parameter 2
3335         {
3336             Text [ en-US ] = "The number of elements selected." ;
3337         };
3338     };
3339      // -=*# Resource for function ARCCOS #*=-
3340     Resource SC_OPCODE_ARC_COS
3341     {
3342         String 1 // Description
3343         {
3344             Text [ en-US ] = "Returns the arccosine of a number." ;
3345         };
3346         ExtraData =
3347         {
3348             0;
3349             ID_FUNCTION_GRP_MATH;
3350             U2S( HID_FUNC_ARCCOS );
3351             1;  0;
3352             0;
3353         };
3354         String 2 // Name of Parameter 1
3355         {
3356             Text [ en-US ] = "Number" ;
3357         };
3358         String 3 // Description of Parameter 1
3359         {
3360             Text [ en-US ] = "A value between -1 and 1 for which the arccosine is to be returned." ;
3361         };
3362     };
3363      // -=*# Resource for function ARCSIN #*=-
3364     Resource SC_OPCODE_ARC_SIN
3365     {
3366         String 1 // Description
3367         {
3368             Text [ en-US ] = "Returns the arcsine of a number." ;
3369         };
3370         ExtraData =
3371         {
3372             0;
3373             ID_FUNCTION_GRP_MATH;
3374             U2S( HID_FUNC_ARCSIN );
3375             1;  0;
3376             0;
3377         };
3378         String 2 // Name of Parameter 1
3379         {
3380             Text [ en-US ] = "Number" ;
3381         };
3382         String 3 // Description of Parameter 1
3383         {
3384             Text [ en-US ] = "A value between -1 and 1 for which the arcsine is to be returned." ;
3385         };
3386     };
3387      // -=*# Resource for function ARCCOSHYP #*=-
3388     Resource SC_OPCODE_ARC_COS_HYP
3389     {
3390         String 1 // Description
3391         {
3392             Text [ en-US ] = "Returns the inverse hyperbolic cosine of a number." ;
3393         };
3394         ExtraData =
3395         {
3396             0;
3397             ID_FUNCTION_GRP_MATH;
3398             U2S( HID_FUNC_ARCOSHYP );
3399             1;  0;
3400             0;
3401         };
3402         String 2 // Name of Parameter 1
3403         {
3404             Text [ en-US ] = "Number" ;
3405         };
3406         String 3 // Description of Parameter 1
3407         {
3408             Text [ en-US ] = "A value greater than or equal to 1 for which the inverse hyperbolic cosine is to be returned." ;
3409         };
3410     };
3411      // -=*# Resource for function ARCSINHYP #*=-
3412     Resource SC_OPCODE_ARC_SIN_HYP
3413     {
3414         String 1 // Description
3415         {
3416             Text [ en-US ] = "Returns the inverse hyperbolic sine of a number." ;
3417         };
3418         ExtraData =
3419         {
3420             0;
3421             ID_FUNCTION_GRP_MATH;
3422             U2S( HID_FUNC_ARSINHYP );
3423             1;  0;
3424             0;
3425         };
3426         String 2 // Name of Parameter 1
3427         {
3428             Text [ en-US ] = "Number" ;
3429         };
3430         String 3 // Description of Parameter 1
3431         {
3432             Text [ en-US ] = "The value for which the inverse hyperbolic sine is to be returned." ;
3433         };
3434     };
3435      // -=*# Resource for function ARCCOT #*=-
3436     Resource SC_OPCODE_ARC_COT
3437     {
3438         String 1 // Description
3439         {
3440             Text [ en-US ] = "Returns the inverse cotangent of a number." ;
3441         };
3442         ExtraData =
3443         {
3444             0;
3445             ID_FUNCTION_GRP_MATH;
3446             U2S( HID_FUNC_ARCCOT );
3447             1;  0;
3448             0;
3449         };
3450         String 2 // Name of Parameter 1
3451         {
3452             Text [ en-US ] = "Number" ;
3453         };
3454         String 3 // Description of Parameter 1
3455         {
3456             Text [ en-US ] = "The value for which the inverse cotangent is to be returned." ;
3457         };
3458     };
3459      // -=*# Resource for function ARCTAN #*=-
3460     Resource SC_OPCODE_ARC_TAN
3461     {
3462         String 1 // Description
3463         {
3464             Text [ en-US ] = "Returns the arctangent of a number." ;
3465         };
3466         ExtraData =
3467         {
3468             0;
3469             ID_FUNCTION_GRP_MATH;
3470             U2S( HID_FUNC_ARCTAN );
3471             1;  0;
3472             0;
3473         };
3474         String 2 // Name of Parameter 1
3475         {
3476             Text [ en-US ] = "Number" ;
3477         };
3478         String 3 // Description of Parameter 1
3479         {
3480             Text [ en-US ] = "The value for which the arctangent is to be returned." ;
3481         };
3482     };
3483      // -=*# Resource for function ARCCOTHYP #*=-
3484     Resource SC_OPCODE_ARC_COT_HYP
3485     {
3486         String 1 // Description
3487         {
3488             Text [ en-US ] = "Returns the inverse hyperbolic cotangent of a number." ;
3489         };
3490         ExtraData =
3491         {
3492             0;
3493             ID_FUNCTION_GRP_MATH;
3494             U2S( HID_FUNC_ARCOTHYP );
3495             1;  0;
3496             0;
3497         };
3498         String 2 // Name of Parameter 1
3499         {
3500             Text [ en-US ] = "Number" ;
3501         };
3502         String 3 // Description of Parameter 1
3503         {
3504             Text [ en-US ] = "A value smaller than -1 or greater than 1 for which the inverse hyperbolic cotangent is to be returned." ;
3505         };
3506     };
3507      // -=*# Resource for function ARCTANHYP #*=-
3508     Resource SC_OPCODE_ARC_TAN_HYP
3509     {
3510         String 1 // Description
3511         {
3512             Text [ en-US ] = "Returns the inverse hyperbolic tangent of a number." ;
3513         };
3514         ExtraData =
3515         {
3516             0;
3517             ID_FUNCTION_GRP_MATH;
3518             U2S( HID_FUNC_ARTANHYP );
3519             1;  0;
3520             0;
3521         };
3522         String 2 // Name of Parameter 1
3523         {
3524             Text [ en-US ] = "Number" ;
3525         };
3526         String 3 // Description of Parameter 1
3527         {
3528             Text [ en-US ] = "A value between -1 and 1 for which the inverse hyperbolic tangent is to be returned." ;
3529         };
3530     };
3531      // -=*# Resource for function COS #*=-
3532     Resource SC_OPCODE_COS
3533     {
3534         String 1 // Description
3535         {
3536             Text [ en-US ] = "Returns the cosine of a number." ;
3537         };
3538         ExtraData =
3539         {
3540             0;
3541             ID_FUNCTION_GRP_MATH;
3542             U2S( HID_FUNC_COS );
3543             1;  0;
3544             0;
3545         };
3546         String 2 // Name of Parameter 1
3547         {
3548             Text [ en-US ] = "Number" ;
3549         };
3550         String 3 // Description of Parameter 1
3551         {
3552             Text [ en-US ] = "The angle in the radians for which the cosine is to be returned." ;
3553         };
3554     };
3555      // -=*# Resource for function SIN #*=-
3556     Resource SC_OPCODE_SIN
3557     {
3558         String 1 // Description
3559         {
3560             Text [ en-US ] = "Returns the sine of a number." ;
3561         };
3562         ExtraData =
3563         {
3564             0;
3565             ID_FUNCTION_GRP_MATH;
3566             U2S( HID_FUNC_SIN );
3567             1;  0;
3568             0;
3569         };
3570         String 2 // Name of Parameter 1
3571         {
3572             Text [ en-US ] = "number" ;
3573         };
3574         String 3 // Description of Parameter 1
3575         {
3576             Text [ en-US ] = "The angle in radians for which the sine is to be calculated." ;
3577         };
3578     };
3579      // -=*# Resource for function COT #*=-
3580     Resource SC_OPCODE_COT
3581     {
3582         String 1 // Description
3583         {
3584             Text [ en-US ] = "Returns the cotangent of a number." ;
3585         };
3586         ExtraData =
3587         {
3588             0;
3589             ID_FUNCTION_GRP_MATH;
3590             U2S( HID_FUNC_COT );
3591             1;  0;
3592             0;
3593         };
3594         String 2 // Name of Parameter 1
3595         {
3596             Text [ en-US ] = "Number" ;
3597         };
3598         String 3 // Description of Parameter 1
3599         {
3600             Text [ en-US ] = "The angle in radians whose cotangent value is to be returned." ;
3601         };
3602     };
3603      // -=*# Resource for function TAN #*=-
3604     Resource SC_OPCODE_TAN
3605     {
3606         String 1 // Description
3607         {
3608             Text [ en-US ] = "Returns the tangent of a number." ;
3609         };
3610         ExtraData =
3611         {
3612             0;
3613             ID_FUNCTION_GRP_MATH;
3614             U2S( HID_FUNC_TAN );
3615             1;  0;
3616             0;
3617         };
3618         String 2 // Name of Parameter 1
3619         {
3620             Text [ en-US ] = "number" ;
3621         };
3622         String 3 // Description of Parameter 1
3623         {
3624             Text [ en-US ] = "The angle in radians for which the tangent is to be calculated." ;
3625         };
3626     };
3627      // -=*# Resource for function COSHYP #*=-
3628     Resource SC_OPCODE_COS_HYP
3629     {
3630         String 1 // Description
3631         {
3632             Text [ en-US ] = "Returns the hyperbolic cosine of a number." ;
3633         };
3634         ExtraData =
3635         {
3636             0;
3637             ID_FUNCTION_GRP_MATH;
3638             U2S( HID_FUNC_COSHYP );
3639             1;  0;
3640             0;
3641         };
3642         String 2 // Name of Parameter 1
3643         {
3644             Text [ en-US ] = "Number" ;
3645         };
3646         String 3 // Description of Parameter 1
3647         {
3648             Text [ en-US ] = "The value for which the hyperbolic cosine is to be returned." ;
3649         };
3650     };
3651      // -=*# Resource for function SINHYP #*=-
3652     Resource SC_OPCODE_SIN_HYP
3653     {
3654         String 1 // Description
3655         {
3656             Text [ en-US ] = "Returns the hyperbolic sine of a number." ;
3657         };
3658         ExtraData =
3659         {
3660             0;
3661             ID_FUNCTION_GRP_MATH;
3662             U2S( HID_FUNC_SINHYP );
3663             1;  0;
3664             0;
3665         };
3666         String 2 // Name of Parameter 1
3667         {
3668             Text [ en-US ] = "number" ;
3669         };
3670         String 3 // Description of Parameter 1
3671         {
3672             Text [ en-US ] = "The value for which the hyperbolic sine is to be calculated." ;
3673         };
3674     };
3675      // -=*# Resource for function COTHYP #*=-
3676     Resource SC_OPCODE_COT_HYP
3677     {
3678         String 1 // Description
3679         {
3680             Text [ en-US ] = "Returns the hyperbolic cotangent of a number." ;
3681         };
3682         ExtraData =
3683         {
3684             0;
3685             ID_FUNCTION_GRP_MATH;
3686             U2S( HID_FUNC_COTHYP );
3687             1;  0;
3688             0;
3689         };
3690         String 2 // Name of Parameter 1
3691         {
3692             Text [ en-US ] = "Number" ;
3693         };
3694         String 3 // Description of Parameter 1
3695         {
3696             Text [ en-US ] = "A value not equal to 0 for which the hyperbolic cotangent is to be returned." ;
3697         };
3698     };
3699      // -=*# Resource for function TANHYP #*=-
3700     Resource SC_OPCODE_TAN_HYP
3701     {
3702         String 1 // Description
3703         {
3704             Text [ en-US ] = "Returns the hyperbolic tangent of a number." ;
3705         };
3706         ExtraData =
3707         {
3708             0;
3709             ID_FUNCTION_GRP_MATH;
3710             U2S( HID_FUNC_TANHYP );
3711             1;  0;
3712             0;
3713         };
3714         String 2 // Name of Parameter 1
3715         {
3716             Text [ en-US ] = "number" ;
3717         };
3718         String 3 // Description of Parameter 1
3719         {
3720             Text [ en-US ] = "The value for which the hyperbolic tangent is to be calculated." ;
3721         };
3722     };
3723      // -=*# Resource for function ARCTAN2 #*=-
3724     Resource SC_OPCODE_ARC_TAN_2
3725     {
3726         String 1 // Description
3727         {
3728             Text [ en-US ] = "Returns the arctangent for the specified coordinates." ;
3729         };
3730         ExtraData =
3731         {
3732             0;
3733             ID_FUNCTION_GRP_MATH;
3734             U2S( HID_FUNC_ARCTAN2 );
3735             2;  0;  0;
3736             0;
3737         };
3738         String 2 // Name of Parameter 1
3739         {
3740             Text [ en-US ] = "number_x" ;
3741         };
3742         String 3 // Description of Parameter 1
3743         {
3744             Text [ en-US ] = "The value for the x coordinate." ;
3745         };
3746         String 4 // Name of Parameter 2
3747         {
3748             Text [ en-US ] = "number_y" ;
3749         };
3750         String 5 // Description of Parameter 2
3751         {
3752             Text [ en-US ] = "The value for the y coordinate." ;
3753         };
3754     };
3756     // -=*# Resource for function CSC #*=-
3757     Resource SC_OPCODE_COSECANT
3758     {
3759         String 1 // Description
3760         {
3761             Text [ en-US ] = "Return the cosecant of an angle. CSC(x)=1/SIN(x)" ;
3762         };
3763         ExtraData =
3764         {
3765             0;
3766             ID_FUNCTION_GRP_MATH;
3767             U2S( HID_FUNC_COSECANT );
3768             1; 0;
3769             0;
3770         };
3771         String 2 // Name of Parameter 1
3772         {
3773             Text [ en-US ] = "Angle" ;
3774         };
3775         String 3 // Description of Parameter 1
3776         {
3777             Text [ en-US ] = "The angle in radians for which the cosecant is to be calculated." ;
3778         };
3779     };
3781     // -=*# Resource for function SEC #*=-
3782     Resource SC_OPCODE_SECANT
3783     {
3784         String 1 // Description
3785         {
3786             Text [ en-US ] = "Return the secant of an angle. SEC(x)=1/COS(x)" ;
3787         };
3788         ExtraData =
3789         {
3790             0;
3791             ID_FUNCTION_GRP_MATH;
3792             U2S( HID_FUNC_SECANT );
3793             1; 0;
3794             0;
3795         };
3796         String 2 // Name of Parameter 1
3797         {
3798             Text [ en-US ] = "Angle" ;
3799         };
3800         String 3 // Description of Parameter 1
3801         {
3802             Text [ en-US ] = "The angle in radians for which the secant is to be calculated." ;
3803         };
3804     };
3805     // -=*# Resource for function CSCH #*=-
3806     Resource SC_OPCODE_COSECANT_HYP
3807     {
3808         String 1 // Description
3809         {
3810             Text [ en-US ] = "Return the hyperbolic cosecant of a hyperbolic angle. CSCH(x)=1/SINH(x)" ;
3811         };
3812         ExtraData =
3813         {
3814             0;
3815             ID_FUNCTION_GRP_MATH;
3816             U2S( HID_FUNC_COSECANTHYP );
3817             1; 0;
3818             0;
3819         };
3820         String 2 // Name of Parameter 1
3821         {
3822             Text [ en-US ] = "Angle" ;
3823         };
3824         String 3 // Description of Parameter 1
3825         {
3826             Text [ en-US ] = "The hyperbolic angle in radians for which the hyperbolic cosecant is to be calculated." ;
3827         };
3828     };
3829     // -=*# Resource for function SECH #*=-
3830     Resource SC_OPCODE_SECANT_HYP
3831     {
3832         String 1 // Description
3833         {
3834             Text [ en-US ] = "Return the hyperbolic secant of a hyperbolic angle. SECH(x)=1/COSH(x)" ;
3835         };
3836         ExtraData =
3837         {
3838             0;
3839             ID_FUNCTION_GRP_MATH;
3840             U2S( HID_FUNC_SECANTHYP );
3841             1; 0;
3842             0;
3843         };
3844         String 2 // Name of Parameter 1
3845         {
3846             Text [ en-US ] = "Angle" ;
3847         };
3848         String 3 // Description of Parameter 1
3849         {
3850             Text [ en-US ] = "The hyperbolic angle in radians for which the hyperbolic secant is to be calculated." ;
3851         };
3852     };
3854      // -=*# Resource for function DEG #*=-
3855     Resource SC_OPCODE_DEG
3856     {
3857         String 1 // Description
3858         {
3859             Text [ en-US ] = "Converts a radian to degrees" ;
3860         };
3861         ExtraData =
3862         {
3863             0;
3864             ID_FUNCTION_GRP_MATH;
3865             U2S( HID_FUNC_DEG );
3866             1;  0;
3867             0;
3868         };
3869         String 2 // Name of Parameter 1
3870         {
3871             Text [ en-US ] = "Number" ;
3872         };
3873         String 3 // Description of Parameter 1
3874         {
3875             Text [ en-US ] = "The angle in a radian" ;
3876         };
3877     };
3878      // -=*# Resource for function RAD #*=-
3879     Resource SC_OPCODE_RAD
3880     {
3881         String 1 // Description
3882         {
3883             Text [ en-US ] = "Converts degrees to radians" ;
3884         };
3885         ExtraData =
3886         {
3887             0;
3888             ID_FUNCTION_GRP_MATH;
3889             U2S( HID_FUNC_RAD );
3890             1;  0;
3891             0;
3892         };
3893         String 2 // Name of Parameter 1
3894         {
3895             Text [ en-US ] = "Number" ;
3896         };
3897         String 3 // Description of Parameter 1
3898         {
3899             Text [ en-US ] = "The angle in degrees." ;
3900         };
3901     };
3902      // -=*# Resource for function EXP #*=-
3903     Resource SC_OPCODE_EXP
3904     {
3905         String 1 // Description
3906         {
3907             Text [ en-US ] = "Calculates the exponent for basis e." ;
3908         };
3909         ExtraData =
3910         {
3911             0;
3912             ID_FUNCTION_GRP_MATH;
3913             U2S( HID_FUNC_EXP );
3914             1;  0;
3915             0;
3916         };
3917         String 2 // Name of Parameter 1
3918         {
3919             Text [ en-US ] = "Number" ;
3920         };
3921         String 3 // Description of Parameter 1
3922         {
3923             Text [ en-US ] = "The exponent applied to base e." ;
3924         };
3925     };
3926      // -=*# Resource for function LOG #*=-
3927     Resource SC_OPCODE_LOG
3928     {
3929         String 1 // Description
3930         {
3931             Text [ en-US ] = "Calculates the logarithm to any specified base." ;
3932         };
3933         ExtraData =
3934         {
3935             0;
3936             ID_FUNCTION_GRP_MATH;
3937             U2S( HID_FUNC_LOG );
3938             2;  0;  1;
3939             0;
3940         };
3941         String 2 // Name of Parameter 1
3942         {
3943             Text [ en-US ] = "Number" ;
3944         };
3945         String 3 // Description of Parameter 1
3946         {
3947             Text [ en-US ] = "A value greater than 0 for which the logarithm is to be calculated." ;
3948         };
3949         String 4 // Name of Parameter 2
3950         {
3951             Text [ en-US ] = "Base" ;
3952         };
3953         String 5 // Description of Parameter 2
3954         {
3955             Text [ en-US ] = "The base of the logarithm. If omitted, the base is regarded as 10." ;
3956         };
3957     };
3958      // -=*# Resource for function LN #*=-
3959     Resource SC_OPCODE_LN
3960     {
3961         String 1 // Description
3962         {
3963             Text [ en-US ] = "Calculates the natural logarithm of a number." ;
3964         };
3965         ExtraData =
3966         {
3967             0;
3968             ID_FUNCTION_GRP_MATH;
3969             U2S( HID_FUNC_LN );
3970             1;  0;
3971             0;
3972         };
3973         String 2 // Name of Parameter 1
3974         {
3975             Text [ en-US ] = "Number" ;
3976         };
3977         String 3 // Description of Parameter 1
3978         {
3979             Text [ en-US ] = "A value greater than 0 for which the natural logarithm is to be calculated." ;
3980         };
3981     };
3982      // -=*# Resource for function LOG10 #*=-
3983     Resource SC_OPCODE_LOG10
3984     {
3985         String 1 // Description
3986         {
3987             Text [ en-US ] = "Calculates the base-10 logarithm of a number." ;
3988         };
3989         ExtraData =
3990         {
3991             0;
3992             ID_FUNCTION_GRP_MATH;
3993             U2S( HID_FUNC_LOG10 );
3994             1;  0;
3995             0;
3996         };
3997         String 2 // Name of Parameter 1
3998         {
3999             Text [ en-US ] = "Number" ;
4000         };
4001         String 3 // Description of Parameter 1
4002         {
4003             Text [ en-US ] = "A value greater than 0 for which the logarithm is to be calculated." ;
4004         };
4005     };
4006      // -=*# Resource for function FAKULTÄT #*=-
4007     Resource SC_OPCODE_FACT
4008     {
4009         String 1 // Description
4010         {
4011             Text [ en-US ] = "Calculates the factorial of a number." ;
4012         };
4013         ExtraData =
4014         {
4015             0;
4016             ID_FUNCTION_GRP_MATH;
4017             U2S( HID_FUNC_FAKULTAET );
4018             1;  0;
4019             0;
4020         };
4021         String 2 // Name of Parameter 1
4022         {
4023             Text [ en-US ] = "Number" ;
4024         };
4025         String 3 // Description of Parameter 1
4026         {
4027             Text [ en-US ] = "The number for which the factorial is to be calculated." ;
4028         };
4029     };
4030      // -=*# Resource for function REST #*=-
4031     Resource SC_OPCODE_MOD
4032     {
4033         String 1 // Description
4034         {
4035             Text [ en-US ] = "Calculates the remainder of a division." ;
4036         };
4037         ExtraData =
4038         {
4039             0;
4040             ID_FUNCTION_GRP_MATH;
4041             U2S( HID_FUNC_REST );
4042             2;  0;  0;
4043             0;
4044         };
4045         String 2 // Name of Parameter 1
4046         {
4047             Text [ en-US ] = "Dividend" ;
4048         };
4049         String 3 // Description of Parameter 1
4050         {
4051             Text [ en-US ] = "The number to be divided." ;
4052         };
4053         String 4 // Name of Parameter 2
4054         {
4055             Text [ en-US ] = "Divisor" ;
4056         };
4057         String 5 // Description of Parameter 2
4058         {
4059             Text [ en-US ] = "The number by which the dividend is divided." ;
4060         };
4061     };
4062      // -=*# Resource for function VORZEICHEN #*=-
4063     Resource SC_OPCODE_PLUS_MINUS
4064     {
4065         String 1 // Description
4066         {
4067             Text [ en-US ] = "Returns the algebraic sign of a number." ;
4068         };
4069         ExtraData =
4070         {
4071             0;
4072             ID_FUNCTION_GRP_MATH;
4073             U2S( HID_FUNC_VORZEICHEN );
4074             1;  0;
4075             0;
4076         };
4077         String 2 // Name of Parameter 1
4078         {
4079             Text [ en-US ] = "Number" ;
4080         };
4081         String 3 // Description of Parameter 1
4082         {
4083             Text [ en-US ] = "The number for which the algebraic sign is to be determined." ;
4084         };
4085     };
4086      // -=*# Resource for function TEILERGEBNIS #*=-
4087     Resource SC_OPCODE_SUB_TOTAL
4088     {
4089         String 1 // Description
4090         {
4091             Text [ en-US ] = "Calculates subtotals in a spreadsheet." ;
4092         };
4093         ExtraData =
4094         {
4095             0;
4096             ID_FUNCTION_GRP_MATH;
4097             U2S( HID_FUNC_TEILERGEBNIS );
4098             2;  0;  0;
4099             0;
4100         };
4101         String 2 // Name of Parameter 1
4102         {
4103             Text [ en-US ] = "Function" ;
4104         };
4105         String 3 // Description of Parameter 1
4106         {
4107             Text [ en-US ] = "Function index. Is an index of the possible functions Total, Max, ..." ;
4108         };
4109         String 4 // Name of Parameter 2
4110         {
4111             Text [ en-US ] = "range " ;
4112         };
4113         String 5 // Description of Parameter 2
4114         {
4115             Text [ en-US ] = "The cells of the range which are to be taken into account." ;
4116         };
4117     };
4118      // -=*# Resource for function GANZZAHL #*=-
4119     Resource SC_OPCODE_INT
4120     {
4121         String 1 // Description
4122         {
4123             Text [ en-US ] = "Rounds a number down to the nearest integer." ;
4124         };
4125         ExtraData =
4126         {
4127             0;
4128             ID_FUNCTION_GRP_MATH;
4129             U2S( HID_FUNC_GANZZAHL );
4130             1;  0;
4131             0;
4132         };
4133         String 2 // Name of Parameter 1
4134         {
4135             Text [ en-US ] = "Number" ;
4136         };
4137         String 3 // Description of Parameter 1
4138         {
4139             Text [ en-US ] = "The number to be rounded down." ;
4140         };
4141     };
4142      // -=*# Resource for function KÃœRZEN #*=-
4143     Resource SC_OPCODE_TRUNC
4144     {
4145         String 1 // Description
4146         {
4147             Text [ en-US ] = "Truncates the decimal places of a number." ;
4148         };
4149         ExtraData =
4150         {
4151             0;
4152             ID_FUNCTION_GRP_MATH;
4153             U2S( HID_FUNC_KUERZEN );
4154             2;  0;  0;
4155             0;
4156         };
4157         String 2 // Name of Parameter 1
4158         {
4159             Text [ en-US ] = "number" ;
4160         };
4161         String 3 // Description of Parameter 1
4162         {
4163             Text [ en-US ] = "The number to be truncated." ;
4164         };
4165         String 4 // Name of Parameter 2
4166         {
4167             Text [ en-US ] = "count" ;
4168         };
4169         String 5 // Description of Parameter 2
4170         {
4171             Text [ en-US ] = "The number of places after the decimal point that are not to be truncated." ;
4172         };
4173     };
4174      // -=*# Resource for function RUNDEN #*=-
4175     Resource SC_OPCODE_ROUND
4176     {
4177         String 1 // Description
4178         {
4179             Text [ en-US ] = "Rounds a number to a predefined accuracy." ;
4180         };
4181         ExtraData =
4182         {
4183             0;
4184             ID_FUNCTION_GRP_MATH;
4185             U2S( HID_FUNC_RUNDEN );
4186             2;  0;  1;
4187             0;
4188         };
4189         String 2 // Name of Parameter 1
4190         {
4191             Text [ en-US ] = "number" ;
4192         };
4193         String 3 // Description of Parameter 1
4194         {
4195             Text [ en-US ] = "The number to be rounded." ;
4196         };
4197         String 4 // Name of Parameter 2
4198         {
4199             Text [ en-US ] = "count" ;
4200         };
4201         String 5 // Description of Parameter 2
4202         {
4203             Text [ en-US ] = "The number of places to which a number is to be rounded." ;
4204         };
4205     };
4206      // -=*# Resource for function AUFRUNDEN #*=-
4207     Resource SC_OPCODE_ROUND_UP
4208     {
4209         String 1 // Description
4210         {
4211             Text [ en-US ] = "Rounds a number up to the predefined accuracy." ;
4212         };
4213         ExtraData =
4214         {
4215             0;
4216             ID_FUNCTION_GRP_MATH;
4217             U2S( HID_FUNC_AUFRUNDEN );
4218             2;  0;  1;
4219             0;
4220         };
4221         String 2 // Name of Parameter 1
4222         {
4223             Text [ en-US ] = "number" ;
4224         };
4225         String 3 // Description of Parameter 1
4226         {
4227             Text [ en-US ] = "The number to be rounded up." ;
4228         };
4229         String 4 // Name of Parameter 2
4230         {
4231             Text [ en-US ] = "count" ;
4232         };
4233         String 5 // Description of Parameter 2
4234         {
4235             Text [ en-US ] = "The number of places to which a number is to be rounded." ;
4236         };
4237     };
4238      // -=*# Resource for function ABRUNDEN #*=-
4239     Resource SC_OPCODE_ROUND_DOWN
4240     {
4241         String 1 // Description
4242         {
4243             Text [ en-US ] = "Rounds a number down to a predefined accuracy." ;
4244         };
4245         ExtraData =
4246         {
4247             0;
4248             ID_FUNCTION_GRP_MATH;
4249             U2S( HID_FUNC_ABRUNDEN );
4250             2;  0;  1;
4251             0;
4252         };
4253         String 2 // Name of Parameter 1
4254         {
4255             Text [ en-US ] = "number" ;
4256         };
4257         String 3 // Description of Parameter 1
4258         {
4259             Text [ en-US ] = "The number to be rounded down." ;
4260         };
4261         String 4 // Name of Parameter 2
4262         {
4263             Text [ en-US ] = "count" ;
4264         };
4265         String 5 // Description of Parameter 2
4266         {
4267             Text [ en-US ] = "The number of places down to which a number is to be rounded." ;
4268         };
4269     };
4270      // -=*# Resource for function GERADE #*=-
4271     Resource SC_OPCODE_EVEN
4272     {
4273         String 1 // Description
4274         {
4275             Text [ en-US ] = "Rounds a positive number up and negative number down to the nearest even integer.";
4276         };
4277         ExtraData =
4278         {
4279             0;
4280             ID_FUNCTION_GRP_MATH;
4281             U2S( HID_FUNC_GERADE );
4282             1;  0;
4283             0;
4284         };
4285         String 2 // Name of Parameter 1
4286         {
4287             Text [ en-US ] = "Number" ;
4288         };
4289         String 3 // Description of Parameter 1
4290         {
4291             Text [ en-US ] = "The number to be rounded up." ;
4292         };
4293     };
4294      // -=*# Resource for function UNGERADE #*=-
4295     Resource SC_OPCODE_ODD
4296     {
4297         String 1 // Description
4298         {
4299             Text [ en-US ] = "Rounds a positive number up and negative number down to the nearest odd integer.";
4300         };
4301         ExtraData =
4302         {
4303             0;
4304             ID_FUNCTION_GRP_MATH;
4305             U2S( HID_FUNC_UNGERADE );
4306             1;  0;
4307             0;
4308         };
4309         String 2 // Name of Parameter 1
4310         {
4311             Text [ en-US ] = "Number" ;
4312         };
4313         String 3 // Description of Parameter 1
4314         {
4315             Text [ en-US ] = "The number to be rounded up." ;
4316         };
4317     };
4318      // -=*# Resource for function OBERGRENZE #*=-
4319     Resource SC_OPCODE_CEIL
4320     {
4321         String 1 // Description
4322         {
4323             Text [ en-US ] = "Rounds a number up to the nearest multiple of significance." ;
4324         };
4325         ExtraData =
4326         {
4327             0;
4328             ID_FUNCTION_GRP_MATH;
4329             U2S( HID_FUNC_OBERGRENZE );
4330             3;  0;  0;  1;
4331             0;
4332         };
4333         String 2 // Name of Parameter 1
4334         {
4335             Text [ en-US ] = "Number" ;
4336         };
4337         String 3 // Description of Parameter 1
4338         {
4339             Text [ en-US ] = "The number to be rounded up." ;
4340         };
4341         String 4 // Name of Parameter 2
4342         {
4343             Text [ en-US ] = "Significance" ;
4344         };
4345         String 5 // Description of Parameter 2
4346         {
4347             Text [ en-US ] = "The number to whose multiple the value is rounded." ;
4348         };
4349         String 6 // Name of Parameter 3
4350         {
4351             Text [ en-US ] = "Mode" ;
4352         };
4353         String 7 // Description of Parameter 3
4354         {
4355             Text [ en-US ] = "If given and not equal to zero then rounded up according to amount when a negative number and significance." ;
4356         };
4357     };
4358      // -=*# Resource for function UNTERGRENZE #*=-
4359     Resource SC_OPCODE_FLOOR
4360     {
4361         String 1 // Description
4362         {
4363             Text [ en-US ] = "Rounds number down to the nearest multiple of significance." ;
4364         };
4365         ExtraData =
4366         {
4367             0;
4368             ID_FUNCTION_GRP_MATH;
4369             U2S( HID_FUNC_UNTERGRENZE );
4370             3;  0;  0;  1;
4371             0;
4372         };
4373         String 2 // Name of Parameter 1
4374         {
4375             Text [ en-US ] = "Number" ;
4376         };
4377         String 3 // Description of Parameter 1
4378         {
4379             Text [ en-US ] = "The number to be rounded down." ;
4380         };
4381         String 4 // Name of Parameter 2
4382         {
4383             Text [ en-US ] = "Significance" ;
4384         };
4385         String 5 // Description of Parameter 2
4386         {
4387             Text [ en-US ] = "The number to whose multiple the value is to be rounded down." ;
4388         };
4389         String 6 // Name of Parameter 3
4390         {
4391             Text [ en-US ] = "Mode" ;
4392         };
4393         String 7 // Description of Parameter 3
4394         {
4395             Text [ en-US ] = "If given and not equal to zero then rounded down according to amount when a negative number and significance." ;
4396         };
4397     };
4398      // -=*# Resource for function GGT #*=-
4399     Resource SC_OPCODE_GGT
4400     {
4401         String 1 // Description
4402         {
4403             Text [ en-US ] = "Greatest Common Divisor" ;
4404         };
4405         ExtraData =
4406         {
4407             0;
4408             ID_FUNCTION_GRP_MATH;
4409             U2S( HID_FUNC_GGT );
4410             VAR_ARGS;   0;
4411             0;
4412         };
4413         String 2 // Name of Parameter 1
4414         {
4415             Text [ en-US ] = "Integer " ;
4416         };
4417         String 3 // Description of Parameter 1
4418         {
4419             Text [ en-US ] = "Integer 1; integer 2,... are integers for which the greatest common divisor is to be calculated." ;
4420         };
4421     };
4422      // -=*# Resource for function KGV #*=-
4423     Resource SC_OPCODE_KGV
4424     {
4425         String 1 // Description
4426         {
4427             Text [ en-US ] = "Lowest common multiple" ;
4428         };
4429         ExtraData =
4430         {
4431             0;
4432             ID_FUNCTION_GRP_MATH;
4433             U2S( HID_FUNC_KGV );
4434             VAR_ARGS;   0;
4435             0;
4436         };
4437         String 2 // Name of Parameter 1
4438         {
4439             Text [ en-US ] = "Integer " ;
4440         };
4441         String 3 // Description of Parameter 1
4442         {
4443             Text [ en-US ] = "Integer 1; integer 2,... are integers whose smallest common multiple is to be calculated." ;
4444         };
4445     };
4446      // -=*# Resource for function MTRANS #*=-
4447     Resource SC_OPCODE_MAT_TRANS
4448     {
4449         String 1 // Description
4450         {
4451             Text [ en-US ] = "Array transposition. Exchanges the rows and columns of an array." ;
4452         };
4453         ExtraData =
4454         {
4455             0;
4456             ID_FUNCTION_GRP_MATRIX;
4457             U2S( HID_FUNC_MTRANS );
4458             1;  0;
4459             0;
4460         };
4461         String 2 // Name of Parameter 1
4462         {
4463             Text [ en-US ] = "array" ;
4464         };
4465         String 3 // Description of Parameter 1
4466         {
4467             Text [ en-US ] = "The array in which the rows and columns have been transposed." ;
4468         };
4469     };
4470      // -=*# Resource for function MMULT #*=-
4471     Resource SC_OPCODE_MAT_MULT
4472     {
4473         String 1 // Description
4474         {
4475             Text [ en-US ] = "Array multiplication. Returns the product of two arrays." ;
4476         };
4477         ExtraData =
4478         {
4479             0;
4480             ID_FUNCTION_GRP_MATRIX;
4481             U2S( HID_FUNC_MMULT );
4482             2;  0;  0;
4483             0;
4484         };
4485         String 2 // Name of Parameter 1
4486         {
4487             Text [ en-US ] = "array_1" ;
4488         };
4489         String 3 // Description of Parameter 1
4490         {
4491             Text [ en-US ] = "The first array for the array product." ;
4492         };
4493         String 4 // Name of Parameter 2
4494         {
4495             Text [ en-US ] = "array_2" ;
4496         };
4497         String 5 // Description of Parameter 2
4498         {
4499             Text [ en-US ] = "The second array having the same number of rows as the first array has columns." ;
4500         };
4501     };
4502      // -=*# Resource for function MDET #*=-
4503     Resource SC_OPCODE_MAT_DET
4504     {
4505         String 1 // Description
4506         {
4507             Text [ en-US ] = "Returns the array determinant." ;
4508         };
4509         ExtraData =
4510         {
4511             0;
4512             ID_FUNCTION_GRP_MATRIX;
4513             U2S( HID_FUNC_MDET );
4514             1;  0;
4515             0;
4516         };
4517         String 2 // Name of Parameter 1
4518         {
4519             Text [ en-US ] = "array" ;
4520         };
4521         String 3 // Description of Parameter 1
4522         {
4523             Text [ en-US ] = "The array for which the determinant is to be determined." ;
4524         };
4525     };
4526      // -=*# Resource for function MINV #*=-
4527     Resource SC_OPCODE_MAT_INV
4528     {
4529         String 1 // Description
4530         {
4531             Text [ en-US ] = "Returns the inverse of an array." ;
4532         };
4533         ExtraData =
4534         {
4535             0;
4536             ID_FUNCTION_GRP_MATRIX;
4537             U2S( HID_FUNC_MINV );
4538             1;  0;
4539             0;
4540         };
4541         String 2 // Name of Parameter 1
4542         {
4543             Text [ en-US ] = "array" ;
4544         };
4545         String 3 // Description of Parameter 1
4546         {
4547             Text [ en-US ] = "The array to be inverted." ;
4548         };
4549     };
4550      // -=*# Resource for function EINHEITSMATRIX #*=-
4551     Resource SC_OPCODE_MATRIX_UNIT
4552     {
4553         String 1 // Description
4554         {
4555             Text [ en-US ] = "Returns the unitary square array of a certain size." ;
4556         };
4557         ExtraData =
4558         {
4559             0;
4560             ID_FUNCTION_GRP_MATRIX;
4561             U2S( HID_FUNC_EINHEITSMATRIX );
4562             1;  0;
4563             0;
4564         };
4565         String 2 // Name of Parameter 1
4566         {
4567             Text [ en-US ] = "Dimensions" ;
4568         };
4569         String 3 // Description of Parameter 1
4570         {
4571             Text [ en-US ] = "The size of the unitary array." ;
4572         };
4573     };
4574      // -=*# Resource for function SUMMENPRODUKT #*=-
4575     Resource SC_OPCODE_SUM_PRODUCT
4576     {
4577         String 1 // Description
4578         {
4579             Text [ en-US ] = "(Inner products) Returns the sum of the products of array arguments." ;
4580         };
4581         ExtraData =
4582         {
4583             0;
4584             ID_FUNCTION_GRP_MATRIX;
4585             U2S( HID_FUNC_SUMMENPRODUKT );
4586             VAR_ARGS;   0;
4587             0;
4588         };
4589         String 2 // Name of Parameter 1
4590         {
4591             Text [ en-US ] = "Array " ;
4592         };
4593         String 3 // Description of Parameter 1
4594         {
4595             Text [ en-US ] = "Array 1, array 2, ... are up to 30 arrays whose arguments are to be multiplied." ;
4596         };
4597     };
4598      // -=*# Resource for function SUMMEX2MY2 #*=-
4599     Resource SC_OPCODE_SUM_X2MY2
4600     {
4601         String 1 // Description
4602         {
4603             Text [ en-US ] = "Returns the sum of the difference of squares of two arrays." ;
4604         };
4605         ExtraData =
4606         {
4607             0;
4608             ID_FUNCTION_GRP_MATRIX;
4609             U2S( HID_FUNC_SUMMEX2MY2 );
4610             2;  0;  0;
4611             0;
4612         };
4613         String 2 // Name of Parameter 1
4614         {
4615             Text [ en-US ] = "array_x" ;
4616         };
4617         String 3 // Description of Parameter 1
4618         {
4619             Text [ en-US ] = "First array where the square of the arguments are totalled." ;
4620         };
4621         String 4 // Name of Parameter 2
4622         {
4623             Text [ en-US ] = "array_y" ;
4624         };
4625         String 5 // Description of Parameter 2
4626         {
4627             Text [ en-US ] = "Second array where the square of the arguments is to be subtracted." ;
4628         };
4629     };
4630      // -=*# Resource for function SUMMEX2PY2 #*=-
4631     Resource SC_OPCODE_SUM_X2DY2
4632     {
4633         String 1 // Description
4634         {
4635             Text [ en-US ] = "Returns the total of the square sum of two arrays." ;
4636         };
4637         ExtraData =
4638         {
4639             0;
4640             ID_FUNCTION_GRP_MATRIX;
4641             U2S( HID_FUNC_SUMMEX2PY2 );
4642             2;  0;  0;
4643             0;
4644         };
4645         String 2 // Name of Parameter 1
4646         {
4647             Text [ en-US ] = "array_x" ;
4648         };
4649         String 3 // Description of Parameter 1
4650         {
4651             Text [ en-US ] = "First array where the square of the arguments are totalled." ;
4652         };
4653         String 4 // Name of Parameter 2
4654         {
4655             Text [ en-US ] = "array_y" ;
4656         };
4657         String 5 // Description of Parameter 2
4658         {
4659             Text [ en-US ] = "Second array where the square of the arguments is to be totalled." ;
4660         };
4661     };
4662      // -=*# Resource for function SUMMEXMY2 #*=-
4663     Resource SC_OPCODE_SUM_XMY2
4664     {
4665         String 1 // Description
4666         {
4667             Text [ en-US ] = "Returns the sum of squares of differences of two arrays." ;
4668         };
4669         ExtraData =
4670         {
4671             0;
4672             ID_FUNCTION_GRP_MATRIX;
4673             U2S( HID_FUNC_SUMMEXMY2 );
4674             2;  0;  0;
4675             0;
4676         };
4677         String 2 // Name of Parameter 1
4678         {
4679             Text [ en-US ] = "array_x" ;
4680         };
4681         String 3 // Description of Parameter 1
4682         {
4683             Text [ en-US ] = "First array for forming argument differences." ;
4684         };
4685         String 4 // Name of Parameter 2
4686         {
4687             Text [ en-US ] = "array_y" ;
4688         };
4689         String 5 // Description of Parameter 2
4690         {
4691             Text [ en-US ] = "Second array for forming the argument differences." ;
4692         };
4693     };
4696 Resource RID_SC_FUNCTION_DESCRIPTIONS2
4698      // -=*# Resource for function HÄUFIGKEIT #*=-
4699     Resource SC_OPCODE_FREQUENCY
4700     {
4701         String 1 // Description
4702         {
4703             Text [ en-US ] = "Returns a frequency distribution as a vertical array." ;
4704         };
4705         ExtraData =
4706         {
4707             0;
4708             ID_FUNCTION_GRP_MATRIX;
4709             U2S( HID_FUNC_HAEUFIGKEIT );
4710             2;  0;  0;
4711             0;
4712         };
4713         String 2 // Name of Parameter 1
4714         {
4715             Text [ en-US ] = "data" ;
4716         };
4717         String 3 // Description of Parameter 1
4718         {
4719             Text [ en-US ] = "The array of the data." ;
4720         };
4721         String 4 // Name of Parameter 2
4722         {
4723             Text [ en-US ] = "classes" ;
4724         };
4725         String 5 // Description of Parameter 2
4726         {
4727             Text [ en-US ] = "The array for forming classes." ;
4728         };
4729     };
4730      // -=*# Resource for function RGP #*=-
4731     Resource SC_OPCODE_RGP
4732     {
4733         String 1 // Description
4734         {
4735             Text [ en-US ] = "Calculates parameters of the linear regression as an array." ;
4736         };
4737         ExtraData =
4738         {
4739             0;
4740             ID_FUNCTION_GRP_MATRIX;
4741             U2S( HID_FUNC_RGP );
4742             4;  0;  1;  1;  1;
4743             0;
4744         };
4745         String 2 // Name of Parameter 1
4746         {
4747             Text [ en-US ] = "data_Y" ;
4748         };
4749         String 3 // Description of Parameter 1
4750         {
4751             Text [ en-US ] = "The Y data array." ;
4752         };
4753         String 4 // Name of Parameter 2
4754         {
4755             Text [ en-US ] = "data_X" ;
4756         };
4757         String 5 // Description of Parameter 2
4758         {
4759             Text [ en-US ] = "The X data array." ;
4760         };
4761         String 6 // Name of Parameter 3
4762         {
4763             Text [ en-US ] = "Linear_type" ;
4764         };
4765         String 7 // Description of Parameter 3
4766         {
4767             Text [ en-US ] = "If type = 0 the linears will be calculated through the zero point, or else moved linears." ;
4768         };
4769         String 8 // Name of Parameter 4
4770         {
4771             Text [ en-US ] = "stats" ;
4772         };
4773         String 9 // Description of Parameter 4
4774         {
4775             Text [ en-US ] = "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well." ;
4776         };
4777     };
4778      // -=*# Resource for function RKP #*=-
4779     Resource SC_OPCODE_RKP
4780     {
4781         String 1 // Description
4782         {
4783             Text [ en-US ] = "Calculates the parameters of the exponential regression curve as an array." ;
4784         };
4785         ExtraData =
4786         {
4787             0;
4788             ID_FUNCTION_GRP_MATRIX;
4789             U2S( HID_FUNC_RKP );
4790             4;  0;  1;  1;  1;
4791             0;
4792         };
4793         String 2 // Name of Parameter 1
4794         {
4795             Text [ en-US ] = "data_Y" ;
4796         };
4797         String 3 // Description of Parameter 1
4798         {
4799             Text [ en-US ] = "The Y data array." ;
4800         };
4801         String 4 // Name of Parameter 2
4802         {
4803             Text [ en-US ] = "data_X" ;
4804         };
4805         String 5 // Description of Parameter 2
4806         {
4807             Text [ en-US ] = "The X data array." ;
4808         };
4809         String 6 // Name of Parameter 3
4810         {
4811             Text [ en-US ] = "Function_type" ;
4812         };
4813         String 7 // Description of Parameter 3
4814         {
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." ;
4816         };
4817         String 8 // Name of Parameter 4
4818         {
4819             Text [ en-US ] = "stats" ;
4820         };
4821         String 9 // Description of Parameter 4
4822         {
4823             Text [ en-US ] = "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well." ;
4824         };
4825     };
4826      // -=*# Resource for function TREND #*=-
4827     Resource SC_OPCODE_TREND
4828     {
4829         String 1 // Description
4830         {
4831             Text [ en-US ] = "Calculates points along a regression line." ;
4832         };
4833         ExtraData =
4834         {
4835             0;
4836             ID_FUNCTION_GRP_MATRIX;
4837             U2S( HID_FUNC_TREND );
4838             4;  0;  1;  1;  1;
4839             0;
4840         };
4841         String 2 // Name of Parameter 1
4842         {
4843             Text [ en-US ] = "data_Y" ;
4844         };
4845         String 3 // Description of Parameter 1
4846         {
4847             Text [ en-US ] = "The Y data array." ;
4848         };
4849         String 4 // Name of Parameter 2
4850         {
4851             Text [ en-US ] = "data_X" ;
4852         };
4853         String 5 // Description of Parameter 2
4854         {
4855             Text [ en-US ] = "The X data array as the basis for the regression." ;
4856         };
4857         String 6 // Name of Parameter 3
4858         {
4859             Text [ en-US ] = "new data_X" ;
4860         };
4861         String 7 // Description of Parameter 3
4862         {
4863             Text [ en-US ] = "The array of X data for recalculating the values." ;
4864         };
4865         String 8 // Name of Parameter 4
4866         {
4867             Text [ en-US ] = "Linear_type" ;
4868         };
4869         String 9 // Description of Parameter 4
4870         {
4871             Text [ en-US ] = "If type = 0 the linears will be calculated through the zero point, or else moved linears." ;
4872         };
4873     };
4874      // -=*# Resource for function VARIATION #*=-
4875     Resource SC_OPCODE_GROWTH
4876     {
4877         String 1 // Description
4878         {
4879             Text [ en-US ] = "Calculates points on the exponential regression function." ;
4880         };
4881         ExtraData =
4882         {
4883             0;
4884             ID_FUNCTION_GRP_MATRIX;
4885             U2S( HID_FUNC_VARIATION );
4886             4;  0;  1;  1;  1;
4887             0;
4888         };
4889         String 2 // Name of Parameter 1
4890         {
4891             Text [ en-US ] = "data_Y" ;
4892         };
4893         String 3 // Description of Parameter 1
4894         {
4895             Text [ en-US ] = "The Y data array." ;
4896         };
4897         String 4 // Name of Parameter 2
4898         {
4899             Text [ en-US ] = "data_X" ;
4900         };
4901         String 5 // Description of Parameter 2
4902         {
4903             Text [ en-US ] = "The X data array as the basis for the regression." ;
4904         };
4905         String 6 // Name of Parameter 3
4906         {
4907             Text [ en-US ] = "new_data_X" ;
4908         };
4909         String 7 // Description of Parameter 3
4910         {
4911             Text [ en-US ] = "The array of X data for recalculating the values." ;
4912         };
4913         String 8 // Name of Parameter 4
4914         {
4915             Text [ en-US ] = "Function_type" ;
4916         };
4917         String 9 // Description of Parameter 4
4918         {
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." ;
4920         };
4921     };
4922      // -=*# Resource for function ANZAHL #*=-
4923     Resource SC_OPCODE_COUNT
4924     {
4925         String 1 // Description
4926         {
4927             Text [ en-US ] = "Counts how many numbers are in the list of arguments." ;
4928         };
4929         ExtraData =
4930         {
4931             0;
4932             ID_FUNCTION_GRP_STATISTIC;
4933             U2S( HID_FUNC_ANZAHL );
4934             VAR_ARGS;   0;
4935             0;
4936         };
4937         String 2 // Name of Parameter 1
4938         {
4939             Text [ en-US ] = "value " ;
4940         };
4941         String 3 // Description of Parameter 1
4942         {
4943             Text [ en-US ] = "Value 1, value 2, ... are 1 to 30 arguments containing different data types but where only numbers are counted." ;
4944         };
4945     };
4946      // -=*# Resource for function ANZAHL2 #*=-
4947     Resource SC_OPCODE_COUNT_2
4948     {
4949         String 1 // Description
4950         {
4951             Text [ en-US ] = "Counts how many values are in the list of arguments." ;
4952         };
4953         ExtraData =
4954         {
4955             0;
4956             ID_FUNCTION_GRP_STATISTIC;
4957             U2S( HID_FUNC_ANZAHL2 );
4958             VAR_ARGS;   0;
4959             0;
4960         };
4961         String 2 // Name of Parameter 1
4962         {
4963             Text [ en-US ] = "value " ;
4964         };
4965         String 3 // Description of Parameter 1
4966         {
4967             Text [ en-US ] = "Value 1, value 2, ... are 1 to 30 arguments representing the values to be counted." ;
4968         };
4969     };
4970      // -=*# Resource for function MAX #*=-
4971     Resource SC_OPCODE_MAX
4972     {
4973         String 1 // Description
4974         {
4975             Text [ en-US ] = "Returns the maximum value in a list of arguments." ;
4976         };
4977         ExtraData =
4978         {
4979             0;
4980             ID_FUNCTION_GRP_STATISTIC;
4981             U2S( HID_FUNC_MAX );
4982             VAR_ARGS;   0;
4983             0;
4984         };
4985         String 2 // Name of Parameter 1
4986         {
4987             Text [ en-US ] = "number " ;
4988         };
4989         String 3 // Description of Parameter 1
4990         {
4991             Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments for which the largest number is to be determined." ;
4992         };
4993     };
4994      // -=*# Resource for function MAXA #*=-
4995     Resource SC_OPCODE_MAX_A
4996     {
4997         String 1 // Description
4998         {
4999             Text [ en-US ] = "Returns the maximum value in a list of arguments. Text is evaluated as Zero.";
5000         };
5001         ExtraData =
5002         {
5003             0;
5004             ID_FUNCTION_GRP_STATISTIC;
5005             U2S( HID_FUNC_MAXA );
5006             VAR_ARGS;   0;
5007             0;
5008         };
5009         String 2 // Name of Parameter 1
5010         {
5011             Text [ en-US ] = "value ";
5012         };
5013         String 3 // Description of Parameter 1
5014         {
5015             Text [ en-US ] = "Value 1, value 2,    are 1 to 30 arguments whose largest value is to be determined.";
5016         };
5017     };
5018      // -=*# Resource for function MIN #*=-
5019     Resource SC_OPCODE_MIN
5020     {
5021         String 1 // Description
5022         {
5023             Text [ en-US ] = "Returns the minimum value in a list of arguments." ;
5024         };
5025         ExtraData =
5026         {
5027             0;
5028             ID_FUNCTION_GRP_STATISTIC;
5029             U2S( HID_FUNC_MIN );
5030             VAR_ARGS;   0;
5031             0;
5032         };
5033         String 2 // Name of Parameter 1
5034         {
5035             Text [ en-US ] = "number " ;
5036         };
5037         String 3 // Description of Parameter 1
5038         {
5039             Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments for which the smallest number is to be determined." ;
5040         };
5041     };
5042      // -=*# Resource for function MINA #*=-
5043     Resource SC_OPCODE_MIN_A
5044     {
5045         String 1 // Description
5046         {
5047             Text [ en-US ] = "Returns the smallest value in a list of arguments. Text is evaluated as zero.";
5048         };
5049         ExtraData =
5050         {
5051             0;
5052             ID_FUNCTION_GRP_STATISTIC;
5053             U2S( HID_FUNC_MINA );
5054             VAR_ARGS;   0;
5055             0;
5056         };
5057         String 2 // Name of Parameter 1
5058         {
5059             Text [ en-US ] = "value ";
5060         };
5061         String 3 // Description of Parameter 1
5062         {
5063             Text [ en-US ] = "Value 1; value 2;... are 1 to 30 arguments whose smallest number is to be determined.";
5064         };
5065     };
5066      // -=*# Resource for function VARIANZ #*=-
5067     Resource SC_OPCODE_VAR
5068     {
5069         String 1 // Description
5070         {
5071             Text [ en-US ] = "Calculates the variance based on a sample." ;
5072         };
5073         ExtraData =
5074         {
5075             0;
5076             ID_FUNCTION_GRP_STATISTIC;
5077             U2S( HID_FUNC_VARIANZ );
5078             VAR_ARGS;   0;
5079             0;
5080         };
5081         String 2 // Name of Parameter 1
5082         {
5083             Text [ en-US ] = "number " ;
5084         };
5085         String 3 // Description of Parameter 1
5086         {
5087             Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." ;
5088         };
5089     };
5090      // -=*# Resource for function VAR.S #*=-
5091     Resource SC_OPCODE_VAR_S
5092     {
5093         String 1 // Description
5094         {
5095             Text [ en-US ] = "Calculates the variance based on a sample." ;
5096         };
5097         ExtraData =
5098         {
5099             0;
5100             ID_FUNCTION_GRP_STATISTIC;
5101             U2S( HID_FUNC_VAR_S );
5102             VAR_ARGS;   0;
5103             0;
5104         };
5105         String 2 // Name of Parameter 1
5106         {
5107             Text [ en-US ] = "number " ;
5108         };
5109         String 3 // Description of Parameter 1
5110         {
5111             Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." ;
5112         };
5113     };
5114      // -=*# Resource for function VARIANZ #*=-
5115     Resource SC_OPCODE_VAR_A
5116     {
5117         String 1 // Description
5118         {
5119             Text [ en-US ] = "Returns the variance based on a sample. Text is evaluated as zero.";
5120         };
5121         ExtraData =
5122         {
5123             0;
5124             ID_FUNCTION_GRP_STATISTIC;
5125             U2S( HID_FUNC_VARIANZA );
5126             VAR_ARGS;   0;
5127             0;
5128         };
5129         String 2 // Name of Parameter 1
5130         {
5131             Text [ en-US ] = "value ";
5132         };
5133         String 3 // Description of Parameter 1
5134         {
5135             Text [ en-US ] = "Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from a basic total population.";
5136         };
5137     };
5138      // -=*# Resource for function VARIANZEN #*=-
5139     Resource SC_OPCODE_VAR_P
5140     {
5141         String 1 // Description
5142         {
5143             Text [ en-US ] = "Calculates variance based on the entire population." ;
5144         };
5145         ExtraData =
5146         {
5147             0;
5148             ID_FUNCTION_GRP_STATISTIC;
5149             U2S( HID_FUNC_VARIANZEN );
5150             VAR_ARGS;   0;
5151             0;
5152         };
5153         String 2 // Name of Parameter 1
5154         {
5155             Text [ en-US ] = "number " ;
5156         };
5157         String 3 // Description of Parameter 1
5158         {
5159             Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which represent a population." ;
5160         };
5161     };
5162      // -=*# Resource for function VAR.P #*=-
5163     Resource SC_OPCODE_VAR_P_MS
5164     {
5165         String 1 // Description
5166         {
5167             Text [ en-US ] = "Calculates variance based on the entire population." ;
5168         };
5169         ExtraData =
5170         {
5171             0;
5172             ID_FUNCTION_GRP_STATISTIC;
5173             U2S( HID_FUNC_VAR_P_MS );
5174             VAR_ARGS;   0;
5175             0;
5176         };
5177         String 2 // Name of Parameter 1
5178         {
5179             Text [ en-US ] = "number " ;
5180         };
5181         String 3 // Description of Parameter 1
5182         {
5183             Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which represent a population." ;
5184         };
5185     };
5186      // -=*# Resource for function VARIANZENA #*=-
5187     Resource SC_OPCODE_VAR_P_A
5188     {
5189         String 1 // Description
5190         {
5191             Text [ en-US ] = "Returns the variance based on the entire population. Text is evaluated as zero.";
5192         };
5193         ExtraData =
5194         {
5195             0;
5196             ID_FUNCTION_GRP_STATISTIC;
5197             U2S( HID_FUNC_VARIANZENA );
5198             VAR_ARGS;   0;
5199             0;
5200         };
5201         String 2 // Name of Parameter 1
5202         {
5203             Text [ en-US ] = "value ";
5204         };
5205         String 3 // Description of Parameter 1
5206         {
5207             Text [ en-US ] = "Value 1; value 2;... are 1 to 30 arguments representing a population.";
5208         };
5209     };
5210      // -=*# Resource for function STABW #*=-
5211     Resource SC_OPCODE_ST_DEV
5212     {
5213         String 1 // Description
5214         {
5215             Text [ en-US ] = "Calculates the standard deviation based on a sample." ;
5216         };
5217         ExtraData =
5218         {
5219             0;
5220             ID_FUNCTION_GRP_STATISTIC;
5221             U2S( HID_FUNC_STABW );
5222             VAR_ARGS;   0;
5223             0;
5224         };
5225         String 2 // Name of Parameter 1
5226         {
5227             Text [ en-US ] = "number " ;
5228         };
5229         String 3 // Description of Parameter 1
5230         {
5231             Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." ;
5232         };
5233     };
5234      // -=*# Resource for function STDEV.S #*=-
5235     Resource SC_OPCODE_ST_DEV_S
5236     {
5237         String 1 // Description
5238         {
5239             Text [ en-US ] = "Calculates the standard deviation based on a sample." ;
5240         };
5241         ExtraData =
5242         {
5243             0;
5244             ID_FUNCTION_GRP_STATISTIC;
5245             U2S( HID_FUNC_ST_DEV_S );
5246             VAR_ARGS;   0;
5247             0;
5248         };
5249         String 2 // Name of Parameter 1
5250         {
5251             Text [ en-US ] = "number " ;
5252         };
5253         String 3 // Description of Parameter 1
5254         {
5255             Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample of a population." ;
5256         };
5257     };
5258      // -=*# Resource for function STABWA #*=-
5259     Resource SC_OPCODE_ST_DEV_A
5260     {
5261         String 1 // Description
5262         {
5263             Text [ en-US ] = "Returns the standard deviation based on a sample. Text is evaluated as zero.";
5264         };
5265         ExtraData =
5266         {
5267             0;
5268             ID_FUNCTION_GRP_STATISTIC;
5269             U2S( HID_FUNC_STABWA );
5270             VAR_ARGS;   0;
5271             0;
5272         };
5273         String 2 // Name of Parameter 1
5274         {
5275             Text [ en-US ] = "value ";
5276         };
5277         String 3 // Description of Parameter 1
5278         {
5279             Text [ en-US ] = "Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from a basic total population.";
5280         };
5281     };
5282      // -=*# Resource for function STABWN #*=-
5283     Resource SC_OPCODE_ST_DEV_P
5284     {
5285         String 1 // Description
5286         {
5287             Text [ en-US ] = "Calculates the standard deviation based on the entire population." ;
5288         };
5289         ExtraData =
5290         {
5291             0;
5292             ID_FUNCTION_GRP_STATISTIC;
5293             U2S( HID_FUNC_STABWN );
5294             VAR_ARGS;   0;
5295             0;
5296         };
5297         String 2 // Name of Parameter 1
5298         {
5299             Text [ en-US ] = "number " ;
5300         };
5301         String 3 // Description of Parameter 1
5302         {
5303             Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population." ;
5304         };
5305     };
5306      // -=*# Resource for function STDEV.P #*=-
5307     Resource SC_OPCODE_ST_DEV_P_MS
5308     {
5309         String 1 // Description
5310         {
5311             Text [ en-US ] = "Calculates the standard deviation based on the entire population." ;
5312         };
5313         ExtraData =
5314         {
5315             0;
5316             ID_FUNCTION_GRP_STATISTIC;
5317             U2S( HID_FUNC_ST_DEV_P_MS );
5318             VAR_ARGS;   0;
5319             0;
5320         };
5321         String 2 // Name of Parameter 1
5322         {
5323             Text [ en-US ] = "number " ;
5324         };
5325         String 3 // Description of Parameter 1
5326         {
5327             Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a population." ;
5328         };
5329     };
5330      // -=*# Resource for function STABWNA #*=-
5331     Resource SC_OPCODE_ST_DEV_P_A
5332     {
5333         String 1 // Description
5334         {
5335             Text [ en-US ] = "Returns the standard deviation based on the entire population. Text is evaluated as zero.";
5336         };
5337         ExtraData =
5338         {
5339             0;
5340             ID_FUNCTION_GRP_STATISTIC;
5341             U2S( HID_FUNC_STABWNA );
5342             VAR_ARGS;   0;
5343             0;
5344         };
5345         String 2 // Name of Parameter 1
5346         {
5347             Text [ en-US ] = "value ";
5348         };
5349         String 3 // Description of Parameter 1
5350         {
5351             Text [ en-US ] = "Value 1; value 2;... are 1 to 30 arguments corresponding to a population.";
5352         };
5353     };
5354      // -=*# Resource for function MITTELWERT #*=-
5355     Resource SC_OPCODE_AVERAGE
5356     {
5357         String 1 // Description
5358         {
5359             Text [ en-US ] = "Returns the average of a sample." ;
5360         };
5361         ExtraData =
5362         {
5363             0;
5364             ID_FUNCTION_GRP_STATISTIC;
5365             U2S( HID_FUNC_MITTELWERT );
5366             VAR_ARGS;   0;
5367             0;
5368         };
5369         String 2 // Name of Parameter 1
5370         {
5371             Text [ en-US ] = "number " ;
5372         };
5373         String 3 // Description of Parameter 1
5374         {
5375             Text [ en-US ] = "Number 1, number 2;...are 1 to 30 numeric arguments representing a population sample." ;
5376         };
5377     };
5378      // -=*# Resource for function MITTELWERTA #*=-
5379     Resource SC_OPCODE_AVERAGE_A
5380     {
5381         String 1 // Description
5382         {
5383             Text [ en-US ] = "Returns the average value for a sample. Text is evaluated as zero.";
5384         };
5385         ExtraData =
5386         {
5387             0;
5388             ID_FUNCTION_GRP_STATISTIC;
5389             U2S( HID_FUNC_MITTELWERTA );
5390             VAR_ARGS;   0;
5391             0;
5392         };
5393         String 2 // Name of Parameter 1
5394         {
5395             Text [ en-US ] = "value ";
5396         };
5397         String 3 // Description of Parameter 1
5398         {
5399             Text [ en-US ] = "Value 1; value 2; ... are 1 to 30 arguments representing a sample taken from a basic total population.";
5400         };
5401     };
5402      // -=*# Resource for function SUMQUADABW #*=-
5403     Resource SC_OPCODE_DEV_SQ
5404     {
5405         String 1 // Description
5406         {
5407             Text [ en-US ] = "Returns the sum of squares of deviations from the sample mean value" ;
5408         };
5409         ExtraData =
5410         {
5411             0;
5412             ID_FUNCTION_GRP_STATISTIC;
5413             U2S( HID_FUNC_SUMQUADABW );
5414             VAR_ARGS;   0;
5415             0;
5416         };
5417         String 2 // Name of Parameter 1
5418         {
5419             Text [ en-US ] = "number " ;
5420         };
5421         String 3 // Description of Parameter 1
5422         {
5423             Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." ;
5424         };
5425     };
5426      // -=*# Resource for function MITTELABW #*=-
5427     Resource SC_OPCODE_AVE_DEV
5428     {
5429         String 1 // Description
5430         {
5431             Text [ en-US ] = "Returns the average of the absolute deviations of a sample from the mean." ;
5432         };
5433         ExtraData =
5434         {
5435             0;
5436             ID_FUNCTION_GRP_STATISTIC;
5437             U2S( HID_FUNC_MITTELABW );
5438             VAR_ARGS;   0;
5439             0;
5440         };
5441         String 2 // Name of Parameter 1
5442         {
5443             Text [ en-US ] = "number " ;
5444         };
5445         String 3 // Description of Parameter 1
5446         {
5447             Text [ en-US ] = "Number 1, number 2;...are 1 to 30 numerical arguments representing a sample." ;
5448         };
5449     };
5450      // -=*# Resource for function SCHIEFE #*=-
5451     Resource SC_OPCODE_SCHIEFE
5452     {
5453         String 1 // Description
5454         {
5455             Text [ en-US ] = "Returns the skewness of a distribution." ;
5456         };
5457         ExtraData =
5458         {
5459             0;
5460             ID_FUNCTION_GRP_STATISTIC;
5461             U2S( HID_FUNC_SCHIEFE );
5462             VAR_ARGS;   0;
5463             0;
5464         };
5465         String 2 // Name of Parameter 1
5466         {
5467             Text [ en-US ] = "number " ;
5468         };
5469         String 3 // Description of Parameter 1
5470         {
5471             Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments portraying a sample of the distribution." ;
5472         };
5473     };
5474      // -=*# Resource for function SKEWP #*=-
5475     Resource SC_OPCODE_SKEWP
5476     {
5477         String 1 // Description
5478         {
5479             Text [ en-US ] = "Returns the skewness of a distribution using the population of a random variable." ;
5480         };
5481         ExtraData =
5482         {
5483             0;
5484             ID_FUNCTION_GRP_STATISTIC;
5485             U2S( HID_FUNC_SKEWP );
5486             VAR_ARGS;   0;
5487             0;
5488         };
5489         String 2 // Name of Parameter 1
5490         {
5491             Text [ en-US ] = "number " ;
5492         };
5493         String 3 // Description of Parameter 1
5494         {
5495             Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments portraying the population." ;
5496         };
5497     };
5498      // -=*# Resource for function KURT #*=-
5499     Resource SC_OPCODE_KURT
5500     {
5501         String 1 // Description
5502         {
5503             Text [ en-US ] = "Returns the kurtosis of a distribution." ;
5504         };
5505         ExtraData =
5506         {
5507             0;
5508             ID_FUNCTION_GRP_STATISTIC;
5509             U2S( HID_FUNC_KURT );
5510             VAR_ARGS;   0;
5511             0;
5512         };
5513         String 2 // Name of Parameter 1
5514         {
5515             Text [ en-US ] = "number " ;
5516         };
5517         String 3 // Description of Parameter 1
5518         {
5519             Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments, representing a sample of the distribution." ;
5520         };
5521     };
5522      // -=*# Resource for function GEOMITTEL #*=-
5523     Resource SC_OPCODE_GEO_MEAN
5524     {
5525         String 1 // Description
5526         {
5527             Text [ en-US ] = "Returns the geometric mean of a sample." ;
5528         };
5529         ExtraData =
5530         {
5531             0;
5532             ID_FUNCTION_GRP_STATISTIC;
5533             U2S( HID_FUNC_GEOMITTEL );
5534             VAR_ARGS;   0;
5535             0;
5536         };
5537         String 2 // Name of Parameter 1
5538         {
5539             Text [ en-US ] = "number " ;
5540         };
5541         String 3 // Description of Parameter 1
5542         {
5543             Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." ;
5544         };
5545     };
5546      // -=*# Resource for function HARMITTEL #*=-
5547     Resource SC_OPCODE_HAR_MEAN
5548     {
5549         String 1 // Description
5550         {
5551             Text [ en-US ] = "Returns the harmonic mean of a sample." ;
5552         };
5553         ExtraData =
5554         {
5555             0;
5556             ID_FUNCTION_GRP_STATISTIC;
5557             U2S( HID_FUNC_HARMITTEL );
5558             VAR_ARGS;   0;
5559             0;
5560         };
5561         String 2 // Name of Parameter 1
5562         {
5563             Text [ en-US ] = "number " ;
5564         };
5565         String 3 // Description of Parameter 1
5566         {
5567             Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." ;
5568         };
5569     };
5570      // -=*# Resource for function MODALWERT #*=-
5571     Resource SC_OPCODE_MODAL_VALUE
5572     {
5573         String 1 // Description
5574         {
5575             Text [ en-US ] = "Returns the most common value in a sample." ;
5576         };
5577         ExtraData =
5578         {
5579             0;
5580             ID_FUNCTION_GRP_STATISTIC;
5581             U2S( HID_FUNC_MODALWERT );
5582             VAR_ARGS;   0;
5583             0;
5584         };
5585         String 2 // Name of Parameter 1
5586         {
5587             Text [ en-US ] = "number " ;
5588         };
5589         String 3 // Description of Parameter 1
5590         {
5591             Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." ;
5592         };
5593     };
5594      // -=*# Resource for function MEDIAN #*=-
5595     Resource SC_OPCODE_MEDIAN
5596     {
5597         String 1 // Description
5598         {
5599             Text [ en-US ] = "Returns the median of a given sample." ;
5600         };
5601         ExtraData =
5602         {
5603             0;
5604             ID_FUNCTION_GRP_STATISTIC;
5605             U2S( HID_FUNC_MEDIAN );
5606             VAR_ARGS;   0;
5607             0;
5608         };
5609         String 2 // Name of Parameter 1
5610         {
5611             Text [ en-US ] = "number " ;
5612         };
5613         String 3 // Description of Parameter 1
5614         {
5615             Text [ en-US ] = "Number 1, number 2, ... are 1 to 30 numerical arguments which portray a sample." ;
5616         };
5617     };
5618      // -=*# Resource for function QUANTIL #*=-
5619     Resource SC_OPCODE_PERCENTILE
5620     {
5621         String 1 // Description
5622         {
5623             Text [ en-US ] = "Returns the alpha quantile of a sample." ;
5624         };
5625         ExtraData =
5626         {
5627             0;
5628             ID_FUNCTION_GRP_STATISTIC;
5629             U2S( HID_FUNC_QUANTIL );
5630             2;  0;  0;
5631             0;
5632         };
5633         String 2 // Name of Parameter 1
5634         {
5635             Text [ en-US ] = "data" ;
5636         };
5637         String 3 // Description of Parameter 1
5638         {
5639             Text [ en-US ] = "The array of the data in the sample." ;
5640         };
5641         String 4 // Name of Parameter 2
5642         {
5643             Text [ en-US ] = "Alpha" ;
5644         };
5645         String 5 // Description of Parameter 2
5646         {
5647             Text [ en-US ] = "The percentage rate of the quantile between 0 and 1." ;
5648         };
5649     };
5650      // -=*# Resource for function QUARTILE #*=-
5651     Resource SC_OPCODE_QUARTILE
5652     {
5653         String 1 // Description
5654         {
5655             Text [ en-US ] = "Returns the quartile of a sample." ;
5656         };
5657         ExtraData =
5658         {
5659             0;
5660             ID_FUNCTION_GRP_STATISTIC;
5661             U2S( HID_FUNC_QUARTILE );
5662             2;  0;  0;
5663             0;
5664         };
5665         String 2 // Name of Parameter 1
5666         {
5667             Text [ en-US ] = "data" ;
5668         };
5669         String 3 // Description of Parameter 1
5670         {
5671             Text [ en-US ] = "The array of the data in the sample." ;
5672         };
5673         String 4 // Name of Parameter 2
5674         {
5675             Text [ en-US ] = "Type" ;
5676         };
5677         String 5 // Description of Parameter 2
5678         {
5679             Text [ en-US ] = "The type of the quartile (0 = MIN, 1 = 25%, 2 = 50 %, 3 = 75 %, 4 =MAX)." ;
5680         };
5681     };
5682      // -=*# Resource for function KGRÖSSTE #*=-
5683     Resource SC_OPCODE_LARGE
5684     {
5685         String 1 // Description
5686         {
5687             Text [ en-US ] = "Returns the k-th largest value of a sample." ;
5688         };
5689         ExtraData =
5690         {
5691             0;
5692             ID_FUNCTION_GRP_STATISTIC;
5693             U2S( HID_FUNC_KGROESSTE );
5694             2;  0;  0;
5695             0;
5696         };
5697         String 2 // Name of Parameter 1
5698         {
5699             Text [ en-US ] = "data" ;
5700         };
5701         String 3 // Description of Parameter 1
5702         {
5703             Text [ en-US ] = "The array of the data in the sample." ;
5704         };
5705         String 4 // Name of Parameter 2
5706         {
5707             Text [ en-US ] = "Rank_c" ;
5708         };
5709         String 5 // Description of Parameter 2
5710         {
5711             Text [ en-US ] = "The ranking of the value." ;
5712         };
5713     };
5714      // -=*# Resource for function KKLEINSTE #*=-
5715     Resource SC_OPCODE_SMALL
5716     {
5717         String 1 // Description
5718         {
5719             Text [ en-US ] = "Returns the k-th smallest value of a sample." ;
5720         };
5721         ExtraData =
5722         {
5723             0;
5724             ID_FUNCTION_GRP_STATISTIC;
5725             U2S( HID_FUNC_KKLEINSTE );
5726             2;  0;  0;
5727             0;
5728         };
5729         String 2 // Name of Parameter 1
5730         {
5731             Text [ en-US ] = "data" ;
5732         };
5733         String 3 // Description of Parameter 1
5734         {
5735             Text [ en-US ] = "The array of the data in the sample." ;
5736         };
5737         String 4 // Name of Parameter 2
5738         {
5739             Text [ en-US ] = "Rank_c" ;
5740         };
5741         String 5 // Description of Parameter 2
5742         {
5743             Text [ en-US ] = "The ranking of the value." ;
5744         };
5745     };
5746      // -=*# Resource for function QUANTILSRANG #*=-
5747     Resource SC_OPCODE_PERCENT_RANK
5748     {
5749         String 1 // Description
5750         {
5751             Text [ en-US ] = "Returns the percentage rank of a value in a sample." ;
5752         };
5753         ExtraData =
5754         {
5755             0;
5756             ID_FUNCTION_GRP_STATISTIC;
5757             U2S( HID_FUNC_QUANTILSRANG );
5758             2;  0;  0;
5759             0;
5760         };
5761         String 2 // Name of Parameter 1
5762         {
5763             Text [ en-US ] = "data" ;
5764         };
5765         String 3 // Description of Parameter 1
5766         {
5767             Text [ en-US ] = "The array of the data in the sample." ;
5768         };
5769         String 4 // Name of Parameter 2
5770         {
5771             Text [ en-US ] = "value" ;
5772         };
5773         String 5 // Description of Parameter 2
5774         {
5775             Text [ en-US ] = "The value for which percentage ranking is to be determined." ;
5776         };
5777     };
5778      // -=*# Resource for function RANG #*=-
5779     Resource SC_OPCODE_RANK
5780     {
5781         String 1 // Description
5782         {
5783             Text [ en-US ] = "Returns the ranking of a value in a sample." ;
5784         };
5785         ExtraData =
5786         {
5787             0;
5788             ID_FUNCTION_GRP_STATISTIC;
5789             U2S( HID_FUNC_RANG );
5790             3;  0;  0;  1;
5791             0;
5792         };
5793         String 2 // Name of Parameter 1
5794         {
5795             Text [ en-US ] = "value" ;
5796         };
5797         String 3 // Description of Parameter 1
5798         {
5799             Text [ en-US ] = "The value for which the rank is to be determined." ;
5800         };
5801         String 4 // Name of Parameter 2
5802         {
5803             Text [ en-US ] = "Data" ;
5804         };
5805         String 5 // Description of Parameter 2
5806         {
5807             Text [ en-US ] = "The array of the data in the sample." ;
5808         };
5809         String 6 // Name of Parameter 3
5810         {
5811             Text [ en-US ] = "Type" ;
5812         };
5813         String 7 // Description of Parameter 3
5814         {
5815             Text [ en-US ] = "Sequence order: 0 or omitted means descending, any other value than 0 means ascending." ;
5816         };
5817     };
5818      // -=*# Resource for function GESTUTZTMITTEL #*=-
5819     Resource SC_OPCODE_TRIM_MEAN
5820     {
5821         String 1 // Description
5822         {
5823             Text [ en-US ] = "Returns the mean of a sample without including the marginal values." ;
5824         };
5825         ExtraData =
5826         {
5827             0;
5828             ID_FUNCTION_GRP_STATISTIC;
5829             U2S( HID_FUNC_GESTUTZTMITTEL );
5830             2;  0;  0;
5831             0;
5832         };
5833         String 2 // Name of Parameter 1
5834         {
5835             Text [ en-US ] = "data" ;
5836         };
5837         String 3 // Description of Parameter 1
5838         {
5839             Text [ en-US ] = "The array of the data in the sample." ;
5840         };
5841         String 4 // Name of Parameter 2
5842         {
5843             Text [ en-US ] = "Alpha" ;
5844         };
5845         String 5 // Description of Parameter 2
5846         {
5847             Text [ en-US ] = "The percentage of marginal data that is not to be taken into account." ;
5848         };
5849     };
5850      // -=*# Resource for function WAHRSCHBEREICH #*=-
5851     Resource SC_OPCODE_PROB
5852     {
5853         String 1 // Description
5854         {
5855             Text [ en-US ] = "Returns the discrete probability of an interval." ;
5856         };
5857         ExtraData =
5858         {
5859             0;
5860             ID_FUNCTION_GRP_STATISTIC;
5861             U2S( HID_FUNC_WAHRSCHBEREICH );
5862             4;  0;  0;  0;  1;
5863             0;
5864         };
5865         String 2 // Name of Parameter 1
5866         {
5867             Text [ en-US ] = "data" ;
5868         };
5869         String 3 // Description of Parameter 1
5870         {
5871             Text [ en-US ] = "The sample data array." ;
5872         };
5873         String 4 // Name of Parameter 2
5874         {
5875             Text [ en-US ] = "probability" ;
5876         };
5877         String 5 // Description of Parameter 2
5878         {
5879             Text [ en-US ] = "The array of the associated probabilities." ;
5880         };
5881         String 6 // Name of Parameter 3
5882         {
5883             Text [ en-US ] = "Start" ;
5884         };
5885         String 7 // Description of Parameter 3
5886         {
5887             Text [ en-US ] = "The start of the value interval whose probabilities is to be totalled." ;
5888         };
5889         String 8 // Name of Parameter 4
5890         {
5891             Text [ en-US ] = "End" ;
5892         };
5893         String 9 // Description of Parameter 4
5894         {
5895             Text [ en-US ] = "The end of the value interval where the probabilities are to be totalled." ;
5896         };
5897     };
5898      // -=*# Resource for function B #*=-
5899     Resource SC_OPCODE_B
5900     {
5901         String 1 // Description
5902         {
5903             Text [ en-US ] = "Returns the probability of a trial result using binomial distribution." ;
5904         };
5905         ExtraData =
5906         {
5907             0;
5908             ID_FUNCTION_GRP_STATISTIC;
5909             U2S( HID_FUNC_B );
5910             4;  0;  0;  0;  1;
5911             0;
5912         };
5913         String 2 // Name of Parameter 1
5914         {
5915             Text [ en-US ] = "trials" ;
5916         };
5917         String 3 // Description of Parameter 1
5918         {
5919             Text [ en-US ] = "The number of trials." ;
5920         };
5921         String 4 // Name of Parameter 2
5922         {
5923             Text [ en-US ] = "SP" ;
5924         };
5925         String 5 // Description of Parameter 2
5926         {
5927             Text [ en-US ] = "The individual probability of a trial result." ;
5928         };
5929         String 6 // Name of Parameter 3
5930         {
5931             Text [ en-US ] = "T_1" ;
5932         };
5933         String 7 // Description of Parameter 3
5934         {
5935             Text [ en-US ] = "Lower limit for the number of trials." ;
5936         };
5937         String 8 // Name of Parameter 4
5938         {
5939             Text [ en-US ] = "T_2" ;
5940         };
5941         String 9 // Description of Parameter 4
5942         {
5943             Text [ en-US ] = "Upper limit for the number of trials." ;
5944         };
5945     };
5946      // -=*# Resource for function PHI #*=-
5947     Resource SC_OPCODE_PHI
5948     {
5949         String 1 // Description
5950         {
5951             Text [ en-US ] = "Values of the distribution function for a standard normal distribution." ;
5952         };
5953         ExtraData =
5954         {
5955             0;
5956             ID_FUNCTION_GRP_STATISTIC;
5957             U2S( HID_FUNC_PHI );
5958             1;  0;
5959             0;
5960         };
5961         String 2 // Name of Parameter 1
5962         {
5963             Text [ en-US ] = "number" ;
5964         };
5965         String 3 // Description of Parameter 1
5966         {
5967             Text [ en-US ] = "The value for which the standard normal distribution is to be calculated." ;
5968         };
5969     };
5970      // -=*# Resource for function GAUSS #*=-
5971     Resource SC_OPCODE_GAUSS
5972     {
5973         String 1 // Description
5974         {
5975             Text [ en-US ] = "Returns the integral values of the standard normal cumulative distribution." ;
5976         };
5977         ExtraData =
5978         {
5979             0;
5980             ID_FUNCTION_GRP_STATISTIC;
5981             U2S( HID_FUNC_GAUSS );
5982             1;  0;
5983             0;
5984         };
5985         String 2 // Name of Parameter 1
5986         {
5987             Text [ en-US ] = "Number" ;
5988         };
5989         String 3 // Description of Parameter 1
5990         {
5991             Text [ en-US ] = "The value for which the integral value of the standard normal distribution is to be calculated." ;
5992         };
5993     };
5994      // -=*# Resource for function FISHER #*=-
5995     Resource SC_OPCODE_FISHER
5996     {
5997         String 1 // Description
5998         {
5999             Text [ en-US ] = "Returns the Fisher transformation." ;
6000         };
6001         ExtraData =
6002         {
6003             0;
6004             ID_FUNCTION_GRP_STATISTIC;
6005             U2S( HID_FUNC_FISHER );
6006             1;  0;
6007             0;
6008         };
6009         String 2 // Name of Parameter 1
6010         {
6011             Text [ en-US ] = "Number" ;
6012         };
6013         String 3 // Description of Parameter 1
6014         {
6015             Text [ en-US ] = "The value to be transformed (-1 < VALUE < 1)." ;
6016         };
6017     };
6018      // -=*# Resource for function FISHERINV #*=-
6019     Resource SC_OPCODE_FISHER_INV
6020     {
6021         String 1 // Description
6022         {
6023             Text [ en-US ] = "Returns the inverse of the Fisher transformation." ;
6024         };
6025         ExtraData =
6026         {
6027             0;
6028             ID_FUNCTION_GRP_STATISTIC;
6029             U2S( HID_FUNC_FISHERINV );
6030             1;  0;
6031             0;
6032         };
6033         String 2 // Name of Parameter 1
6034         {
6035             Text [ en-US ] = "Number" ;
6036         };
6037         String 3 // Description of Parameter 1
6038         {
6039             Text [ en-US ] = "The value that is to be transformed back." ;
6040         };
6041     };
6042      // -=*# Resource for function BINOMVERT #*=-
6043     Resource SC_OPCODE_BINOM_DIST
6044     {
6045         String 1 // Description
6046         {
6047             Text [ en-US ] = "Values of the binomial distribution." ;
6048         };
6049         ExtraData =
6050         {
6051             0;
6052             ID_FUNCTION_GRP_STATISTIC;
6053             U2S( HID_FUNC_BINOMVERT );
6054             4;  0;  0;  0;  0;
6055             0;
6056         };
6057         String 2 // Name of Parameter 1
6058         {
6059             Text [ en-US ] = "X" ;
6060         };
6061         String 3 // Description of Parameter 1
6062         {
6063             Text [ en-US ] = "The number of successes in a series of trials." ;
6064         };
6065         String 4 // Name of Parameter 2
6066         {
6067             Text [ en-US ] = "trials" ;
6068         };
6069         String 5 // Description of Parameter 2
6070         {
6071             Text [ en-US ] = "The total number of trials." ;
6072         };
6073         String 6 // Name of Parameter 3
6074         {
6075             Text [ en-US ] = "SP" ;
6076         };
6077         String 7 // Description of Parameter 3
6078         {
6079             Text [ en-US ] = "The success probability of a trial." ;
6080         };
6081         String 8 // Name of Parameter 4
6082         {
6083             Text [ en-US ] = "C" ;
6084         };
6085         String 9 // Description of Parameter 4
6086         {
6087             Text [ en-US ] = "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability." ;
6088         };
6089     };
6090      // -=*# Resource for function BINOM.DIST #*=-
6091     Resource SC_OPCODE_BINOM_DIST_MS
6092     {
6093         String 1 // Description
6094         {
6095             Text [ en-US ] = "Values of the binomial distribution." ;
6096         };
6097         ExtraData =
6098         {
6099             0;
6100             ID_FUNCTION_GRP_STATISTIC;
6101             U2S( HID_FUNC_BINOM_DIST_MS );
6102             4;  0;  0;  0;  0;
6103             0;
6104         };
6105         String 2 // Name of Parameter 1
6106         {
6107             Text [ en-US ] = "X" ;
6108         };
6109         String 3 // Description of Parameter 1
6110         {
6111             Text [ en-US ] = "The number of successes in a series of trials." ;
6112         };
6113         String 4 // Name of Parameter 2
6114         {
6115             Text [ en-US ] = "trials" ;
6116         };
6117         String 5 // Description of Parameter 2
6118         {
6119             Text [ en-US ] = "The total number of trials." ;
6120         };
6121         String 6 // Name of Parameter 3
6122         {
6123             Text [ en-US ] = "SP" ;
6124         };
6125         String 7 // Description of Parameter 3
6126         {
6127             Text [ en-US ] = "The success probability of a trial." ;
6128         };
6129         String 8 // Name of Parameter 4
6130         {
6131             Text [ en-US ] = "C" ;
6132         };
6133         String 9 // Description of Parameter 4
6134         {
6135             Text [ en-US ] = "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability." ;
6136         };
6137     };
6138      // -=*# Resource for function NEGBINOMVERT #*=-
6139     Resource SC_OPCODE_NEG_BINOM_VERT
6140     {
6141         String 1 // Description
6142         {
6143             Text [ en-US ] = "Values of the negative binomial distribution." ;
6144         };
6145         ExtraData =
6146         {
6147             0;
6148             ID_FUNCTION_GRP_STATISTIC;
6149             U2S( HID_FUNC_NEGBINOMVERT );
6150             3;  0;  0;  0;
6151             0;
6152         };
6153         String 2 // Name of Parameter 1
6154         {
6155             Text [ en-US ] = "X" ;
6156         };
6157         String 3 // Description of Parameter 1
6158         {
6159             Text [ en-US ] = "The number of failures in the trial range." ;
6160         };
6161         String 4 // Name of Parameter 2
6162         {
6163             Text [ en-US ] = "R" ;
6164         };
6165         String 5 // Description of Parameter 2
6166         {
6167             Text [ en-US ] = "The number of successes in the trial sequence." ;
6168         };
6169         String 6 // Name of Parameter 3
6170         {
6171             Text [ en-US ] = "SP" ;
6172         };
6173         String 7 // Description of Parameter 3
6174         {
6175             Text [ en-US ] = "The success probability of a trial." ;
6176         };
6177     };
6178      // -=*# Resource for function KRITBINOM #*=-
6179     Resource SC_OPCODE_KRIT_BINOM
6180     {
6181         String 1 // Description
6182         {
6183             Text [ en-US ] = "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value." ;
6184         };
6185         ExtraData =
6186         {
6187             0;
6188             ID_FUNCTION_GRP_STATISTIC;
6189             U2S( HID_FUNC_KRITBINOM );
6190             3;  0;  0;  0;
6191             0;
6192         };
6193         String 2 // Name of Parameter 1
6194         {
6195             Text [ en-US ] = "trials" ;
6196         };
6197         String 3 // Description of Parameter 1
6198         {
6199             Text [ en-US ] = "The total number of trials." ;
6200         };
6201         String 4 // Name of Parameter 2
6202         {
6203             Text [ en-US ] = "SP" ;
6204         };
6205         String 5 // Description of Parameter 2
6206         {
6207             Text [ en-US ] = "The success probability of a trial." ;
6208         };
6209         String 6 // Name of Parameter 3
6210         {
6211             Text [ en-US ] = "alpha" ;
6212         };
6213         String 7 // Description of Parameter 3
6214         {
6215             Text [ en-US ] = "The border probability that is attained or exceeded." ;
6216         };
6217     };
6218      // -=*# Resource for function BINOM.INV #*=-
6219     Resource SC_OPCODE_BINOM_INV
6220     {
6221         String 1 // Description
6222         {
6223             Text [ en-US ] = "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value." ;
6224         };
6225         ExtraData =
6226         {
6227             0;
6228             ID_FUNCTION_GRP_STATISTIC;
6229             U2S( HID_FUNC_BINOM_INV_MS );
6230             3;  0;  0;  0;
6231             0;
6232         };
6233         String 2 // Name of Parameter 1
6234         {
6235             Text [ en-US ] = "trials" ;
6236         };
6237         String 3 // Description of Parameter 1
6238         {
6239             Text [ en-US ] = "The total number of trials." ;
6240         };
6241         String 4 // Name of Parameter 2
6242         {
6243             Text [ en-US ] = "SP" ;
6244         };
6245         String 5 // Description of Parameter 2
6246         {
6247             Text [ en-US ] = "The success probability of a trial." ;
6248         };
6249         String 6 // Name of Parameter 3
6250         {
6251             Text [ en-US ] = "alpha" ;
6252         };
6253         String 7 // Description of Parameter 3
6254         {
6255             Text [ en-US ] = "The border probability that is attained or exceeded." ;
6256         };
6257     };
6258      // -=*# Resource for function POISSON #*=-
6259     Resource SC_OPCODE_POISSON_DIST
6260     {
6261         String 1 // Description
6262         {
6263             Text [ en-US ] = "Returns the Poisson distribution." ;
6264         };
6265         ExtraData =
6266         {
6267             0;
6268             ID_FUNCTION_GRP_STATISTIC;
6269             U2S( HID_FUNC_POISSON );
6270             3;  0;  0;  1;
6271             0;
6272         };
6273         String 2 // Name of Parameter 1
6274         {
6275             Text [ en-US ] = "Number" ;
6276         };
6277         String 3 // Description of Parameter 1
6278         {
6279             Text [ en-US ] = "The value for which the Poisson distribution is to be calculated." ;
6280         };
6281         String 4 // Name of Parameter 2
6282         {
6283             Text [ en-US ] = "mean" ;
6284         };
6285         String 5 // Description of Parameter 2
6286         {
6287             Text [ en-US ] = "Mean. The mean value of the Poisson distribution." ;
6288         };
6289         String 6 // Name of Parameter 3
6290         {
6291             Text [ en-US ] = "Cumulative" ;
6292         };
6293         String 7 // Description of Parameter 3
6294         {
6295             Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
6296         };
6297     };
6298      // -=*# Resource for function POISSON.DIST #*=-
6299     Resource SC_OPCODE_POISSON_DIST_MS
6300     {
6301         String 1 // Description
6302         {
6303             Text [ en-US ] = "Returns the Poisson distribution." ;
6304         };
6305         ExtraData =
6306         {
6307             0;
6308             ID_FUNCTION_GRP_STATISTIC;
6309             U2S( HID_FUNC_POISSON_DIST_MS );
6310             3;  0;  0;  1;
6311             0;
6312         };
6313         String 2 // Name of Parameter 1
6314         {
6315             Text [ en-US ] = "Number" ;
6316         };
6317         String 3 // Description of Parameter 1
6318         {
6319             Text [ en-US ] = "The value for which the Poisson distribution is to be calculated." ;
6320         };
6321         String 4 // Name of Parameter 2
6322         {
6323             Text [ en-US ] = "mean" ;
6324         };
6325         String 5 // Description of Parameter 2
6326         {
6327             Text [ en-US ] = "Mean. The mean value of the Poisson distribution." ;
6328         };
6329         String 6 // Name of Parameter 3
6330         {
6331             Text [ en-US ] = "Cumulative" ;
6332         };
6333         String 7 // Description of Parameter 3
6334         {
6335             Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
6336         };
6337     };
6338      // -=*# Resource for function NORMVERT #*=-
6339     Resource SC_OPCODE_NORM_DIST
6340     {
6341         String 1 // Description
6342         {
6343             Text [ en-US ] = "Values of the normal distribution." ;
6344         };
6345         ExtraData =
6346         {
6347             0;
6348             ID_FUNCTION_GRP_STATISTIC;
6349             U2S( HID_FUNC_NORMVERT );
6350             4;  0;  0;  0;  1;
6351             0;
6352         };
6353         String 2 // Name of Parameter 1
6354         {
6355             Text [ en-US ] = "Number" ;
6356         };
6357         String 3 // Description of Parameter 1
6358         {
6359             Text [ en-US ] = "The value for which the normal distribution is to be calculated." ;
6360         };
6361         String 4 // Name of Parameter 2
6362         {
6363             Text [ en-US ] = "Mean" ;
6364         };
6365         String 5 // Description of Parameter 2
6366         {
6367             Text [ en-US ] = "The mean value. The mean value of the normal distribution." ;
6368         };
6369         String 6 // Name of Parameter 3
6370         {
6371             Text [ en-US ] = "STDEV" ;
6372         };
6373         String 7 // Description of Parameter 3
6374         {
6375             Text [ en-US ] = "Standard deviation. The standard deviation of the normal distribution." ;
6376         };
6377         String 8 // Name of Parameter 4
6378         {
6379             Text [ en-US ] = "C" ;
6380         };
6381         String 9 // Description of Parameter 4
6382         {
6383             Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
6384         };
6385     };
6386      // -=*# Resource for function NORMINV #*=-
6387     Resource SC_OPCODE_NORM_INV
6388     {
6389         String 1 // Description
6390         {
6391             Text [ en-US ] = "Values of the inverse normal distribution." ;
6392         };
6393         ExtraData =
6394         {
6395             0;
6396             ID_FUNCTION_GRP_STATISTIC;
6397             U2S( HID_FUNC_NORMINV );
6398             3;  0;  0;  0;
6399             0;
6400         };
6401         String 2 // Name of Parameter 1
6402         {
6403             Text [ en-US ] = "number" ;
6404         };
6405         String 3 // Description of Parameter 1
6406         {
6407             Text [ en-US ] = "The probability value for which the inverse normal distribution is to be calculated." ;
6408         };
6409         String 4 // Name of Parameter 2
6410         {
6411             Text [ en-US ] = "mean" ;
6412         };
6413         String 5 // Description of Parameter 2
6414         {
6415             Text [ en-US ] = "The mean value. The mean value of the normal distribution." ;
6416         };
6417         String 6 // Name of Parameter 3
6418         {
6419             Text [ en-US ] = "STDEV" ;
6420         };
6421         String 7 // Description of Parameter 3
6422         {
6423             Text [ en-US ] = "Standard deviation. The standard deviation of the normal distribution." ;
6424         };
6425     };
6426      // -=*# Resource for function STANDNORMVERT #*=-
6427     Resource SC_OPCODE_STD_NORM_DIST
6428     {
6429         String 1 // Description
6430         {
6431             Text [ en-US ] = "The values of the standard normal cumulative distribution." ;
6432         };
6433         ExtraData =
6434         {
6435             0;
6436             ID_FUNCTION_GRP_STATISTIC;
6437             U2S( HID_FUNC_STANDNORMVERT );
6438             1;  0;
6439             0;
6440         };
6441         String 2 // Name of Parameter 1
6442         {
6443             Text [ en-US ] = "Number" ;
6444         };
6445         String 3 // Description of Parameter 1
6446         {
6447             Text [ en-US ] = "The value for which the standard normal distribution is to be calculated." ;
6448         };
6449     };
6450      // -=*# Resource for function STANDNORMINV #*=-
6451     Resource SC_OPCODE_S_NORM_INV
6452     {
6453         String 1 // Description
6454         {
6455             Text [ en-US ] = "Values of the inverse standard normal distribution." ;
6456         };
6457         ExtraData =
6458         {
6459             0;
6460             ID_FUNCTION_GRP_STATISTIC;
6461             U2S( HID_FUNC_STANDNORMINV );
6462             1;  0;
6463             0;
6464         };
6465         String 2 // Name of Parameter 1
6466         {
6467             Text [ en-US ] = "number" ;
6468         };
6469         String 3 // Description of Parameter 1
6470         {
6471             Text [ en-US ] = "The probability value for which the inverse standard normal distribution is to be calculated." ;
6472         };
6473     };
6474      // -=*# Resource for function LOGNORMVERT #*=-
6475     Resource SC_OPCODE_LOG_NORM_DIST
6476     {
6477         String 1 // Description
6478         {
6479             Text [ en-US ] = "Values of the log normal distribution." ;
6480         };
6481         ExtraData =
6482         {
6483             0;
6484             ID_FUNCTION_GRP_STATISTIC;
6485             U2S( HID_FUNC_LOGNORMVERT );
6486             4;  0;  1;  1;  1;
6487             0;
6488         };
6489         String 2 // Name of Parameter 1
6490         {
6491             Text [ en-US ] = "Number" ;
6492         };
6493         String 3 // Description of Parameter 1
6494         {
6495             Text [ en-US ] = "The value for which the log normal distribution is to be calculated." ;
6496         };
6497         String 4 // Name of Parameter 2
6498         {
6499             Text [ en-US ] = "mean" ;
6500         };
6501         String 5 // Description of Parameter 2
6502         {
6503             Text [ en-US ] = "The mean value of the log normal distribution. It is set to 0 if omitted." ;
6504         };
6505         String 6 // Name of Parameter 3
6506         {
6507             Text [ en-US ] = "STDEV" ;
6508         };
6509         String 7 // Description of Parameter 3
6510         {
6511             Text [ en-US ] = "The standard deviation of the log normal distribution. It is set to 1 if omitted." ;
6512         };
6513         String 8 // Name of Parameter 4
6514         {
6515             Text [ en-US] = "Cumulative";
6516         };
6517         String 9 // Description of Parameter 4
6518         {
6519             Text [ en-US] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
6520         };
6521     };
6522      // -=*# Resource for function LOGINV #*=-
6523     Resource SC_OPCODE_LOG_INV
6524     {
6525         String 1 // Description
6526         {
6527             Text [ en-US ] = "Values of the inverse of the lognormal distribution." ;
6528         };
6529         ExtraData =
6530         {
6531             0;
6532             ID_FUNCTION_GRP_STATISTIC;
6533             U2S( HID_FUNC_LOGINV );
6534             3;  0;  0;  0;
6535             0;
6536         };
6537         String 2 // Name of Parameter 1
6538         {
6539             Text [ en-US ] = "number" ;
6540         };
6541         String 3 // Description of Parameter 1
6542         {
6543             Text [ en-US ] = "The probability value for which the inverse log normal distribution is to be calculated." ;
6544         };
6545         String 4 // Name of Parameter 2
6546         {
6547             Text [ en-US ] = "mean" ;
6548         };
6549         String 5 // Description of Parameter 2
6550         {
6551             Text [ en-US ] = "Mean value. The mean value of the log normal distribution." ;
6552         };
6553         String 6 // Name of Parameter 3
6554         {
6555             Text [ en-US ] = "STDEV" ;
6556         };
6557         String 7 // Description of Parameter 3
6558         {
6559             Text [ en-US ] = "Standard deviation. The standard deviation of the log normal distribution." ;
6560         };
6561     };
6562      // -=*# Resource for function EXPONVERT #*=-
6563     Resource SC_OPCODE_EXP_DIST
6564     {
6565         String 1 // Description
6566         {
6567             Text [ en-US ] = "Values of the exponential distribution." ;
6568         };
6569         ExtraData =
6570         {
6571             0;
6572             ID_FUNCTION_GRP_STATISTIC;
6573             U2S( HID_FUNC_EXPONVERT );
6574             3;  0;  0;  0;
6575             0;
6576         };
6577         String 2 // Name of Parameter 1
6578         {
6579             Text [ en-US ] = "Number" ;
6580         };
6581         String 3 // Description of Parameter 1
6582         {
6583             Text [ en-US ] = "The value to which the exponential distribution is to be calculated." ;
6584         };
6585         String 4 // Name of Parameter 2
6586         {
6587             Text [ en-US ] = "lambda" ;
6588         };
6589         String 5 // Description of Parameter 2
6590         {
6591             Text [ en-US ] = "The parameters of the exponential distribution." ;
6592         };
6593         String 6 // Name of Parameter 3
6594         {
6595             Text [ en-US ] = "C" ;
6596         };
6597         String 7 // Description of Parameter 3
6598         {
6599             Text [ en-US ] = "Cumulated. C=0 calculates the density function, C=1 the distribution." ;
6600         };
6601     };
6602      // -=*# Resource for function EXPON.DIST #*=-
6603     Resource SC_OPCODE_EXP_DIST_MS
6604     {
6605         String 1 // Description
6606         {
6607             Text [ en-US ] = "Values of the exponential distribution." ;
6608         };
6609         ExtraData =
6610         {
6611             0;
6612             ID_FUNCTION_GRP_STATISTIC;
6613             U2S( HID_FUNC_EXP_DIST_MS );
6614             3;  0;  0;  0;
6615             0;
6616         };
6617         String 2 // Name of Parameter 1
6618         {
6619             Text [ en-US ] = "Number" ;
6620         };
6621         String 3 // Description of Parameter 1
6622         {
6623             Text [ en-US ] = "The value to which the exponential distribution is to be calculated." ;
6624         };
6625         String 4 // Name of Parameter 2
6626         {
6627             Text [ en-US ] = "lambda" ;
6628         };
6629         String 5 // Description of Parameter 2
6630         {
6631             Text [ en-US ] = "The parameters of the exponential distribution." ;
6632         };
6633         String 6 // Name of Parameter 3
6634         {
6635             Text [ en-US ] = "C" ;
6636         };
6637         String 7 // Description of Parameter 3
6638         {
6639             Text [ en-US ] = "Cumulated. C=0 calculates the density function, C=1 the distribution." ;
6640         };
6641     };
6642      // -=*# Resource for function GAMMAVERT #*=-
6643     Resource SC_OPCODE_GAMMA_DIST
6644     {
6645         String 1 // Description
6646         {
6647             Text [ en-US ] = "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution." ;
6648         };
6649         ExtraData =
6650         {
6651             0;
6652             ID_FUNCTION_GRP_STATISTIC;
6653             U2S( HID_FUNC_GAMMAVERT );
6654             4;  0;  0;  0;  1;
6655             0;
6656         };
6657         String 2 // Name of Parameter 1
6658         {
6659             Text [ en-US ] = "Number" ;
6660         };
6661         String 3 // Description of Parameter 1
6662         {
6663             Text [ en-US ] = "The value for which the gamma distribution is to be calculated." ;
6664         };
6665         String 4 // Name of Parameter 2
6666         {
6667             Text [ en-US ] = "alpha" ;
6668         };
6669         String 5 // Description of Parameter 2
6670         {
6671             Text [ en-US ] = "The Alpha parameter of the Gamma distribution." ;
6672         };
6673         String 6 // Name of Parameter 3
6674         {
6675             Text [ en-US ] = "beta" ;
6676         };
6677         String 7 // Description of Parameter 3
6678         {
6679             Text [ en-US ] = "The Beta parameter of the Gamma distribution." ;
6680         };
6681         String 8 // Name of Parameter 4
6682         {
6683             Text [ en-US ] = "Cumulative" ;
6684         };
6685         String 9 // Description of Parameter 4
6686         {
6687             Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
6688         };
6689     };
6690      // -=*# Resource for function GAMMAINV #*=-
6691     Resource SC_OPCODE_GAMMA_INV
6692     {
6693         String 1 // Description
6694         {
6695             Text [ en-US ] = "Values of the inverse gamma distribution." ;
6696         };
6697         ExtraData =
6698         {
6699             0;
6700             ID_FUNCTION_GRP_STATISTIC;
6701             U2S( HID_FUNC_GAMMAINV );
6702             3;  0;  0;  0;
6703             0;
6704         };
6705         String 2 // Name of Parameter 1
6706         {
6707             Text [ en-US ] = "Number" ;
6708         };
6709         String 3 // Description of Parameter 1
6710         {
6711             Text [ en-US ] = "The probability value for which the inverse gamma distribution is to be calculated." ;
6712         };
6713         String 4 // Name of Parameter 2
6714         {
6715             Text [ en-US ] = "alpha" ;
6716         };
6717         String 5 // Description of Parameter 2
6718         {
6719             Text [ en-US ] = "The Alpha (shape) parameter of the Gamma distribution." ;
6720         };
6721         String 6 // Name of Parameter 3
6722         {
6723             Text [ en-US ] = "beta" ;
6724         };
6725         String 7 // Description of Parameter 3
6726         {
6727             Text [ en-US ] = "The Beta (scale) parameter of the Gamma distribution." ;
6728         };
6729     };
6730      // -=*# Resource for function GAMMALN #*=-
6731     Resource SC_OPCODE_GAMMA_LN
6732     {
6733         String 1 // Description
6734         {
6735             Text [ en-US ] = "Returns the natural logarithm of the gamma function." ;
6736         };
6737         ExtraData =
6738         {
6739             0;
6740             ID_FUNCTION_GRP_STATISTIC;
6741             U2S( HID_FUNC_GAMMALN );
6742             1;  0;
6743             0;
6744         };
6745         String 2 // Name of Parameter 1
6746         {
6747             Text [ en-US ] = "Number" ;
6748         };
6749         String 3 // Description of Parameter 1
6750         {
6751             Text [ en-US ] = "The value for which the natural logarithm of the gamma function is to be calculated." ;
6752         };
6753     };
6755      // -=*# Resource for function GAMMA #*=-
6756     Resource SC_OPCODE_GAMMA
6757     {
6758         String 1 // Description
6759         {
6760             Text [ en-US ] = "Returns the value of the Gamma function." ;
6761         };
6762         ExtraData =
6763         {
6764             0;
6765             ID_FUNCTION_GRP_STATISTIC;
6766             U2S( HID_FUNC_GAMMA );
6767             1;  0;
6768             0;
6769         };
6770         String 2 // Name of Parameter 1
6771         {
6772             Text [ en-US ] = "Number" ;
6773         };
6774         String 3 // Description of Parameter 1
6775         {
6776             Text [ en-US ] = "The value for which the Gamma function is to be calculated." ;
6777         };
6778     };
6780      // -=*# Resource for function BETAVERT #*=-
6781     Resource SC_OPCODE_BETA_DIST
6782     {
6783         String 1 // Description
6784         {
6785             Text [ en-US ] = "Values of the beta distribution." ;
6786         };
6787         ExtraData =
6788         {
6789             0;
6790             ID_FUNCTION_GRP_STATISTIC;
6791             U2S( HID_FUNC_BETAVERT );
6792             6;  0;  0;  0;  1;  1;  1;
6793             0;
6794         };
6795         String 2 // Name of Parameter 1
6796         {
6797             Text [ en-US ] = "number" ;
6798         };
6799         String 3 // Description of Parameter 1
6800         {
6801             Text [ en-US ] = "The value for which the beta distribution is to be calculated." ;
6802         };
6803         String 4 // Name of Parameter 2
6804         {
6805             Text [ en-US ] = "alpha" ;
6806         };
6807         String 5 // Description of Parameter 2
6808         {
6809             Text [ en-US ] = "The Alpha parameter of the Beta distribution." ;
6810         };
6811         String 6 // Name of Parameter 3
6812         {
6813             Text [ en-US ] = "beta" ;
6814         };
6815         String 7 // Description of Parameter 3
6816         {
6817             Text [ en-US ] = "The Beta parameter of the Beta distribution." ;
6818         };
6819         String 8 // Name of Parameter 4
6820         {
6821             Text [ en-US ] = "Start" ;
6822         };
6823         String 9 // Description of Parameter 4
6824         {
6825             Text [ en-US ] = "The starting value for the value interval of the distribution." ;
6826         };
6827         String 10 // Name of Parameter 5
6828         {
6829             Text [ en-US ] = "End" ;
6830         };
6831         String 11 // Description of Parameter 5
6832         {
6833             Text [ en-US ] = "The final value for the value interval of the distribution." ;
6834         };
6835         String 12 // Name of Parameter 6
6836         {
6837             Text [en-US ] = "Cumulative" ;
6838         };
6839         String 13 // Description of Parameter 6
6840         {
6841             Text [ en-US ] = "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function.";
6842         };
6843     };
6844      // -=*# Resource for function BETAINV #*=-
6845     Resource SC_OPCODE_BETA_INV
6846     {
6847         String 1 // Description
6848         {
6849             Text [ en-US ] = "Values of the inverse beta distribution." ;
6850         };
6851         ExtraData =
6852         {
6853             0;
6854             ID_FUNCTION_GRP_STATISTIC;
6855             U2S( HID_FUNC_BETAINV );
6856             5;  0;  0;  0;  1;  1;
6857             0;
6858         };
6859         String 2 // Name of Parameter 1
6860         {
6861             Text [ en-US ] = "number" ;
6862         };
6863         String 3 // Description of Parameter 1
6864         {
6865             Text [ en-US ] = "The probability value for which the inverse beta distribution is to be calculated." ;
6866         };
6867         String 4 // Name of Parameter 2
6868         {
6869             Text [ en-US ] = "alpha" ;
6870         };
6871         String 5 // Description of Parameter 2
6872         {
6873             Text [ en-US ] = "The Alpha parameter of the Beta distribution." ;
6874         };
6875         String 6 // Name of Parameter 3
6876         {
6877             Text [ en-US ] = "beta" ;
6878         };
6879         String 7 // Description of Parameter 3
6880         {
6881             Text [ en-US ] = "The Beta parameter of the Beta distribution." ;
6882         };
6883         String 8 // Name of Parameter 4
6884         {
6885             Text [ en-US ] = "Start" ;
6886         };
6887         String 9 // Description of Parameter 4
6888         {
6889             Text [ en-US ] = "The starting value for the value interval of the distribution." ;
6890         };
6891         String 10 // Name of Parameter 5
6892         {
6893             Text [ en-US ] = "End" ;
6894         };
6895         String 11 // Description of Parameter 5
6896         {
6897             Text [ en-US ] = "The final value for the value interval of the distribution." ;
6898         };
6899     };
6900      // -=*# Resource for function BETA.DIST #*=-
6901     Resource SC_OPCODE_BETA_DIST_MS
6902     {
6903         String 1 // Description
6904         {
6905             Text [ en-US ] = "Values of the beta distribution." ;
6906         };
6907         ExtraData =
6908         {
6909             0;
6910             ID_FUNCTION_GRP_STATISTIC;
6911             U2S( HID_FUNC_BETADIST_MS );
6912             6;  0;  0;  0;  0;  1;  1;
6913             0;
6914         };
6915         String 2 // Name of Parameter 1
6916         {
6917             Text [ en-US ] = "number" ;
6918         };
6919         String 3 // Description of Parameter 1
6920         {
6921             Text [ en-US ] = "The value for which the beta distribution is to be calculated." ;
6922         };
6923         String 4 // Name of Parameter 2
6924         {
6925             Text [ en-US ] = "alpha" ;
6926         };
6927         String 5 // Description of Parameter 2
6928         {
6929             Text [ en-US ] = "The Alpha parameter of the Beta distribution." ;
6930         };
6931         String 6 // Name of Parameter 3
6932         {
6933             Text [ en-US ] = "beta" ;
6934         };
6935         String 7 // Description of Parameter 3
6936         {
6937             Text [ en-US ] = "The Beta parameter of the Beta distribution." ;
6938         };
6939         String 8 // Name of Parameter 4
6940         {
6941             Text [en-US ] = "Cumulative" ;
6942         };
6943         String 9 // Description of Parameter 4
6944         {
6945             Text [ en-US ] = "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function.";
6946         };
6947         String 10 // Name of Parameter 5
6948         {
6949             Text [ en-US ] = "Start" ;
6950         };
6951         String 11 // Description of Parameter 5
6952         {
6953             Text [ en-US ] = "The starting value for the value interval of the distribution." ;
6954         };
6955         String 12 // Name of Parameter 6
6956         {
6957             Text [ en-US ] = "End" ;
6958         };
6959         String 13 // Description of Parameter 6
6960         {
6961             Text [ en-US ] = "The final value for the value interval of the distribution." ;
6962         };
6963     };
6964      // -=*# Resource for function BETA.INV #*=-
6965     Resource SC_OPCODE_BETA_INV_MS
6966     {
6967         String 1 // Description
6968         {
6969             Text [ en-US ] = "Values of the inverse beta distribution." ;
6970         };
6971         ExtraData =
6972         {
6973             0;
6974             ID_FUNCTION_GRP_STATISTIC;
6975             U2S( HID_FUNC_BETAINV_MS );
6976             5;  0;  0;  0;  1;  1;
6977             0;
6978         };
6979         String 2 // Name of Parameter 1
6980         {
6981             Text [ en-US ] = "number" ;
6982         };
6983         String 3 // Description of Parameter 1
6984         {
6985             Text [ en-US ] = "The probability value for which the inverse beta distribution is to be calculated." ;
6986         };
6987         String 4 // Name of Parameter 2
6988         {
6989             Text [ en-US ] = "alpha" ;
6990         };
6991         String 5 // Description of Parameter 2
6992         {
6993             Text [ en-US ] = "The Alpha parameter of the Beta distribution." ;
6994         };
6995         String 6 // Name of Parameter 3
6996         {
6997             Text [ en-US ] = "beta" ;
6998         };
6999         String 7 // Description of Parameter 3
7000         {
7001             Text [ en-US ] = "The Beta parameter of the Beta distribution." ;
7002         };
7003         String 8 // Name of Parameter 4
7004         {
7005             Text [ en-US ] = "Start" ;
7006         };
7007         String 9 // Description of Parameter 4
7008         {
7009             Text [ en-US ] = "The starting value for the value interval of the distribution." ;
7010         };
7011         String 10 // Name of Parameter 5
7012         {
7013             Text [ en-US ] = "End" ;
7014         };
7015         String 11 // Description of Parameter 5
7016         {
7017             Text [ en-US ] = "The final value for the value interval of the distribution." ;
7018         };
7019     };
7020      // -=*# Resource for function WEIBULL #*=-
7021     Resource SC_OPCODE_WEIBULL
7022     {
7023         String 1 // Description
7024         {
7025             Text [ en-US ] = "Returns the values of the Weibull distribution." ;
7026         };
7027         ExtraData =
7028         {
7029             0;
7030             ID_FUNCTION_GRP_STATISTIC;
7031             U2S( HID_FUNC_WEIBULL );
7032             4;  0;  0;  0;  0;
7033             0;
7034         };
7035         String 2 // Name of Parameter 1
7036         {
7037             Text [ en-US ] = "Number" ;
7038         };
7039         String 3 // Description of Parameter 1
7040         {
7041             Text [ en-US ] = "The value for which the Weibull distribution is to be calculated." ;
7042         };
7043         String 4 // Name of Parameter 2
7044         {
7045             Text [ en-US ] = "Alpha" ;
7046         };
7047         String 5 // Description of Parameter 2
7048         {
7049             Text [ en-US ] = "The Alpha parameter of the Weibull distribution." ;
7050         };
7051         String 6 // Name of Parameter 3
7052         {
7053             Text [ en-US ] = "beta" ;
7054         };
7055         String 7 // Description of Parameter 3
7056         {
7057             Text [ en-US ] = "The Beta parameter of the Weibull distribution." ;
7058         };
7059         String 8 // Name of Parameter 4
7060         {
7061             Text [ en-US ] = "C" ;
7062         };
7063         String 9 // Description of Parameter 4
7064         {
7065             Text [ en-US ] = "Cumulated. C=0 calculates the density function, C=1 the distribution." ;
7066         };
7067     };
7068      // -=*# Resource for function WEIBULL.DIST #*=-
7069     Resource SC_OPCODE_WEIBULL_MS
7070     {
7071         String 1 // Description
7072         {
7073             Text [ en-US ] = "Returns the values of the Weibull distribution." ;
7074         };
7075         ExtraData =
7076         {
7077             0;
7078             ID_FUNCTION_GRP_STATISTIC;
7079             U2S( HID_FUNC_WEIBULL_DIST_MS );
7080             4;  0;  0;  0;  0;
7081             0;
7082         };
7083         String 2 // Name of Parameter 1
7084         {
7085             Text [ en-US ] = "Number" ;
7086         };
7087         String 3 // Description of Parameter 1
7088         {
7089             Text [ en-US ] = "The value for which the Weibull distribution is to be calculated." ;
7090         };
7091         String 4 // Name of Parameter 2
7092         {
7093             Text [ en-US ] = "Alpha" ;
7094         };
7095         String 5 // Description of Parameter 2
7096         {
7097             Text [ en-US ] = "The Alpha parameter of the Weibull distribution." ;
7098         };
7099         String 6 // Name of Parameter 3
7100         {
7101             Text [ en-US ] = "beta" ;
7102         };
7103         String 7 // Description of Parameter 3
7104         {
7105             Text [ en-US ] = "The Beta parameter of the Weibull distribution." ;
7106         };
7107         String 8 // Name of Parameter 4
7108         {
7109             Text [ en-US ] = "C" ;
7110         };
7111         String 9 // Description of Parameter 4
7112         {
7113             Text [ en-US ] = "Cumulated. C=0 calculates the density function, C=1 the distribution." ;
7114         };
7115     };
7116      // -=*# Resource for function HYPGEOMVERT #*=-
7117     Resource SC_OPCODE_HYP_GEOM_DIST
7118     {
7119         String 1 // Description
7120         {
7121             Text [ en-US ] = "Values of the hypergeometric distribution." ;
7122         };
7123         ExtraData =
7124         {
7125             0;
7126             ID_FUNCTION_GRP_STATISTIC;
7127             U2S( HID_FUNC_HYPGEOMVERT );
7128             4;  0;  0;  0;  0;
7129             0;
7130         };
7131         String 2 // Name of Parameter 1
7132         {
7133             Text [ en-US ] = "X" ;
7134         };
7135         String 3 // Description of Parameter 1
7136         {
7137             Text [ en-US ] = "The number of successes in the sample." ;
7138         };
7139         String 4 // Name of Parameter 2
7140         {
7141             Text [ en-US ] = "n_sample" ;
7142         };
7143         String 5 // Description of Parameter 2
7144         {
7145             Text [ en-US ] = "The size of the sample." ;
7146         };
7147         String 6 // Name of Parameter 3
7148         {
7149             Text [ en-US ] = "successes" ;
7150         };
7151         String 7 // Description of Parameter 3
7152         {
7153             Text [ en-US ] = "The number of successes in the population." ;
7154         };
7155         String 8 // Name of Parameter 4
7156         {
7157             Text [ en-US ] = "n_population" ;
7158         };
7159         String 9 // Description of Parameter 4
7160         {
7161             Text [ en-US ] = "The population size." ;
7162         };
7163     };
7164      // -=*# Resource for function HYPGEOM.DIST #*=-
7165     Resource SC_OPCODE_HYP_GEOM_DIST_MS
7166     {
7167         String 1 // Description
7168         {
7169             Text [ en-US ] = "Values of the hypergeometric distribution." ;
7170         };
7171         ExtraData =
7172         {
7173             0;
7174             ID_FUNCTION_GRP_STATISTIC;
7175             U2S( HID_FUNC_HYP_GEOM_DIST_MS );
7176             5;  0;  0;  0;  0;
7177             0;
7178         };
7179         String 2 // Name of Parameter 1
7180         {
7181             Text [ en-US ] = "X" ;
7182         };
7183         String 3 // Description of Parameter 1
7184         {
7185             Text [ en-US ] = "The number of successes in the sample." ;
7186         };
7187         String 4 // Name of Parameter 2
7188         {
7189             Text [ en-US ] = "n_sample" ;
7190         };
7191         String 5 // Description of Parameter 2
7192         {
7193             Text [ en-US ] = "The size of the sample." ;
7194         };
7195         String 6 // Name of Parameter 3
7196         {
7197             Text [ en-US ] = "successes" ;
7198         };
7199         String 7 // Description of Parameter 3
7200         {
7201             Text [ en-US ] = "The number of successes in the population." ;
7202         };
7203         String 8 // Name of Parameter 4
7204         {
7205             Text [ en-US ] = "n_population" ;
7206         };
7207         String 9 // Description of Parameter 4
7208         {
7209             Text [ en-US ] = "The population size." ;
7210         };
7211         String 10 // Name of Parameter 5
7212         {
7213             Text [ en-US ] = "Cumulative" ;
7214         };
7215         String 11 // Description of Parameter 5
7216         {
7217             Text [ en-US ] = "Cumulated. TRUE calculates the cumulative distribution function, FALSE the probability mass function." ;
7218         };
7219     };
7220      // -=*# Resource for function TVERT #*=-
7221     Resource SC_OPCODE_T_DIST
7222     {
7223         String 1 // Description
7224         {
7225             Text [ en-US ] = "Returns the t-distribution." ;
7226         };
7227         ExtraData =
7228         {
7229             0;
7230             ID_FUNCTION_GRP_STATISTIC;
7231             U2S( HID_FUNC_TVERT );
7232             3;  0;  0;  0;
7233             0;
7234         };
7235         String 2 // Name of Parameter 1
7236         {
7237             Text [ en-US ] = "Number" ;
7238         };
7239         String 3 // Description of Parameter 1
7240         {
7241             Text [ en-US ] = "The value for which the T distribution is to be calculated." ;
7242         };
7243         String 4 // Name of Parameter 2
7244         {
7245             Text [ en-US ] = "degrees_freedom" ;
7246         };
7247         String 5 // Description of Parameter 2
7248         {
7249             Text [ en-US ] = "The degrees of freedom of the T distribution." ;
7250         };
7251         String 6 // Name of Parameter 3
7252         {
7253             Text [ en-US ] = "mode" ;
7254         };
7255         String 7 // Description of Parameter 3
7256         {
7257             Text [ en-US ] = "Mode = 1 calculates the one-tailed test, 2 = two-tailed distribution." ;
7258         };
7259     };
7260      // -=*# Resource for function TINV #*=-
7261     Resource SC_OPCODE_T_INV
7262     {
7263         String 1 // Description
7264         {
7265             Text [ en-US ] = "Values of the inverse t-distribution." ;
7266         };
7267         ExtraData =
7268         {
7269             0;
7270             ID_FUNCTION_GRP_STATISTIC;
7271             U2S( HID_FUNC_TINV );
7272             2;  0;  0;
7273             0;
7274         };
7275         String 2 // Name of Parameter 1
7276         {
7277             Text [ en-US ] = "number" ;
7278         };
7279         String 3 // Description of Parameter 1
7280         {
7281             Text [ en-US ] = "The probability value for which the inverse T distribution is to be calculated." ;
7282         };
7283         String 4 // Name of Parameter 2
7284         {
7285             Text [ en-US ] = "degrees_freedom" ;
7286         };
7287         String 5 // Description of Parameter 2
7288         {
7289             Text [ en-US ] = "The degrees of freedom of the T distribution." ;
7290         };
7291     };
7292      // -=*# Resource for function FVERT #*=-
7293     Resource SC_OPCODE_F_DIST
7294     {
7295         String 1 // Description
7296         {
7297             Text [ en-US ] = "Values of the F probability distribution." ;
7298         };
7299         ExtraData =
7300         {
7301             0;
7302             ID_FUNCTION_GRP_STATISTIC;
7303             U2S( HID_FUNC_FVERT );
7304             3;  0;  0;  0;
7305             0;
7306         };
7307         String 2 // Name of Parameter 1
7308         {
7309             Text [ en-US ] = "Number" ;
7310         };
7311         String 3 // Description of Parameter 1
7312         {
7313             Text [ en-US ] = "The value for which the F distribution is to be calculated." ;
7314         };
7315         String 4 // Name of Parameter 2
7316         {
7317             Text [ en-US ] = "degrees_freedom_1" ;
7318         };
7319         String 5 // Description of Parameter 2
7320         {
7321             Text [ en-US ] = "The degrees of freedom in the numerator of the F distribution." ;
7322         };
7323         String 6 // Name of Parameter 3
7324         {
7325             Text [ en-US ] = "degrees_freedom_2" ;
7326         };
7327         String 7 // Description of Parameter 3
7328         {
7329             Text [ en-US ] = "The degrees of freedom in the denominator of the F distribution." ;
7330         };
7331     };
7332      // -=*# Resource for function F.DIST #*=-
7333     Resource SC_OPCODE_F_DIST_LT
7334     {
7335         String 1 // Description
7336         {
7337             Text [ en-US ] = "Values of the left tail F probability distribution." ;
7338         };
7339         ExtraData =
7340         {
7341             0;
7342             ID_FUNCTION_GRP_STATISTIC;
7343             U2S( HID_FUNC_F_DIST_LT );
7344             4;  0;  0;  0; 0;
7345             0;
7346         };
7347         String 2 // Name of Parameter 1
7348         {
7349             Text [ en-US ] = "Number" ;
7350         };
7351         String 3 // Description of Parameter 1
7352         {
7353             Text [ en-US ] = "The value for which the F distribution is to be calculated." ;
7354         };
7355         String 4 // Name of Parameter 2
7356         {
7357             Text [ en-US ] = "degrees_freedom_1" ;
7358         };
7359         String 5 // Description of Parameter 2
7360         {
7361             Text [ en-US ] = "The degrees of freedom in the numerator of the F distribution." ;
7362         };
7363         String 6 // Name of Parameter 3
7364         {
7365             Text [ en-US ] = "degrees_freedom_2" ;
7366         };
7367         String 7 // Description of Parameter 3
7368         {
7369             Text [ en-US ] = "The degrees of freedom in the denominator of the F distribution." ;
7370         };
7371         String 8 // Name of Parameter 4
7372         {
7373             Text [ en-US ] = "cumulative" ;
7374         };
7375         String 9 // Description of Parameter 4
7376         {
7377             Text [ en-US ] = "Cumulative distribution function (TRUE) or probability density function (FALSE)." ;
7378         };
7379     };
7380      // -=*# Resource for function F.DIST.RT #*=-
7381     Resource SC_OPCODE_F_DIST_RT
7382     {
7383         String 1 // Description
7384         {
7385             Text [ en-US ] = "Values of the right tail F probability distribution." ;
7386         };
7387         ExtraData =
7388         {
7389             0;
7390             ID_FUNCTION_GRP_STATISTIC;
7391             U2S( HID_FUNC_F_DIST_RT );
7392             3;  0;  0;  0;
7393             0;
7394         };
7395         String 2 // Name of Parameter 1
7396         {
7397             Text [ en-US ] = "Number" ;
7398         };
7399         String 3 // Description of Parameter 1
7400         {
7401             Text [ en-US ] = "The value for which the F distribution is to be calculated." ;
7402         };
7403         String 4 // Name of Parameter 2
7404         {
7405             Text [ en-US ] = "degrees_freedom_1" ;
7406         };
7407         String 5 // Description of Parameter 2
7408         {
7409             Text [ en-US ] = "The degrees of freedom in the numerator of the F distribution." ;
7410         };
7411         String 6 // Name of Parameter 3
7412         {
7413             Text [ en-US ] = "degrees_freedom_2" ;
7414         };
7415         String 7 // Description of Parameter 3
7416         {
7417             Text [ en-US ] = "The degrees of freedom in the denominator of the F distribution." ;
7418         };
7419     };
7420      // -=*# Resource for function FINV #*=-
7421     Resource SC_OPCODE_F_INV
7422     {
7423         String 1 // Description
7424         {
7425             Text [ en-US ] = "Values of the inverse F distribution." ;
7426         };
7427         ExtraData =
7428         {
7429             0;
7430             ID_FUNCTION_GRP_STATISTIC;
7431             U2S( HID_FUNC_FINV );
7432             3;  0;  0;  0;
7433             0;
7434         };
7435         String 2 // Name of Parameter 1
7436         {
7437             Text [ en-US ] = "number" ;
7438         };
7439         String 3 // Description of Parameter 1
7440         {
7441             Text [ en-US ] = "The probability value for which the inverse F distribution is to be calculated." ;
7442         };
7443         String 4 // Name of Parameter 2
7444         {
7445             Text [ en-US ] = "degrees_freedom_1" ;
7446         };
7447         String 5 // Description of Parameter 2
7448         {
7449             Text [ en-US ] = "The degrees of freedom in the numerator of the F distribution." ;
7450         };
7451         String 6 // Name of Parameter 3
7452         {
7453             Text [ en-US ] = "degrees_freedom_2" ;
7454         };
7455         String 7 // Description of Parameter 3
7456         {
7457             Text [ en-US ] = "The degrees of freedom in the denominator of the F distribution." ;
7458         };
7459     };
7460      // -=*# Resource for function F.INV #*=-
7461     Resource SC_OPCODE_F_INV_LT
7462     {
7463         String 1 // Description
7464         {
7465             Text [ en-US ] = "Values of the inverse left tail F distribution." ;
7466         };
7467         ExtraData =
7468         {
7469             0;
7470             ID_FUNCTION_GRP_STATISTIC;
7471             U2S( HID_FUNC_F_INV_LT );
7472             3;  0;  0;  0;
7473             0;
7474         };
7475         String 2 // Name of Parameter 1
7476         {
7477             Text [ en-US ] = "number" ;
7478         };
7479         String 3 // Description of Parameter 1
7480         {
7481             Text [ en-US ] = "The probability value for which the inverse F distribution is to be calculated." ;
7482         };
7483         String 4 // Name of Parameter 2
7484         {
7485             Text [ en-US ] = "degrees_freedom_1" ;
7486         };
7487         String 5 // Description of Parameter 2
7488         {
7489             Text [ en-US ] = "The degrees of freedom in the numerator of the F distribution." ;
7490         };
7491         String 6 // Name of Parameter 3
7492         {
7493             Text [ en-US ] = "degrees_freedom_2" ;
7494         };
7495         String 7 // Description of Parameter 3
7496         {
7497             Text [ en-US ] = "The degrees of freedom in the denominator of the F distribution." ;
7498         };
7499     };
7500      // -=*# Resource for function F.INV.RT #*=-
7501     Resource SC_OPCODE_F_INV_RT
7502     {
7503         String 1 // Description
7504         {
7505             Text [ en-US ] = "Values of the inverse right tail F distribution." ;
7506         };
7507         ExtraData =
7508         {
7509             0;
7510             ID_FUNCTION_GRP_STATISTIC;
7511             U2S( HID_FUNC_F_INV_RT );
7512             3;  0;  0;  0;
7513             0;
7514         };
7515         String 2 // Name of Parameter 1
7516         {
7517             Text [ en-US ] = "number" ;
7518         };
7519         String 3 // Description of Parameter 1
7520         {
7521             Text [ en-US ] = "The probability value for which the inverse F distribution is to be calculated." ;
7522         };
7523         String 4 // Name of Parameter 2
7524         {
7525             Text [ en-US ] = "degrees_freedom_1" ;
7526         };
7527         String 5 // Description of Parameter 2
7528         {
7529             Text [ en-US ] = "The degrees of freedom in the numerator of the F distribution." ;
7530         };
7531         String 6 // Name of Parameter 3
7532         {
7533             Text [ en-US ] = "degrees_freedom_2" ;
7534         };
7535         String 7 // Description of Parameter 3
7536         {
7537             Text [ en-US ] = "The degrees of freedom in the denominator of the F distribution." ;
7538         };
7539     };
7540      // -=*# Resource for function CHIDIST #*=-
7541     Resource SC_OPCODE_CHI_DIST
7542     {
7543         String 1 // Description
7544         {
7545             Text [ en-US ] = "Returns the right-tail probability of the chi-square distribution." ;
7546         };
7547         ExtraData =
7548         {
7549             0;
7550             ID_FUNCTION_GRP_STATISTIC;
7551             U2S( HID_FUNC_CHIVERT );
7552             2;  0;  0;
7553             0;
7554         };
7555         String 2 // Name of Parameter 1
7556         {
7557             Text [ en-US ] = "Number" ;
7558         };
7559         String 3 // Description of Parameter 1
7560         {
7561             Text [ en-US ] = "The value for which the chi square distribution is to be calculated." ;
7562         };
7563         String 4 // Name of Parameter 2
7564         {
7565             Text [ en-US ] = "degrees_freedom" ;
7566         };
7567         String 5 // Description of Parameter 2
7568         {
7569             Text [ en-US ] = "The degrees of freedom of the chi square distribution." ;
7570         };
7571     };
7572      // -=*# Resource for function CHISQ.DIST.RT #*=-
7573     Resource SC_OPCODE_CHI_DIST_MS
7574     {
7575         String 1 // Description
7576         {
7577             Text [ en-US ] = "Returns the right-tail probability of the chi-square distribution." ;
7578         };
7579         ExtraData =
7580         {
7581             0;
7582             ID_FUNCTION_GRP_STATISTIC;
7583             U2S( HID_FUNC_CHIVERT_MS );
7584             2;  0;  0;
7585             0;
7586         };
7587         String 2 // Name of Parameter 1
7588         {
7589             Text [ en-US ] = "Number" ;
7590         };
7591         String 3 // Description of Parameter 1
7592         {
7593             Text [ en-US ] = "The value for which the chi square distribution is to be calculated." ;
7594         };
7595         String 4 // Name of Parameter 2
7596         {
7597             Text [ en-US ] = "degrees_freedom" ;
7598         };
7599         String 5 // Description of Parameter 2
7600         {
7601             Text [ en-US ] = "The degrees of freedom of the chi square distribution." ;
7602         };
7603     };
7606      // -=*# Resource for function CHISQDIST #*=-
7607     Resource SC_OPCODE_CHISQ_DIST
7608     {
7609         String 1 // Description
7610         {
7611             Text [ en-US ] = "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." ;
7612         };
7613         ExtraData =
7614         {
7615             0;
7616             ID_FUNCTION_GRP_STATISTIC;
7617             U2S( HID_FUNC_CHISQDIST );
7618             3;  0;  0;  1;
7619             0;
7620         };
7621         String 2 // Name of Parameter 1
7622         {
7623             Text [ en-US ] = "Number" ;
7624         };
7625         String 3 // Description of Parameter 1
7626         {
7627             Text [ en-US ] = "The value for which the probability density function or cumulative distribution function is to be calculated." ;
7628         };
7629         String 4 // Name of Parameter 2
7630         {
7631             Text [ en-US ] = "Degrees of Freedom" ;
7632         };
7633         String 5 // Description of Parameter 2
7634         {
7635             Text [ en-US ] = "The degrees of freedom of the chi-square distribution." ;
7636         };
7637         String 6 // Name of Parameter 3
7638         {
7639             Text [ en-US ] = "Cumulative" ;
7640         };
7641         String 7 // Description of Parameter 3
7642         {
7643             Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function." ;
7644         };
7645     };
7647      // -=*# Resource for function CHISQ.DIST #*=-
7648     Resource SC_OPCODE_CHISQ_DIST_MS
7649     {
7650         String 1 // Description
7651         {
7652             Text [ en-US ] = "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution." ;
7653         };
7654         ExtraData =
7655         {
7656             0;
7657             ID_FUNCTION_GRP_STATISTIC;
7658             U2S( HID_FUNC_CHISQDIST_MS );
7659             3;  0;  0;  0;
7660             0;
7661         };
7662         String 2 // Name of Parameter 1
7663         {
7664             Text [ en-US ] = "Number" ;
7665         };
7666         String 3 // Description of Parameter 1
7667         {
7668             Text [ en-US ] = "The value for which the probability density function or cumulative distribution function is to be calculated." ;
7669         };
7670         String 4 // Name of Parameter 2
7671         {
7672             Text [ en-US ] = "Degrees of Freedom" ;
7673         };
7674         String 5 // Description of Parameter 2
7675         {
7676             Text [ en-US ] = "The degrees of freedom of the chi-square distribution." ;
7677         };
7678         String 6 // Name of Parameter 3
7679         {
7680             Text [ en-US ] = "Cumulative" ;
7681         };
7682         String 7 // Description of Parameter 3
7683         {
7684             Text [ en-US ] = "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function." ;
7685         };
7686     };
7689      // -=*# Resource for function CHIINV #*=-
7690     Resource SC_OPCODE_CHI_INV
7691     {
7692         String 1 // Description
7693         {
7694             Text [ en-US ] = "Values of the inverse of CHIDIST(x; DegreesOfFreedom)." ;
7695         };
7696         ExtraData =
7697         {
7698             0;
7699             ID_FUNCTION_GRP_STATISTIC;
7700             U2S( HID_FUNC_CHIINV );
7701             2;  0;  0;
7702             0;
7703         };
7704         String 2 // Name of Parameter 1
7705         {
7706             Text [ en-US ] = "number" ;
7707         };
7708         String 3 // Description of Parameter 1
7709         {
7710             Text [ en-US ] = "The probability value for which the inverse chi square distribution is to be calculated." ;
7711         };
7712         String 4 // Name of Parameter 2
7713         {
7714             Text [ en-US ] = "degrees_freedom" ;
7715         };
7716         String 5 // Description of Parameter 2
7717         {
7718             Text [ en-US ] = "The degrees of freedom of the chi square distribution." ;
7719         };
7720     };
7722      // -=*# Resource for function CHISQ.INV.RT #*=-
7723     Resource SC_OPCODE_CHI_INV_MS
7724     {
7725         String 1 // Description
7726         {
7727             Text [ en-US ] = "Values of the inverse of CHIDIST(x; DegreesOfFreedom)." ;
7728         };
7729         ExtraData =
7730         {
7731             0;
7732             ID_FUNCTION_GRP_STATISTIC;
7733             U2S( HID_FUNC_CHIINV_MS );
7734             2;  0;  0;
7735             0;
7736         };
7737         String 2 // Name of Parameter 1
7738         {
7739             Text [ en-US ] = "number" ;
7740         };
7741         String 3 // Description of Parameter 1
7742         {
7743             Text [ en-US ] = "The probability value for which the inverse chi square distribution is to be calculated." ;
7744         };
7745         String 4 // Name of Parameter 2
7746         {
7747             Text [ en-US ] = "degrees_freedom" ;
7748         };
7749         String 5 // Description of Parameter 2
7750         {
7751             Text [ en-US ] = "The degrees of freedom of the chi square distribution." ;
7752         };
7753     };
7755      // -=*# Resource for function CHISQINV #*=-
7756     Resource SC_OPCODE_CHISQ_INV
7757     {
7758         String 1 // Description
7759         {
7760             Text [ en-US ] = "Values of the inverse of CHISQDIST(x;DegreesOfFreedom;TRUE())." ;
7761         };
7762         ExtraData =
7763         {
7764             0;
7765             ID_FUNCTION_GRP_STATISTIC;
7766             U2S( HID_FUNC_CHISQINV );
7767             2;  0;  0;
7768             0;
7769         };
7770         String 2 // Name of Parameter 1
7771         {
7772             Text [ en-US ] = "Probability" ;
7773         };
7774         String 3 // Description of Parameter 1
7775         {
7776             Text [ en-US ] = "The probability value for which the inverse of the chi square distribution is to be calculated." ;
7777         };
7778         String 4 // Name of Parameter 2
7779         {
7780             Text [ en-US ] = "Degrees of Freedom" ;
7781         };
7782         String 5 // Description of Parameter 2
7783         {
7784             Text [ en-US ] = "The degrees of freedom of the chi square distribution." ;
7785         };
7786     };
7788      // -=*# Resource for function CHISQ.INV #*=-
7789     Resource SC_OPCODE_CHISQ_INV_MS
7790     {
7791         String 1 // Description
7792         {
7793             Text [ en-US ] = "Values of the inverse of CHISQ.DIST(x;DegreesOfFreedom;TRUE())." ;
7794         };
7795         ExtraData =
7796         {
7797             0;
7798             ID_FUNCTION_GRP_STATISTIC;
7799             U2S( HID_FUNC_CHISQINV_MS );
7800             2;  0;  0;
7801             0;
7802         };
7803         String 2 // Name of Parameter 1
7804         {
7805             Text [ en-US ] = "Probability" ;
7806         };
7807         String 3 // Description of Parameter 1
7808         {
7809             Text [ en-US ] = "The probability value for which the inverse of the chi square distribution is to be calculated." ;
7810         };
7811         String 4 // Name of Parameter 2
7812         {
7813             Text [ en-US ] = "Degrees of Freedom" ;
7814         };
7815         String 5 // Description of Parameter 2
7816         {
7817             Text [ en-US ] = "The degrees of freedom of the chi square distribution." ;
7818         };
7819     };
7821      // -=*# Resource for function STANDARDISIERUNG #*=-
7822     Resource SC_OPCODE_STANDARD
7823     {
7824         String 1 // Description
7825         {
7826             Text [ en-US ] = "Converts a random variable to a normalized value." ;
7827         };
7828         ExtraData =
7829         {
7830             0;
7831             ID_FUNCTION_GRP_STATISTIC;
7832             U2S( HID_FUNC_STANDARDISIERUNG );
7833             3;  0;  0;  0;
7834             0;
7835         };
7836         String 2 // Name of Parameter 1
7837         {
7838             Text [ en-US ] = "Number" ;
7839         };
7840         String 3 // Description of Parameter 1
7841         {
7842             Text [ en-US ] = "The value to be standardized." ;
7843         };
7844         String 4 // Name of Parameter 2
7845         {
7846             Text [ en-US ] = "mean" ;
7847         };
7848         String 5 // Description of Parameter 2
7849         {
7850             Text [ en-US ] = "The mean value used for moving." ;
7851         };
7852         String 6 // Name of Parameter 3
7853         {
7854             Text [ en-US ] = "STDEV" ;
7855         };
7856         String 7 // Description of Parameter 3
7857         {
7858             Text [ en-US ] = "The standard deviation used for scaling." ;
7859         };
7860     };
7861      // -=*# Resource for function VARIATIONEN #*=-
7862     Resource SC_OPCODE_VARIATIONEN
7863     {
7864         String 1 // Description
7865         {
7866             Text [ en-US ] = "Returns the number of permutations for a given number of elements without repetition." ;
7867         };
7868         ExtraData =
7869         {
7870             0;
7871             ID_FUNCTION_GRP_STATISTIC;
7872             U2S( HID_FUNC_VARIATIONEN );
7873             2;  0;  0;
7874             0;
7875         };
7876         String 2 // Name of Parameter 1
7877         {
7878             Text [ en-US ] = "Count_1" ;
7879         };
7880         String 3 // Description of Parameter 1
7881         {
7882             Text [ en-US ] = "The total number of elements." ;
7883         };
7884         String 4 // Name of Parameter 2
7885         {
7886             Text [ en-US ] = "Count_2" ;
7887         };
7888         String 5 // Description of Parameter 2
7889         {
7890             Text [ en-US ] = "The selection number taken from the elements." ;
7891         };
7892     };
7893      // -=*# Resource for function VARIATIONEN2 #*=-
7894     Resource SC_OPCODE_VARIATIONEN_2
7895     {
7896         String 1 // Description
7897         {
7898             Text [ en-US ] = "Returns the number of permutations for a given number of objects (repetition allowed)." ;
7899         };
7900         ExtraData =
7901         {
7902             0;
7903             ID_FUNCTION_GRP_STATISTIC;
7904             U2S( HID_FUNC_VARIATIONEN2 );
7905             2;  0;  0;
7906             0;
7907         };
7908         String 2 // Name of Parameter 1
7909         {
7910             Text [ en-US ] = "Count_1" ;
7911         };
7912         String 3 // Description of Parameter 1
7913         {
7914             Text [ en-US ] = "The total number of elements." ;
7915         };
7916         String 4 // Name of Parameter 2
7917         {
7918             Text [ en-US ] = "Count_2" ;
7919         };
7920         String 5 // Description of Parameter 2
7921         {
7922             Text [ en-US ] = "The selection number taken from the elements." ;
7923         };
7924     };
7925      // -=*# Resource for function KONFIDENZ #*=-
7926     Resource SC_OPCODE_CONFIDENCE
7927     {
7928         String 1 // Description
7929         {
7930             Text [ en-US ] = "Returns a (1 alpha) confidence interval for a normal distribution." ;
7931         };
7932         ExtraData =
7933         {
7934             0;
7935             ID_FUNCTION_GRP_STATISTIC;
7936             U2S( HID_FUNC_KONFIDENZ );
7937             3;  0;  0;  0;
7938             0;
7939         };
7940         String 2 // Name of Parameter 1
7941         {
7942             Text [ en-US ] = "alpha" ;
7943         };
7944         String 3 // Description of Parameter 1
7945         {
7946             Text [ en-US ] = "The level of the confidence interval." ;
7947         };
7948         String 4 // Name of Parameter 2
7949         {
7950             Text [ en-US ] = "STDEV" ;
7951         };
7952         String 5 // Description of Parameter 2
7953         {
7954             Text [ en-US ] = "The standard deviation of the population." ;
7955         };
7956         String 6 // Name of Parameter 3
7957         {
7958             Text [ en-US ] = "size" ;
7959         };
7960         String 7 // Description of Parameter 3
7961         {
7962             Text [ en-US ] = "The size of the population." ;
7963         };
7964     };
7965      // -=*# Resource for function CONFIDENCE.NORM #*=-
7966     Resource SC_OPCODE_CONFIDENCE_N
7967     {
7968         String 1 // Description
7969         {
7970             Text [ en-US ] = "Returns a (1 alpha) confidence interval for a normal distribution." ;
7971         };
7972         ExtraData =
7973         {
7974             0;
7975             ID_FUNCTION_GRP_STATISTIC;
7976             U2S( HID_FUNC_CONFIDENCE_N );
7977             3;  0;  0;  0;
7978             0;
7979         };
7980         String 2 // Name of Parameter 1
7981         {
7982             Text [ en-US ] = "alpha" ;
7983         };
7984         String 3 // Description of Parameter 1
7985         {
7986             Text [ en-US ] = "The level of the confidence interval." ;
7987         };
7988         String 4 // Name of Parameter 2
7989         {
7990             Text [ en-US ] = "STDEV" ;
7991         };
7992         String 5 // Description of Parameter 2
7993         {
7994             Text [ en-US ] = "The standard deviation of the population." ;
7995         };
7996         String 6 // Name of Parameter 3
7997         {
7998             Text [ en-US ] = "size" ;
7999         };
8000         String 7 // Description of Parameter 3
8001         {
8002             Text [ en-US ] = "The size of the population." ;
8003         };
8004     };
8005      // -=*# Resource for function CONFIDENCE.T #*=-
8006     Resource SC_OPCODE_CONFIDENCE_T
8007     {
8008         String 1 // Description
8009         {
8010             Text [ en-US ] = "Returns a (1 alpha) confidence interval for a Student's t distribution." ;
8011         };
8012         ExtraData =
8013         {
8014             0;
8015             ID_FUNCTION_GRP_STATISTIC;
8016             U2S( HID_FUNC_CONFIDENCE_T );
8017             3;  0;  0;  0;
8018             0;
8019         };
8020         String 2 // Name of Parameter 1
8021         {
8022             Text [ en-US ] = "alpha" ;
8023         };
8024         String 3 // Description of Parameter 1
8025         {
8026             Text [ en-US ] = "The level of the confidence interval." ;
8027         };
8028         String 4 // Name of Parameter 2
8029         {
8030             Text [ en-US ] = "STDEV" ;
8031         };
8032         String 5 // Description of Parameter 2
8033         {
8034             Text [ en-US ] = "The standard deviation of the population." ;
8035         };
8036         String 6 // Name of Parameter 3
8037         {
8038             Text [ en-US ] = "size" ;
8039         };
8040         String 7 // Description of Parameter 3
8041         {
8042             Text [ en-US ] = "The size of the population." ;
8043         };
8044     };
8045      // -=*# Resource for function GTEST #*=-
8046     Resource SC_OPCODE_Z_TEST
8047     {
8048         String 1 // Description
8049         {
8050             Text [ en-US ] = "Calculates the probability of observing a z-statistic greater than the one computed based on a sample." ;
8051         };
8052         ExtraData =
8053         {
8054             0;
8055             ID_FUNCTION_GRP_STATISTIC;
8056             U2S( HID_FUNC_GTEST );
8057             3;  0;  0;  1;
8058             0;
8059         };
8060         String 2 // Name of Parameter 1
8061         {
8062             Text [ en-US ] = "data" ;
8063         };
8064         String 3 // Description of Parameter 1
8065         {
8066             Text [ en-US ] = "The given sample, drawn from a normally distributed population." ;
8067         };
8068         String 4 // Name of Parameter 2
8069         {
8070             Text [ en-US ] = "mu" ;
8071         };
8072         String 5 // Description of Parameter 2
8073         {
8074             Text [ en-US ] = "The known mean of the population." ;
8075         };
8076         String 6 // Name of Parameter 3
8077         {
8078             Text [ en-US ] = "sigma" ;
8079         };
8080         String 7 // Description of Parameter 3
8081         {
8082             Text [ en-US ] = "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used." ;
8083         };
8084     };
8085      // -=*# Resource for function CHITEST #*=-
8086     Resource SC_OPCODE_CHI_TEST
8087     {
8088         String 1 // Description
8089         {
8090             Text [ en-US ] = "Returns the chi square independence test." ;
8091         };
8092         ExtraData =
8093         {
8094             0;
8095             ID_FUNCTION_GRP_STATISTIC;
8096             U2S( HID_FUNC_CHITEST );
8097             2;  0;  0;
8098             0;
8099         };
8100         String 2 // Name of Parameter 1
8101         {
8102             Text [ en-US ] = "Data_B" ;
8103         };
8104         String 3 // Description of Parameter 1
8105         {
8106             Text [ en-US ] = "The observed data array." ;
8107         };
8108         String 4 // Name of Parameter 2
8109         {
8110             Text [ en-US ] = "data_E" ;
8111         };
8112         String 5 // Description of Parameter 2
8113         {
8114             Text [ en-US ] = "The expected data array." ;
8115         };
8116     };
8117      // -=*# Resource for function CHISQ.TEST.RT #*=-
8118     Resource SC_OPCODE_CHI_TEST_MS
8119     {
8120         String 1 // Description
8121         {
8122             Text [ en-US ] = "Returns the chi square independence test." ;
8123         };
8124         ExtraData =
8125         {
8126             0;
8127             ID_FUNCTION_GRP_STATISTIC;
8128             U2S( HID_FUNC_CHITEST_MS );
8129             2;  0;  0;
8130             0;
8131         };
8132         String 2 // Name of Parameter 1
8133         {
8134             Text [ en-US ] = "Data_B" ;
8135         };
8136         String 3 // Description of Parameter 1
8137         {
8138             Text [ en-US ] = "The observed data array." ;
8139         };
8140         String 4 // Name of Parameter 2
8141         {
8142             Text [ en-US ] = "data_E" ;
8143         };
8144         String 5 // Description of Parameter 2
8145         {
8146             Text [ en-US ] = "The expected data array." ;
8147         };
8148     };
8149      // -=*# Resource for function FTEST #*=-
8150     Resource SC_OPCODE_F_TEST
8151     {
8152         String 1 // Description
8153         {
8154             Text [ en-US ] = "Calculates the F test." ;
8155         };
8156         ExtraData =
8157         {
8158             0;
8159             ID_FUNCTION_GRP_STATISTIC;
8160             U2S( HID_FUNC_FTEST );
8161             2;  0;  0;
8162             0;
8163         };
8164         String 2 // Name of Parameter 1
8165         {
8166             Text [ en-US ] = "data_1" ;
8167         };
8168         String 3 // Description of Parameter 1
8169         {
8170             Text [ en-US ] = "The first record array." ;
8171         };
8172         String 4 // Name of Parameter 2
8173         {
8174             Text [ en-US ] = "data_2" ;
8175         };
8176         String 5 // Description of Parameter 2
8177         {
8178             Text [ en-US ] = "The second record array." ;
8179         };
8180     };
8181      // -=*# Resource for function F.TEST #*=-
8182     Resource SC_OPCODE_F_TEST_MS
8183     {
8184         String 1 // Description
8185         {
8186             Text [ en-US ] = "Calculates the F test." ;
8187         };
8188         ExtraData =
8189         {
8190             0;
8191             ID_FUNCTION_GRP_STATISTIC;
8192             U2S( HID_FUNC_F_TEST_MS );
8193             2;  0;  0;
8194             0;
8195         };
8196         String 2 // Name of Parameter 1
8197         {
8198             Text [ en-US ] = "data_1" ;
8199         };
8200         String 3 // Description of Parameter 1
8201         {
8202             Text [ en-US ] = "The first record array." ;
8203         };
8204         String 4 // Name of Parameter 2
8205         {
8206             Text [ en-US ] = "data_2" ;
8207         };
8208         String 5 // Description of Parameter 2
8209         {
8210             Text [ en-US ] = "The second record array." ;
8211         };
8212     };
8213      // -=*# Resource for function TTEST #*=-
8214     Resource SC_OPCODE_T_TEST
8215     {
8216         String 1 // Description
8217         {
8218             Text [ en-US ] = "Calculates the T test." ;
8219         };
8220         ExtraData =
8221         {
8222             0;
8223             ID_FUNCTION_GRP_STATISTIC;
8224             U2S( HID_FUNC_TTEST );
8225             4;  0;  0;  0;  0;
8226             0;
8227         };
8228         String 2 // Name of Parameter 1
8229         {
8230             Text [ en-US ] = "data_1" ;
8231         };
8232         String 3 // Description of Parameter 1
8233         {
8234             Text [ en-US ] = "The first record array." ;
8235         };
8236         String 4 // Name of Parameter 2
8237         {
8238             Text [ en-US ] = "data_2" ;
8239         };
8240         String 5 // Description of Parameter 2
8241         {
8242             Text [ en-US ] = "The second record array." ;
8243         };
8244         String 6 // Name of Parameter 3
8245         {
8246             Text [ en-US ] = "mode" ;
8247         };
8248         String 7 // Description of Parameter 3
8249         {
8250             Text [ en-US ] = "Mode specifies the number of distribution tails to return. 1= one-tailed, 2 = two-tailed distribution" ;
8251         };
8252         String 8 // Name of Parameter 4
8253         {
8254             Text [ en-US ] = "Type" ;
8255         };
8256         String 9 // Description of Parameter 4
8257         {
8258             Text [ en-US ] = "The type of the T test." ;
8259         };
8260     };
8261      // -=*# Resource for function BESTIMMTHEITSMASS #*=-
8262     Resource SC_OPCODE_RSQ
8263     {
8264         String 1 // Description
8265         {
8266             Text [ en-US ] = "Returns the square of the Pearson product moment correlation coefficient." ;
8267         };
8268         ExtraData =
8269         {
8270             0;
8271             ID_FUNCTION_GRP_STATISTIC;
8272             U2S( HID_FUNC_BESTIMMTHEITSMASS );
8273             2;  0;  0;
8274             0;
8275         };
8276         String 2 // Name of Parameter 1
8277         {
8278             Text [ en-US ] = "data_Y" ;
8279         };
8280         String 3 // Description of Parameter 1
8281         {
8282             Text [ en-US ] = "The Y data array." ;
8283         };
8284         String 4 // Name of Parameter 2
8285         {
8286             Text [ en-US ] = "data_X" ;
8287         };
8288         String 5 // Description of Parameter 2
8289         {
8290             Text [ en-US ] = "The X data array." ;
8291         };
8292     };
8293      // -=*# Resource for function ACHSENABSCHNITT #*=-
8294     Resource SC_OPCODE_INTERCEPT
8295     {
8296         String 1 // Description
8297         {
8298             Text [ en-US ] = "Returns the intercept of the linear regression line and the Y axis." ;
8299         };
8300         ExtraData =
8301         {
8302             0;
8303             ID_FUNCTION_GRP_STATISTIC;
8304             U2S( HID_FUNC_ACHSENABSCHNITT );
8305             2;  0;  0;
8306             0;
8307         };
8308         String 2 // Name of Parameter 1
8309         {
8310             Text [ en-US ] = "data_Y" ;
8311         };
8312         String 3 // Description of Parameter 1
8313         {
8314             Text [ en-US ] = "The Y data array." ;
8315         };
8316         String 4 // Name of Parameter 2
8317         {
8318             Text [ en-US ] = "data_X" ;
8319         };
8320         String 5 // Description of Parameter 2
8321         {
8322             Text [ en-US ] = "The X data array." ;
8323         };
8324     };
8325      // -=*# Resource for function STEIGUNG #*=-
8326     Resource SC_OPCODE_SLOPE
8327     {
8328         String 1 // Description
8329         {
8330             Text [ en-US ] = "Returns the slope of the linear regression line." ;
8331         };
8332         ExtraData =
8333         {
8334             0;
8335             ID_FUNCTION_GRP_STATISTIC;
8336             U2S( HID_FUNC_STEIGUNG );
8337             2;  0;  0;
8338             0;
8339         };
8340         String 2 // Name of Parameter 1
8341         {
8342             Text [ en-US ] = "data_Y" ;
8343         };
8344         String 3 // Description of Parameter 1
8345         {
8346             Text [ en-US ] = "The Y data array." ;
8347         };
8348         String 4 // Name of Parameter 2
8349         {
8350             Text [ en-US ] = "data_X" ;
8351         };
8352         String 5 // Description of Parameter 2
8353         {
8354             Text [ en-US ] = "The X data array." ;
8355         };
8356     };
8357      // -=*# Resource for function STFEHLERYX #*=-
8358     Resource SC_OPCODE_STEYX
8359     {
8360         String 1 // Description
8361         {
8362             Text [ en-US ] = "Returns the standard error of the linear regression." ;
8363         };
8364         ExtraData =
8365         {
8366             0;
8367             ID_FUNCTION_GRP_STATISTIC;
8368             U2S( HID_FUNC_STFEHLERYX );
8369             2;  0;  0;
8370             0;
8371         };
8372         String 2 // Name of Parameter 1
8373         {
8374             Text [ en-US ] = "data_Y" ;
8375         };
8376         String 3 // Description of Parameter 1
8377         {
8378             Text [ en-US ] = "The Y data array." ;
8379         };
8380         String 4 // Name of Parameter 2
8381         {
8382             Text [ en-US ] = "data_X" ;
8383         };
8384         String 5 // Description of Parameter 2
8385         {
8386             Text [ en-US ] = "The X data array." ;
8387         };
8388     };
8389      // -=*# Resource for function PEARSON #*=-
8390     Resource SC_OPCODE_PEARSON
8391     {
8392         String 1 // Description
8393         {
8394             Text [ en-US ] = "Returns the Pearson product moment correlation coefficient." ;
8395         };
8396         ExtraData =
8397         {
8398             0;
8399             ID_FUNCTION_GRP_STATISTIC;
8400             U2S( HID_FUNC_PEARSON );
8401             2;  0;  0;
8402             0;
8403         };
8404         String 2 // Name of Parameter 1
8405         {
8406             Text [ en-US ] = "Data_1" ;
8407         };
8408         String 3 // Description of Parameter 1
8409         {
8410             Text [ en-US ] = "The first record array." ;
8411         };
8412         String 4 // Name of Parameter 2
8413         {
8414             Text [ en-US ] = "Data_2" ;
8415         };
8416         String 5 // Description of Parameter 2
8417         {
8418             Text [ en-US ] = "The second record array." ;
8419         };
8420     };
8421      // -=*# Resource for function KORREL #*=-
8422     Resource SC_OPCODE_CORREL
8423     {
8424         String 1 // Description
8425         {
8426             Text [ en-US ] = "Returns the correlation coefficient." ;
8427         };
8428         ExtraData =
8429         {
8430             0;
8431             ID_FUNCTION_GRP_STATISTIC;
8432             U2S( HID_FUNC_KORREL );
8433             2;  0;  0;
8434             0;
8435         };
8436         String 2 // Name of Parameter 1
8437         {
8438             Text [ en-US ] = "Data_1" ;
8439         };
8440         String 3 // Description of Parameter 1
8441         {
8442             Text [ en-US ] = "The first record array." ;
8443         };
8444         String 4 // Name of Parameter 2
8445         {
8446             Text [ en-US ] = "Data_2" ;
8447         };
8448         String 5 // Description of Parameter 2
8449         {
8450             Text [ en-US ] = "The second record array." ;
8451         };
8452     };
8453      // -=*# Resource for function KOVAR #*=-
8454     Resource SC_OPCODE_COVAR
8455     {
8456         String 1 // Description
8457         {
8458             Text [ en-US ] = "Calculates the population covariance." ;
8459         };
8460         ExtraData =
8461         {
8462             0;
8463             ID_FUNCTION_GRP_STATISTIC;
8464             U2S( HID_FUNC_KOVAR );
8465             2;  0;  0;
8466             0;
8467         };
8468         String 2 // Name of Parameter 1
8469         {
8470             Text [ en-US ] = "Data_1" ;
8471         };
8472         String 3 // Description of Parameter 1
8473         {
8474             Text [ en-US ] = "The first record array." ;
8475         };
8476         String 4 // Name of Parameter 2
8477         {
8478             Text [ en-US ] = "Data_2" ;
8479         };
8480         String 5 // Description of Parameter 2
8481         {
8482             Text [ en-US ] = "The second record array." ;
8483         };
8484     };
8485      // -=*# Resource for function COVARIANCE.P #*=-
8486     Resource SC_OPCODE_COVARIANCE_P
8487     {
8488         String 1 // Description
8489         {
8490             Text [ en-US ] = "Calculates the population covariance." ;
8491         };
8492         ExtraData =
8493         {
8494             0;
8495             ID_FUNCTION_GRP_STATISTIC;
8496             U2S( HID_FUNC_COVARIANCE_P );
8497             2;  0;  0;
8498             0;
8499         };
8500         String 2 // Name of Parameter 1
8501         {
8502             Text [ en-US ] = "Data_1" ;
8503         };
8504         String 3 // Description of Parameter 1
8505         {
8506             Text [ en-US ] = "The first record array." ;
8507         };
8508         String 4 // Name of Parameter 2
8509         {
8510             Text [ en-US ] = "Data_2" ;
8511         };
8512         String 5 // Description of Parameter 2
8513         {
8514             Text [ en-US ] = "The second record array." ;
8515         };
8516     };
8517      // -=*# Resource for function COVARIANCE.S #*=-
8518     Resource SC_OPCODE_COVARIANCE_S
8519     {
8520         String 1 // Description
8521         {
8522             Text [ en-US ] = "Calculates the sample covariance." ;
8523         };
8524         ExtraData =
8525         {
8526             0;
8527             ID_FUNCTION_GRP_STATISTIC;
8528             U2S( HID_FUNC_COVARIANCE_S );
8529             2;  0;  0;
8530             0;
8531         };
8532         String 2 // Name of Parameter 1
8533         {
8534             Text [ en-US ] = "Data_1" ;
8535         };
8536         String 3 // Description of Parameter 1
8537         {
8538             Text [ en-US ] = "The first record array." ;
8539         };
8540         String 4 // Name of Parameter 2
8541         {
8542             Text [ en-US ] = "Data_2" ;
8543         };
8544         String 5 // Description of Parameter 2
8545         {
8546             Text [ en-US ] = "The second record array." ;
8547         };
8548     };
8549      // -=*# Resource for function SCHÄTZER #*=-
8550     Resource SC_OPCODE_FORECAST
8551     {
8552         String 1 // Description
8553         {
8554             Text [ en-US ] = "Returns a value along a linear regression" ;
8555         };
8556         ExtraData =
8557         {
8558             0;
8559             ID_FUNCTION_GRP_STATISTIC;
8560             U2S( HID_FUNC_SCHAETZER );
8561             3;  0;  0;  0;
8562             0;
8563         };
8564         String 2 // Name of Parameter 1
8565         {
8566             Text [ en-US ] = "value" ;
8567         };
8568         String 3 // Description of Parameter 1
8569         {
8570             Text [ en-US ] = "The X value for which the Y value on the regression linear is to be calculated." ;
8571         };
8572         String 4 // Name of Parameter 2
8573         {
8574             Text [ en-US ] = "data_Y" ;
8575         };
8576         String 5 // Description of Parameter 2
8577         {
8578             Text [ en-US ] = "The Y data array." ;
8579         };
8580         String 6 // Name of Parameter 3
8581         {
8582             Text [ en-US ] = "data_X" ;
8583         };
8584         String 7 // Description of Parameter 3
8585         {
8586             Text [ en-US ] = "The X data array." ;
8587         };
8588     };
8589      // -=*# Resource for function ADRESSE #*=-
8590     Resource SC_OPCODE_ADDRESS
8591     {
8592         String 1 // Description
8593         {
8594             Text [ en-US ] = "Returns the reference to a cell as text." ;
8595         };
8596         ExtraData =
8597         {
8598             0;
8599             ID_FUNCTION_GRP_TABLE;
8600             U2S( HID_FUNC_ADRESSE );
8601             5;  0;  0;  1;  1;  1;
8602             0;
8603         };
8604         String 2 // Name of Parameter 1
8605         {
8606             Text [ en-US ] = "row" ;
8607         };
8608         String 3 // Description of Parameter 1
8609         {
8610             Text [ en-US ] = "The row number of the cell." ;
8611         };
8612         String 4 // Name of Parameter 2
8613         {
8614             Text [ en-US ] = "column" ;
8615         };
8616         String 5 // Description of Parameter 2
8617         {
8618             Text [ en-US ] = "The column number of the cell." ;
8619         };
8620         String 6 // Name of Parameter 3
8621         {
8622             Text [ en-US ] = "ABS" ;
8623         };
8624         String 7 // Description of Parameter 3
8625         {
8626             Text [ en-US ] = "Specifies whether absolute or relative referencing is to be used." ;
8627         };
8628         String 8 // Name of Parameter 4
8629         {
8630             Text [ en-US ] = "A1" ;
8631         };
8632         String 9 // Description of Parameter 4
8633         {
8634             Text [ en-US ] = "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style." ;
8635         };
8636         String 10 // Name of Parameter 5
8637         {
8638             Text [ en-US ] = "sheet" ;
8639             Text [ x-comment ] = "previously to OOo3.0 this was String resource RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ADDRESS 8" ;
8640         };
8641         String 11 // Description of Parameter 5
8642         {
8643             Text [ en-US ] = "The spreadsheet name of the cell reference." ;
8644             Text [ x-comment ] = "previously to OOo3.0 this was String resource RID_SC_FUNCTION_DESCRIPTIONS2.SC_OPCODE_ADDRESS 9" ;
8645         };
8646     };
8647      // -=*# Resource for function BEREICHE #*=-
8648     Resource SC_OPCODE_AREAS
8649     {
8650         String 1 // Description
8651         {
8652             Text [ en-US ] = "Returns the number of individual ranges that belong to a (multiple) range." ;
8653         };
8654         ExtraData =
8655         {
8656             0;
8657             ID_FUNCTION_GRP_TABLE;
8658             U2S( HID_FUNC_BEREICHE );
8659             1;  0;
8660             0;
8661         };
8662         String 2 // Name of Parameter 1
8663         {
8664             Text [ en-US ] = "reference" ;
8665         };
8666         String 3 // Description of Parameter 1
8667         {
8668             Text [ en-US ] = "The reference to a (multiple) range." ;
8669         };
8670     };
8671      // -=*# Resource for function WAHL #*=-
8672     Resource SC_OPCODE_CHOSE
8673     {
8674         String 1 // Description
8675         {
8676             Text [ en-US ] = "Selects a value from a list of up to 30 value arguments." ;
8677         };
8678         ExtraData =
8679         {
8680             0;
8681             ID_FUNCTION_GRP_TABLE;
8682             U2S( HID_FUNC_WAHL );
8683             VAR_ARGS+1; 0;  0;
8684             0;
8685         };
8686         String 2 // Name of Parameter 1
8687         {
8688             Text [ en-US ] = "Index" ;
8689         };
8690         String 3 // Description of Parameter 1
8691         {
8692             Text [ en-US ] = "The index of the value (1..30) selected." ;
8693         };
8694         String 4 // Name of Parameter 2
8695         {
8696             Text [ en-US ] = "value " ;
8697         };
8698         String 5 // Description of Parameter 2
8699         {
8700             Text [ en-US ] = "Value 1, value 2,... The list of arguments from which a value is chosen." ;
8701         };
8702     };
8703      // -=*# Resource for function SPALTE #*=-
8704     Resource SC_OPCODE_COLUMN
8705     {
8706         String 1 // Description
8707         {
8708             Text [ en-US ] = "Returns the internal column number of a reference." ;
8709         };
8710         ExtraData =
8711         {
8712             0;
8713             ID_FUNCTION_GRP_TABLE;
8714             U2S( HID_FUNC_SPALTE );
8715             1;  1;
8716             0;
8717         };
8718         String 2 // Name of Parameter 1
8719         {
8720             Text [ en-US ] = "reference" ;
8721         };
8722         String 3 // Description of Parameter 1
8723         {
8724             Text [ en-US ] = "The reference to a cell or a range." ;
8725         };
8726     };
8727      // -=*# Resource for function ZEILE #*=-
8728     Resource SC_OPCODE_ROW
8729     {
8730         String 1 // Description
8731         {
8732             Text [ en-US ] = "Defines the internal row number of a reference." ;
8733         };
8734         ExtraData =
8735         {
8736             0;
8737             ID_FUNCTION_GRP_TABLE;
8738             U2S( HID_FUNC_ZEILE );
8739             1;  1;
8740             0;
8741         };
8742         String 2 // Name of Parameter 1
8743         {
8744             Text [ en-US ] = "reference" ;
8745         };
8746         String 3 // Description of Parameter 1
8747         {
8748             Text [ en-US ] = "The reference to a cell or a range." ;
8749         };
8750     };
8751      // -=*# Resource for function TABELLE #*=-
8752     Resource SC_OPCODE_TABLE
8753     {
8754         String 1 // Description
8755         {
8756             Text [ en-US ] = "Returns the internal sheet number of a reference or a string." ;
8757         };
8758         ExtraData =
8759         {
8760             0;
8761             ID_FUNCTION_GRP_TABLE;
8762             U2S( HID_FUNC_TABELLE );
8763             1;  1;
8764             0;
8765         };
8766         String 2 // Name of Parameter 1
8767         {
8768             Text [ en-US ] = "reference" ;
8769         };
8770         String 3 // Description of Parameter 1
8771         {
8772             Text [ en-US ] = "The reference to a cell or a range or the character string of a sheet name." ;
8773         };
8774     };
8775      // -=*# Resource for function SPALTEN #*=-
8776     Resource SC_OPCODE_COLUMNS
8777     {
8778         String 1 // Description
8779         {
8780             Text [ en-US ] = "Returns the number of columns in an array or reference." ;
8781         };
8782         ExtraData =
8783         {
8784             0;
8785             ID_FUNCTION_GRP_TABLE;
8786             U2S( HID_FUNC_SPALTEN );
8787             1;  0;
8788             0;
8789         };
8790         String 2 // Name of Parameter 1
8791         {
8792             Text [ en-US ] = "array" ;
8793         };
8794         String 3 // Description of Parameter 1
8795         {
8796             Text [ en-US ] = "The array (reference) for which the number of columns is to be determined." ;
8797         };
8798     };
8799      // -=*# Resource for function ZEILEN #*=-
8800     Resource SC_OPCODE_ROWS
8801     {
8802         String 1 // Description
8803         {
8804             Text [ en-US ] = "Returns the number of rows in a reference or array." ;
8805         };
8806         ExtraData =
8807         {
8808             0;
8809             ID_FUNCTION_GRP_TABLE;
8810             U2S( HID_FUNC_ZEILEN );
8811             1;  0;
8812             0;
8813         };
8814         String 2 // Name of Parameter 1
8815         {
8816             Text [ en-US ] = "array" ;
8817         };
8818         String 3 // Description of Parameter 1
8819         {
8820             Text [ en-US ] = "The array (reference) for which the number of rows is to be determined." ;
8821         };
8822     };
8823      // -=*# Resource for function TABELLEN #*=-
8824     Resource SC_OPCODE_TABLES
8825     {
8826         String 1 // Description
8827         {
8828             Text [ en-US ] = "Returns the number of sheets of a given reference. If no parameter has been entered, the total number of sheets in the document is returned." ;
8829         };
8830         ExtraData =
8831         {
8832             0;
8833             ID_FUNCTION_GRP_TABLE;
8834             U2S( HID_FUNC_TABELLEN );
8835             1;  1;
8836             0;
8837         };
8838         String 2 // Name of Parameter 1
8839         {
8840             Text [ en-US ] = "reference" ;
8841         };
8842         String 3 // Description of Parameter 1
8843         {
8844             Text [ en-US ] = "The reference to a cell or a range." ;
8845         };
8846     };
8847      // -=*# Resource for function WVERWEIS #*=-
8848     Resource SC_OPCODE_H_LOOKUP
8849     {
8850         String 1 // Description
8851         {
8852             Text [ en-US ] = "Horizontal search and reference to the cells located below." ;
8853         };
8854         ExtraData =
8855         {
8856             0;
8857             ID_FUNCTION_GRP_TABLE;
8858             U2S( HID_FUNC_WVERWEIS );
8859             4;  0;  0;  0;  1;
8860             0;
8861         };
8862         String 2 // Name of Parameter 1
8863         {
8864             Text [ en-US ] = "search_criteria" ;
8865         };
8866         String 3 // Description of Parameter 1
8867         {
8868             Text [ en-US ] = "The value to be found in the first row." ;
8869         };
8870         String 4 // Name of Parameter 2
8871         {
8872             Text [ en-US ] = "array" ;
8873         };
8874         String 5 // Description of Parameter 2
8875         {
8876             Text [ en-US ] = "The array or the range for the reference." ;
8877         };
8878         String 6 // Name of Parameter 3
8879         {
8880             Text [ en-US ] = "Index" ;
8881         };
8882         String 7 // Description of Parameter 3
8883         {
8884             Text [ en-US ] = "The row index in the array." ;
8885         };
8886         String 8 // Name of Parameter 4
8887         {
8888             Text [ en-US ] = "sorted" ;
8889         };
8890         String 9 // Description of Parameter 4
8891         {
8892             Text [ en-US ] = "If the value is TRUE or not given, the search row of the array must be sorted in ascending order." ;
8893         };
8894     };
8895      // -=*# Resource for function SVERWEIS #*=-
8896     Resource SC_OPCODE_V_LOOKUP
8897     {
8898         String 1 // Description
8899         {
8900             Text [ en-US ] = "Vertical search and reference to indicated cells." ;
8901         };
8902         ExtraData =
8903         {
8904             0;
8905             ID_FUNCTION_GRP_TABLE;
8906             U2S( HID_FUNC_SVERWEIS );
8907             4;  0;  0;  0;  1;
8908             0;
8909         };
8910         String 2 // Name of Parameter 1
8911         {
8912             Text [ en-US ] = "Search criterion" ;
8913         };
8914         String 3 // Description of Parameter 1
8915         {
8916             Text [ en-US ] = "The value to be found in the first column." ;
8917         };
8918         String 4 // Name of Parameter 2
8919         {
8920             Text [ en-US ] = "array" ;
8921         };
8922         String 5 // Description of Parameter 2
8923         {
8924             Text [ en-US ] = "The array or range for referencing." ;
8925         };
8926         String 6 // Name of Parameter 3
8927         {
8928             Text [ en-US ] = "Index" ;
8929         };
8930         String 7 // Description of Parameter 3
8931         {
8932             Text [ en-US ] = "Column index number in the array." ;
8933         };
8934         String 8 // Name of Parameter 4
8935         {
8936             Text [ en-US ] = "sort order" ;
8937         };
8938         String 9 // Description of Parameter 4
8939         {
8940             Text [ en-US ] = "If the value is TRUE or not given, the search column of the array must be sorted in ascending order." ;
8941         };
8942     };
8943      // -=*# Resource for function INDEX #*=-
8944     Resource SC_OPCODE_INDEX
8945     {
8946         String 1 // Description
8947         {
8948             Text [ en-US ] = "Returns a reference to a cell from a defined range." ;
8949         };
8950         ExtraData =
8951         {
8952             0;
8953             ID_FUNCTION_GRP_TABLE;
8954             U2S( HID_FUNC_INDEX );
8955             4;  0;  1;  1;  1;
8956             0;
8957         };
8958         String 2 // Name of Parameter 1
8959         {
8960             Text [ en-US ] = "reference" ;
8961         };
8962         String 3 // Description of Parameter 1
8963         {
8964             Text [ en-US ] = "The reference to a (multiple) range." ;
8965         };
8966         String 4 // Name of Parameter 2
8967         {
8968             Text [ en-US ] = "row" ;
8969         };
8970         String 5 // Description of Parameter 2
8971         {
8972             Text [ en-US ] = "The row in the range." ;
8973         };
8974         String 6 // Name of Parameter 3
8975         {
8976             Text [ en-US ] = "column" ;
8977         };
8978         String 7 // Description of Parameter 3
8979         {
8980             Text [ en-US ] = "The column in the range." ;
8981         };
8982         String 8 // Name of Parameter 4
8983         {
8984             Text [ en-US ] = "range" ;
8985         };
8986         String 9 // Description of Parameter 4
8987         {
8988             Text [ en-US ] = "The index of the subrange if referring to a multiple range." ;
8989         };
8990     };
8991      // -=*# Resource for function INDIREKT #*=-
8992     Resource SC_OPCODE_INDIRECT
8993     {
8994         String 1 // Description
8995         {
8996             Text [ en-US ] = "Returns the contents of a cell that is referenced in text form." ;
8997         };
8998         ExtraData =
8999         {
9000             0;
9001             ID_FUNCTION_GRP_TABLE;
9002             U2S( HID_FUNC_INDIREKT );
9003             2;  0;  1;
9004             0;
9005         };
9006         String 2 // Name of Parameter 1
9007         {
9008             Text [ en-US ] = "ref " ;
9009         };
9010         String 3 // Description of Parameter 1
9011         {
9012             Text [ en-US ] = "The cell whose contents are to be evaluated is to be referenced in text form (e.g. \"A1\")." ;
9013         };
9014         String 4 // Name of Parameter 2
9015         {
9016             Text [ en-US ] = "A1" ;
9017         };
9018         String 5 // Description of Parameter 2
9019         {
9020             Text [ en-US ] = "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style." ;
9021         };
9022     };
9023      // -=*# Resource for function VERWEIS #*=-
9024     Resource SC_OPCODE_LOOKUP
9025     {
9026         String 1 // Description
9027         {
9028             Text [ en-US ] = "Determines a value in a vector by comparison to values in another vector." ;
9029         };
9030         ExtraData =
9031         {
9032             0;
9033             ID_FUNCTION_GRP_TABLE;
9034             U2S( HID_FUNC_VERWEIS );
9035             3;  0;  0;  1;
9036             0;
9037         };
9038         String 2 // Name of Parameter 1
9039         {
9040             Text [ en-US ] = "Search criterion" ;
9041         };
9042         String 3 // Description of Parameter 1
9043         {
9044             Text [ en-US ] = "The value to be used for comparison." ;
9045         };
9046         String 4 // Name of Parameter 2
9047         {
9048             Text [ en-US ] = "Search vector" ;
9049         };
9050         String 5 // Description of Parameter 2
9051         {
9052             Text [ en-US ] = "The vector (row or column) in which to search." ;
9053         };
9054         String 6 // Name of Parameter 3
9055         {
9056             Text [ en-US ] = "result_vector" ;
9057         };
9058         String 7 // Description of Parameter 3
9059         {
9060             Text [ en-US ] = "The vector (row or range) from which the value is to be determined." ;
9061         };
9062     };
9063      // -=*# Resource for function VERGLEICH #*=-
9064     Resource SC_OPCODE_MATCH
9065     {
9066         String 1 // Description
9067         {
9068             Text [ en-US ] = "Defines a position in a array after comparing values." ;
9069         };
9070         ExtraData =
9071         {
9072             0;
9073             ID_FUNCTION_GRP_TABLE;
9074             U2S( HID_FUNC_VERGLEICH );
9075             3;  0;  0;  1;
9076             0;
9077         };
9078         String 2 // Name of Parameter 1
9079         {
9080             Text [ en-US ] = "Search criterion" ;
9081         };
9082         String 3 // Description of Parameter 1
9083         {
9084             Text [ en-US ] = "The value to be used for comparison." ;
9085         };
9086         String 4 // Name of Parameter 2
9087         {
9088             Text [ en-US ] = "lookup_array" ;
9089         };
9090         String 5 // Description of Parameter 2
9091         {
9092             Text [ en-US ] = "The array (range) in which the search is made." ;
9093         };
9094         String 6 // Name of Parameter 3
9095         {
9096             Text [ en-US ] = "Type" ;
9097         };
9098         String 7 // Description of Parameter 3
9099         {
9100             Text [ en-US ] = "Type can take the value 1, 0 or -1 and determines the criteria are to be used for comparison purposes." ;
9101         };
9102     };
9103      // -=*# Resource for function VERSCHIEBUNG #*=-
9104     Resource SC_OPCODE_OFFSET
9105     {
9106         String 1 // Description
9107         {
9108             Text [ en-US ] = "Returns a reference which has been moved in relation to the starting point." ;
9109         };
9110         ExtraData =
9111         {
9112             0;
9113             ID_FUNCTION_GRP_TABLE;
9114             U2S( HID_FUNC_VERSCHIEBUNG );
9115             5;  0;  0;  0;  1;  1;
9116             0;
9117         };
9118         String 2 // Name of Parameter 1
9119         {
9120             Text [ en-US ] = "reference" ;
9121         };
9122         String 3 // Description of Parameter 1
9123         {
9124             Text [ en-US ] = "The reference (cell) from which to base the movement." ;
9125         };
9126         String 4 // Name of Parameter 2
9127         {
9128             Text [ en-US ] = "rows" ;
9129         };
9130         String 5 // Description of Parameter 2
9131         {
9132             Text [ en-US ] = "The number of rows to be moved either up or down." ;
9133         };
9134         String 6 // Name of Parameter 3
9135         {
9136             Text [ en-US ] = "columns" ;
9137         };
9138         String 7 // Description of Parameter 3
9139         {
9140             Text [ en-US ] = "The number of columns that are to be moved to the left or to the right." ;
9141         };
9142         String 8 // Name of Parameter 4
9143         {
9144             Text [ en-US ] = "height" ;
9145         };
9146         String 9 // Description of Parameter 4
9147         {
9148             Text [ en-US ] = "The number of rows of the moved reference." ;
9149         };
9150         String 10 // Name of Parameter 5
9151         {
9152             Text [ en-US ] = "width" ;
9153         };
9154         String 11 // Description of Parameter 5
9155         {
9156             Text [ en-US ] = "The number of columns in the moved reference." ;
9157         };
9158     };
9159      // -=*# Resource for function FEHLERTYP #*=-
9160     Resource SC_OPCODE_ERROR_TYPE
9161     {
9162         String 1 // Description
9163         {
9164             Text [ en-US ] = "Returns a number corresponding to an error type" ;
9165         };
9166         ExtraData =
9167         {
9168             0;
9169             ID_FUNCTION_GRP_TABLE;
9170             U2S( HID_FUNC_FEHLERTYP );
9171             1;  0;
9172             0;
9173         };
9174         String 2 // Name of Parameter 1
9175         {
9176             Text [ en-US ] = "reference" ;
9177         };
9178         String 3 // Description of Parameter 1
9179         {
9180             Text [ en-US ] = "The reference (cell) in which the error occurred." ;
9181         };
9182     };
9183      // -=*# Resource for function VORLAGE #*=-
9184     Resource SC_OPCODE_STYLE
9185     {
9186         String 1 // Description
9187         {
9188             Text [ en-US ] = "Applies a Style to the formula cell." ;
9189         };
9190         ExtraData =
9191         {
9192             0;
9193             ID_FUNCTION_GRP_TABLE;
9194             U2S( HID_FUNC_VORLAGE );
9195             3;  0;  1;  1;
9196             0;
9197         };
9198         String 2 // Name of Parameter 1
9199         {
9200             Text [ en-US ] = "Style" ;
9201         };
9202         String 3 // Description of Parameter 1
9203         {
9204             Text [ en-US ] = "The name of the Style to be applied." ;
9205         };
9206         String 4 // Name of Parameter 2
9207         {
9208             Text [ en-US ] = "Time" ;
9209         };
9210         String 5 // Description of Parameter 2
9211         {
9212             Text [ en-US ] = "The time (in seconds) that the Style is to remain valid." ;
9213         };
9214         String 6 // Name of Parameter 3
9215         {
9216             Text [ en-US ] = "Style2" ;
9217         };
9218         String 7 // Description of Parameter 3
9219         {
9220             Text [ en-US ] = "The Style to be applied after time expires." ;
9221         };
9222     };
9223      // -=*# Resource for function DDE #*=-
9224     Resource SC_OPCODE_DDE
9225     {
9226         String 1 // Description
9227         {
9228             Text [ en-US ] = "Result of a DDE link." ;
9229         };
9230         ExtraData =
9231         {
9232             0;
9233             ID_FUNCTION_GRP_TABLE;
9234             U2S( HID_FUNC_DDE );
9235             4;  0;  0;  0;  1;
9236             0;
9237         };
9238         String 2 // Name of Parameter 1
9239         {
9240             Text [ en-US ] = "server" ;
9241         };
9242         String 3 // Description of Parameter 1
9243         {
9244             Text [ en-US ] = "The name of the server application." ;
9245         };
9246         String 4 // Name of Parameter 2
9247         {
9248             Text [ en-US ] = "File" ;
9249         };
9250         String 5 // Description of Parameter 2
9251         {
9252             Text [ en-US ] = "The name of the file." ;
9253         };
9254         String 6 // Name of Parameter 3
9255         {
9256             Text [ en-US ] = "range" ;
9257         };
9258         String 7 // Description of Parameter 3
9259         {
9260             Text [ en-US ] = "The range from which data is to be taken." ;
9261         };
9262         String 8 // Name of Parameter 4
9263         {
9264             Text [ en-US ] = "mode" ;
9265         };
9266         String 9 // Description of Parameter 4
9267         {
9268             Text [ en-US ] = "Defines how data is to be converted to numbers." ;
9269         };
9270     };
9271      // -=*# Resource for function HYPERLINK #*=-
9272     Resource SC_OPCODE_HYPERLINK
9273     {
9274         String 1 // Description
9275         {
9276             Text [ en-US ] = "Hyperlink." ;
9277         };
9278         ExtraData =
9279         {
9280             0;
9281             ID_FUNCTION_GRP_TABLE;
9282             U2S( HID_FUNC_HYPERLINK );
9283             2;  0;  1;
9284             0;
9285         };
9286         String 2 // Name of Parameter 1
9287         {
9288             Text [ en-US ] = "URL " ;
9289         };
9290         String 3 // Description of Parameter 1
9291         {
9292             Text [ en-US ] = "URL";
9293         };
9294         String 4 // Name of Parameter 2
9295         {
9296             Text [ en-US ] = "CellText " ;
9297         };
9298         String 5 // Description of Parameter 2
9299         {
9300             Text [ en-US ] = "Cell Text";
9301         };
9302     };
9303      // -=*# Resource for function GETPIVOTDATA #*=-
9304     Resource SC_OPCODE_GET_PIVOT_DATA
9305     {
9306         String 1 // Description
9307         {
9308             Text [ en-US ] = "Extracts value(s) from a pivot table.";
9309         };
9310         ExtraData =
9311         {
9312             0;
9313             ID_FUNCTION_GRP_TABLE;
9314             U2S( HID_FUNC_GETPIVOTDATA );
9315             VAR_ARGS+2;      0; 0;  1;
9316             0;
9317         };
9318         String 2 // Name of Parameter 1
9319         {
9320             Text [ en-US ] = "Data Field";
9321         };
9322         String 3 // Description of Parameter 1
9323         {
9324             Text [ en-US ] = "The name of the pivot table field to extract.";
9325         };
9326         String 4 // Name of Parameter 2
9327         {
9328             Text [ en-US ] = "Pivot Table";
9329         };
9330         String 5 // Description of Parameter 2
9331         {
9332             Text [ en-US ] = "A reference to a cell or range in the pivot table.";
9333         };
9334         String 6 // Name of Parameter 3
9335         {
9336             Text [ en-US ] = "Field Name / Item";
9337         };
9338         String 7 // Description of Parameter 3
9339         {
9340             Text [ en-US ] = "Field name/value pair to filter the target data.";
9341         };
9342     };
9343      // -=*# Resource for function BAHTTEXT #*=-
9344     Resource SC_OPCODE_BAHTTEXT
9345     {
9346         String 1 // Description
9347         {
9348             Text [ en-US ] = "Converts a number to text (Baht)." ;
9349         };
9350         ExtraData =
9351         {
9352             0;
9353             ID_FUNCTION_GRP_TEXT;
9354             U2S( HID_FUNC_BAHTTEXT );
9355             1;  0;
9356             0;
9357         };
9358         String 2 // Name of Parameter 1
9359         {
9360             Text [ en-US ] = "Number" ;
9361         };
9362         String 3 // Description of Parameter 1
9363         {
9364             Text [ en-US ] = "The number to convert.";
9365         };
9366     };
9367      // -=*# Resource for function JIS #*=-
9368     Resource SC_OPCODE_JIS
9369     {
9370         String 1 // Description
9371         {
9372             Text [ en-US ] = "Converts half-width ASCII and katakana characters to full-width." ;
9373         };
9374         ExtraData =
9375         {
9376             0;
9377             ID_FUNCTION_GRP_TEXT;
9378             U2S( HID_FUNC_JIS );
9379             1;  0;
9380             0;
9381         };
9382         String 2 // Name of Parameter 1
9383         {
9384             Text [ en-US ] = "text" ;
9385         };
9386         String 3 // Description of Parameter 1
9387         {
9388             Text [ en-US ] = "The text to convert.";
9389         };
9390     };
9391      // -=*# Resource for function ASC #*=-
9392     Resource SC_OPCODE_ASC
9393     {
9394         String 1 // Description
9395         {
9396             Text [ en-US ] = "Converts full-width ASCII and katakana characters to half-width." ;
9397         };
9398         ExtraData =
9399         {
9400             0;
9401             ID_FUNCTION_GRP_TEXT;
9402             U2S( HID_FUNC_ASC );
9403             1;  0;
9404             0;
9405         };
9406         String 2 // Name of Parameter 1
9407         {
9408             Text [ en-US ] = "text" ;
9409         };
9410         String 3 // Description of Parameter 1
9411         {
9412             Text [ en-US ] = "The text to convert.";
9413         };
9414     };
9415      // -=*# Resource for function CODE #*=-
9416     Resource SC_OPCODE_CODE
9417     {
9418         String 1 // Description
9419         {
9420             Text [ en-US ] = "Returns a numeric code for the first character in a text string." ;
9421         };
9422         ExtraData =
9423         {
9424             0;
9425             ID_FUNCTION_GRP_TEXT;
9426             U2S( HID_FUNC_CODE );
9427             1;  0;
9428             0;
9429         };
9430         String 2 // Name of Parameter 1
9431         {
9432             Text [ en-US ] = "text" ;
9433         };
9434         String 3 // Description of Parameter 1
9435         {
9436             Text [ en-US ] = "This is the text for which the code of the first character is to be found." ;
9437         };
9438     };
9439      // -=*# Resource for function DM #*=-
9440     Resource SC_OPCODE_CURRENCY
9441     {
9442         String 1 // Description
9443         {
9444             Text [ en-US ] = "Converts a number to text in currency format." ;
9445         };
9446         ExtraData =
9447         {
9448             0;
9449             ID_FUNCTION_GRP_TEXT;
9450             U2S( HID_FUNC_DM );
9451             2;  0;  1;
9452             0;
9453         };
9454         String 2 // Name of Parameter 1
9455         {
9456             Text [ en-US ] = "value" ;
9457         };
9458         String 3 // Description of Parameter 1
9459         {
9460             Text [ en-US ] = "Value is a number, a reference to a cell containing a number or a formula that results in a number." ;
9461         };
9462         String 4 // Name of Parameter 2
9463         {
9464             Text [ en-US ] = "decimals" ;
9465         };
9466         String 5 // Description of Parameter 2
9467         {
9468             Text [ en-US ] = "Decimal places. Denotes the number of digits to the right of the decimal point." ;
9469         };
9470     };
9471      // -=*# Resource for function ZEICHEN #*=-
9472     Resource SC_OPCODE_CHAR
9473     {
9474         String 1 // Description
9475         {
9476             Text [ en-US ] = "Converts a code number into a character or letter." ;
9477         };
9478         ExtraData =
9479         {
9480             0;
9481             ID_FUNCTION_GRP_TEXT;
9482             U2S( HID_FUNC_ZEICHEN );
9483             1;  0;
9484             0;
9485         };
9486         String 2 // Name of Parameter 1
9487         {
9488             Text [ en-US ] = "number" ;
9489         };
9490         String 3 // Description of Parameter 1
9491         {
9492             Text [ en-US ] = "The code value for the character." ;
9493         };
9494     };
9495      // -=*# Resource for function SÄUBERN #*=-
9496     Resource SC_OPCODE_CLEAN
9497     {
9498         String 1 // Description
9499         {
9500             Text [ en-US ] = "Removes all nonprintable characters from text." ;
9501         };
9502         ExtraData =
9503         {
9504             0;
9505             ID_FUNCTION_GRP_TEXT;
9506             U2S( HID_FUNC_SAEUBERN );
9507             1;  0;
9508             0;
9509         };
9510         String 2 // Name of Parameter 1
9511         {
9512             Text [ en-US ] = "text" ;
9513         };
9514         String 3 // Description of Parameter 1
9515         {
9516             Text [ en-US ] = "The text from which nonprintable characters are to be removed." ;
9517         };
9518     };
9519      // -=*# Resource for function VERKETTEN #*=-
9520     Resource SC_OPCODE_CONCAT
9521     {
9522         String 1 // Description
9523         {
9524             Text [ en-US ] = "Combines several text items into one." ;
9525         };
9526         ExtraData =
9527         {
9528             0;
9529             ID_FUNCTION_GRP_TEXT;
9530             U2S( HID_FUNC_VERKETTEN );
9531             VAR_ARGS;   0;
9532             0;
9533         };
9534         String 2 // Name of Parameter 1
9535         {
9536             Text [ en-US ] = "text " ;
9537         };
9538         String 3 // Description of Parameter 1
9539         {
9540             Text [ en-US ] = "Text for the concatentation." ;
9541         };
9542     };
9543      // -=*# Resource for function IDENTISCH #*=-
9544     Resource SC_OPCODE_EXACT
9545     {
9546         String 1 // Description
9547         {
9548             Text [ en-US ] = "Specifies whether two texts are identical." ;
9549         };
9550         ExtraData =
9551         {
9552             0;
9553             ID_FUNCTION_GRP_TEXT;
9554             U2S( HID_FUNC_IDENTISCH );
9555             2;  0;  0;
9556             0;
9557         };
9558         String 2 // Name of Parameter 1
9559         {
9560             Text [ en-US ] = "text_1" ;
9561         };
9562         String 3 // Description of Parameter 1
9563         {
9564             Text [ en-US ] = "The first text to be used for comparing texts." ;
9565         };
9566         String 4 // Name of Parameter 2
9567         {
9568             Text [ en-US ] = "text_2" ;
9569         };
9570         String 5 // Description of Parameter 2
9571         {
9572             Text [ en-US ] = "The second text for comparing texts." ;
9573         };
9574     };
9575      // -=*# Resource for function FINDEN #*=-
9576     Resource SC_OPCODE_FIND
9577     {
9578         String 1 // Description
9579         {
9580             Text [ en-US ] = "Looks for a string of text within another (case sensitive)" ;
9581         };
9582         ExtraData =
9583         {
9584             0;
9585             ID_FUNCTION_GRP_TEXT;
9586             U2S( HID_FUNC_FINDEN );
9587             3;  0;  0;  1;
9588             0;
9589         };
9590         String 2 // Name of Parameter 1
9591         {
9592             Text [ en-US ] = "find_text" ;
9593         };
9594         String 3 // Description of Parameter 1
9595         {
9596             Text [ en-US ] = "The text to be found." ;
9597         };
9598         String 4 // Name of Parameter 2
9599         {
9600             Text [ en-US ] = "text" ;
9601         };
9602         String 5 // Description of Parameter 2
9603         {
9604             Text [ en-US ] = "The text in which a search is to be made." ;
9605         };
9606         String 6 // Name of Parameter 3
9607         {
9608             Text [ en-US ] = "position" ;
9609         };
9610         String 7 // Description of Parameter 3
9611         {
9612             Text [ en-US ] = "The position in the text from which the search starts." ;
9613         };
9614     };
9615      // -=*# Resource for function SUCHEN #*=-
9616     Resource SC_OPCODE_SEARCH
9617     {
9618         String 1 // Description
9619         {
9620             Text [ en-US ] = "Looks for one text value within another (not case-sensitive)." ;
9621         };
9622         ExtraData =
9623         {
9624             0;
9625             ID_FUNCTION_GRP_TEXT;
9626             U2S( HID_FUNC_SUCHEN );
9627             3;  0;  0;  1;
9628             0;
9629         };
9630         String 2 // Name of Parameter 1
9631         {
9632             Text [ en-US ] = "find_text" ;
9633         };
9634         String 3 // Description of Parameter 1
9635         {
9636             Text [ en-US ] = "The text to be found." ;
9637         };
9638         String 4 // Name of Parameter 2
9639         {
9640             Text [ en-US ] = "text" ;
9641         };
9642         String 5 // Description of Parameter 2
9643         {
9644             Text [ en-US ] = "The text in which a search is to be made." ;
9645         };
9646         String 6 // Name of Parameter 3
9647         {
9648             Text [ en-US ] = "position" ;
9649         };
9650         String 7 // Description of Parameter 3
9651         {
9652             Text [ en-US ] = "The position in the text where the search is started." ;
9653         };
9654     };
9655      // -=*# Resource for function GLÄTTEN #*=-
9656     Resource SC_OPCODE_TRIM
9657     {
9658         String 1 // Description
9659         {
9660             Text [ en-US ] = "Removes extra spaces from text." ;
9661         };
9662         ExtraData =
9663         {
9664             0;
9665             ID_FUNCTION_GRP_TEXT;
9666             U2S( HID_FUNC_GLAETTEN );
9667             1;  0;
9668             0;
9669         };
9670         String 2 // Name of Parameter 1
9671         {
9672             Text [ en-US ] = "text" ;
9673         };
9674         String 3 // Description of Parameter 1
9675         {
9676             Text [ en-US ] = "The text in which extra spaces between words are to be deleted." ;
9677         };
9678     };
9679      // -=*# Resource for function GROSS2 #*=-
9680     Resource SC_OPCODE_PROPPER
9681     {
9682         String 1 // Description
9683         {
9684             Text [ en-US ] = "Capitalizes the first letter in all words." ;
9685         };
9686         ExtraData =
9687         {
9688             0;
9689             ID_FUNCTION_GRP_TEXT;
9690             U2S( HID_FUNC_GROSS2 );
9691             1;  0;
9692             0;
9693         };
9694         String 2 // Name of Parameter 1
9695         {
9696             Text [ en-US ] = "text" ;
9697         };
9698         String 3 // Description of Parameter 1
9699         {
9700             Text [ en-US ] = "The text in which the beginning of words are to be replaced by capital letters." ;
9701         };
9702     };
9703      // -=*# Resource for function GROSS #*=-
9704     Resource SC_OPCODE_UPPER
9705     {
9706         String 1 // Description
9707         {
9708             Text [ en-US ] = "Converts text to uppercase." ;
9709         };
9710         ExtraData =
9711         {
9712             0;
9713             ID_FUNCTION_GRP_TEXT;
9714             U2S( HID_FUNC_GROSS );
9715             1;  0;
9716             0;
9717         };
9718         String 2 // Name of Parameter 1
9719         {
9720             Text [ en-US ] = "text" ;
9721         };
9722         String 3 // Description of Parameter 1
9723         {
9724             Text [ en-US ] = "The text in which lower case letters are to be converted to capitals." ;
9725         };
9726     };
9727      // -=*# Resource for function KLEIN #*=-
9728     Resource SC_OPCODE_LOWER
9729     {
9730         String 1 // Description
9731         {
9732             Text [ en-US ] = "Converts text to lowercase." ;
9733         };
9734         ExtraData =
9735         {
9736             0;
9737             ID_FUNCTION_GRP_TEXT;
9738             U2S( HID_FUNC_KLEIN );
9739             1;  0;
9740             0;
9741         };
9742         String 2 // Name of Parameter 1
9743         {
9744             Text [ en-US ] = "text" ;
9745         };
9746         String 3 // Description of Parameter 1
9747         {
9748             Text [ en-US ] = "The text in which capitals are converted to lower case letters." ;
9749         };
9750     };
9751      // -=*# Resource for function WERT #*=-
9752     Resource SC_OPCODE_VALUE
9753     {
9754         String 1 // Description
9755         {
9756             Text [ en-US ] = "Converts text to a number." ;
9757         };
9758         ExtraData =
9759         {
9760             0;
9761             ID_FUNCTION_GRP_TEXT;
9762             U2S( HID_FUNC_WERT );
9763             1;  0;
9764             0;
9765         };
9766         String 2 // Name of Parameter 1
9767         {
9768             Text [ en-US ] = "text" ;
9769         };
9770         String 3 // Description of Parameter 1
9771         {
9772             Text [ en-US ] = "The text to be converted to a number." ;
9773         };
9774     };
9775      // -=*# Resource for function TEXT #*=-
9776     Resource SC_OPCODE_TEXT
9777     {
9778         String 1 // Description
9779         {
9780             Text [ en-US ] = "Converts a number to text according to a given format." ;
9781         };
9782         ExtraData =
9783         {
9784             0;
9785             ID_FUNCTION_GRP_TEXT;
9786             U2S( HID_FUNC_TEXT );
9787             2;  0;  0;
9788             0;
9789         };
9790         String 2 // Name of Parameter 1
9791         {
9792             Text [ en-US ] = "number" ;
9793         };
9794         String 3 // Description of Parameter 1
9795         {
9796             Text [ en-US ] = "The numeric value to be converted." ;
9797         };
9798         String 4 // Name of Parameter 2
9799         {
9800             Text [ en-US ] = "Format" ;
9801         };
9802         String 5 // Description of Parameter 2
9803         {
9804             Text [ en-US ] = "The text that describes the format." ;
9805         };
9806     };
9807      // -=*# Resource for function T #*=-
9808     Resource SC_OPCODE_T
9809     {
9810         String 1 // Description
9811         {
9812             Text [ en-US ] = "Returns a value if it is text, otherwise an empty string." ;
9813         };
9814         ExtraData =
9815         {
9816             0;
9817             ID_FUNCTION_GRP_TEXT;
9818             U2S( HID_FUNC_T );
9819             1;  0;
9820             0;
9821         };
9822         String 2 // Name of Parameter 1
9823         {
9824             Text [ en-US ] = "value" ;
9825         };
9826         String 3 // Description of Parameter 1
9827         {
9828             Text [ en-US ] = "The value to be checked and returned if it is text." ;
9829         };
9830     };
9831      // -=*# Resource for function ERSETZEN #*=-
9832     Resource SC_OPCODE_REPLACE
9833     {
9834         String 1 // Description
9835         {
9836             Text [ en-US ] = "Replaces characters within a text string with a different text string." ;
9837         };
9838         ExtraData =
9839         {
9840             0;
9841             ID_FUNCTION_GRP_TEXT;
9842             U2S( HID_FUNC_ERSETZEN );
9843             4;  0;  0;  0;  0;
9844             0;
9845         };
9846         String 2 // Name of Parameter 1
9847         {
9848             Text [ en-US ] = "Text" ;
9849         };
9850         String 3 // Description of Parameter 1
9851         {
9852             Text [ en-US ] = "The text in which some characters are to be replaced." ;
9853         };
9854         String 4 // Name of Parameter 2
9855         {
9856             Text [ en-US ] = "position" ;
9857         };
9858         String 5 // Description of Parameter 2
9859         {
9860             Text [ en-US ] = "The character position from which text is to be replaced." ;
9861         };
9862         String 6 // Name of Parameter 3
9863         {
9864             Text [ en-US ] = "length" ;
9865         };
9866         String 7 // Description of Parameter 3
9867         {
9868             Text [ en-US ] = "The number of characters to be replaced." ;
9869         };
9870         String 8 // Name of Parameter 4
9871         {
9872             Text [ en-US ] = "new text" ;
9873         };
9874         String 9 // Description of Parameter 4
9875         {
9876             Text [ en-US ] = "The text to be inserted." ;
9877         };
9878     };
9879      // -=*# Resource for function FEST #*=-
9880     Resource SC_OPCODE_FIXED
9881     {
9882         String 1 // Description
9883         {
9884             Text [ en-US ] = "Formats a number with a fixed number of places after the decimal point and thousands separator." ;
9885         };
9886         ExtraData =
9887         {
9888             0;
9889             ID_FUNCTION_GRP_TEXT;
9890             U2S( HID_FUNC_FEST );
9891             3;  0;  0;  1;
9892             0;
9893         };
9894         String 2 // Name of Parameter 1
9895         {
9896             Text [ en-US ] = "number" ;
9897         };
9898         String 3 // Description of Parameter 1
9899         {
9900             Text [ en-US ] = "The number to be formatted." ;
9901         };
9902         String 4 // Name of Parameter 2
9903         {
9904             Text [ en-US ] = "Decimals" ;
9905         };
9906         String 5 // Description of Parameter 2
9907         {
9908             Text [ en-US ] = "Decimal places. The number of fixed decimal places that are to be displayed." ;
9909         };
9910         String 6 // Name of Parameter 3
9911         {
9912             Text [ en-US ] = "No thousands separators" ;
9913         };
9914         String 7 // Description of Parameter 3
9915         {
9916             Text [ en-US ] = "Thousands separator. If 0 or omitted the locale group separator is used else the separator is suppressed." ;
9917         };
9918     };
9919      // -=*# Resource for function LÄNGE #*=-
9920     Resource SC_OPCODE_LEN
9921     {
9922         String 1 // Description
9923         {
9924             Text [ en-US ] = "Calculates length of a text string." ;
9925         };
9926         ExtraData =
9927         {
9928             0;
9929             ID_FUNCTION_GRP_TEXT;
9930             U2S( HID_FUNC_LAENGE );
9931             1;  0;
9932             0;
9933         };
9934         String 2 // Name of Parameter 1
9935         {
9936             Text [ en-US ] = "text" ;
9937         };
9938         String 3 // Description of Parameter 1
9939         {
9940             Text [ en-US ] = "The text in which the length is to be determined." ;
9941         };
9942     };
9943      // -=*# Resource for function LINKS #*=-
9944     Resource SC_OPCODE_LEFT
9945     {
9946         String 1 // Description
9947         {
9948             Text [ en-US ] = "Returns the first character or characters of a text." ;
9949         };
9950         ExtraData =
9951         {
9952             0;
9953             ID_FUNCTION_GRP_TEXT;
9954             U2S( HID_FUNC_LINKS );
9955             2;  0;  1;
9956             0;
9957         };
9958         String 2 // Name of Parameter 1
9959         {
9960             Text [ en-US ] = "text" ;
9961         };
9962         String 3 // Description of Parameter 1
9963         {
9964             Text [ en-US ] = "The text where the initial partial words are to be determined." ;
9965         };
9966         String 4 // Name of Parameter 2
9967         {
9968             Text [ en-US ] = "number" ;
9969         };
9970         String 5 // Description of Parameter 2
9971         {
9972             Text [ en-US ] = "The number of characters for the start text." ;
9973         };
9974     };
9975      // -=*# Resource for function RECHTS #*=-
9976     Resource SC_OPCODE_RIGHT
9977     {
9978         String 1 // Description
9979         {
9980             Text [ en-US ] = "Returns the last character or characters of a text." ;
9981         };
9982         ExtraData =
9983         {
9984             0;
9985             ID_FUNCTION_GRP_TEXT;
9986             U2S( HID_FUNC_RECHTS );
9987             2;  0;  1;
9988             0;
9989         };
9990         String 2 // Name of Parameter 1
9991         {
9992             Text [ en-US ] = "text" ;
9993         };
9994         String 3 // Description of Parameter 1
9995         {
9996             Text [ en-US ] = "The text in which the end partial words are to be determined." ;
9997         };
9998         String 4 // Name of Parameter 2
9999         {
10000             Text [ en-US ] = "number" ;
10001         };
10002         String 5 // Description of Parameter 2
10003         {
10004             Text [ en-US ] = "The number of characters for the end text." ;
10005         };
10006     };
10007      // -=*# Resource for function TEIL #*=-
10008     Resource SC_OPCODE_MID
10009     {
10010         String 1 // Description
10011         {
10012             Text [ en-US ] = "Returns a partial text string of a text." ;
10013         };
10014         ExtraData =
10015         {
10016             0;
10017             ID_FUNCTION_GRP_TEXT;
10018             U2S( HID_FUNC_TEIL );
10019             3;  0;  0;  0;
10020             0;
10021         };
10022         String 2 // Name of Parameter 1
10023         {
10024             Text [ en-US ] = "text" ;
10025         };
10026         String 3 // Description of Parameter 1
10027         {
10028             Text [ en-US ] = "The text in which partial words are to be determined." ;
10029         };
10030         String 4 // Name of Parameter 2
10031         {
10032             Text [ en-US ] = "start" ;
10033         };
10034         String 5 // Description of Parameter 2
10035         {
10036             Text [ en-US ] = "The position from which the part word is to be determined." ;
10037         };
10038         String 6 // Name of Parameter 3
10039         {
10040             Text [ en-US ] = "number" ;
10041         };
10042         String 7 // Description of Parameter 3
10043         {
10044             Text [ en-US ] = "The number of characters for the text." ;
10045         };
10046     };
10047      // -=*# Resource for function WIEDERHOLEN #*=-
10048     Resource SC_OPCODE_REPT
10049     {
10050         String 1 // Description
10051         {
10052             Text [ en-US ] = "Repeats text a given number of times." ;
10053         };
10054         ExtraData =
10055         {
10056             0;
10057             ID_FUNCTION_GRP_TEXT;
10058             U2S( HID_FUNC_WIEDERHOLEN );
10059             2;  0;  0;
10060             0;
10061         };
10062         String 2 // Name of Parameter 1
10063         {
10064             Text [ en-US ] = "text" ;
10065         };
10066         String 3 // Description of Parameter 1
10067         {
10068             Text [ en-US ] = "The text to be repeated." ;
10069         };
10070         String 4 // Name of Parameter 2
10071         {
10072             Text [ en-US ] = "number" ;
10073         };
10074         String 5 // Description of Parameter 2
10075         {
10076             Text [ en-US ] = "The number of times the text is to be repeated." ;
10077         };
10078     };
10079      // -=*# Resource for function WECHSELN #*=-
10080     Resource SC_OPCODE_SUBSTITUTE
10081     {
10082         String 1 // Description
10083         {
10084             Text [ en-US ] = "Substitutes new text for old text in a string." ;
10085         };
10086         ExtraData =
10087         {
10088             0;
10089             ID_FUNCTION_GRP_TEXT;
10090             U2S( HID_FUNC_WECHSELN );
10091             4;  0;  0;  0;  1;
10092             0;
10093         };
10094         String 2 // Name of Parameter 1
10095         {
10096             Text [ en-US ] = "text" ;
10097         };
10098         String 3 // Description of Parameter 1
10099         {
10100             Text [ en-US ] = "The text in which partial words are to be replaced." ;
10101         };
10102         String 4 // Name of Parameter 2
10103         {
10104             Text [ en-US ] = "search_text" ;
10105         };
10106         String 5 // Description of Parameter 2
10107         {
10108             Text [ en-US ] = "The partial string to be (repeatedly) replaced." ;
10109         };
10110         String 6 // Name of Parameter 3
10111         {
10112             Text [ en-US ] = "new text" ;
10113         };
10114         String 7 // Description of Parameter 3
10115         {
10116             Text [ en-US ] = "The text which is to replace the text string." ;
10117         };
10118         String 8 // Name of Parameter 4
10119         {
10120             Text [ en-US ] = "occurrence" ;
10121         };
10122         String 9 // Description of Parameter 4
10123         {
10124             Text [ en-US ] = "Which occurrence of the old text is to be replaced." ;
10125         };
10126     };
10127      // -=*# Resource for function BASIS #*=-
10128     Resource SC_OPCODE_BASE
10129     {
10130         String 1 // Description
10131         {
10132             Text [ en-US ] = "Converts a positive integer to text from a number system to the base defined." ;
10133         };
10134         ExtraData =
10135         {
10136             0;
10137             ID_FUNCTION_GRP_TEXT;
10138             U2S( HID_FUNC_BASIS );
10139             3;  0;  0;  1;
10140             0;
10141         };
10142         String 2 // Name of Parameter 1
10143         {
10144             Text [ en-US ] = "number" ;
10145         };
10146         String 3 // Description of Parameter 1
10147         {
10148             Text [ en-US ] = "The number to be converted." ;
10149         };
10150         String 4 // Name of Parameter 2
10151         {
10152             Text [ en-US ] = "radix" ;
10153         };
10154         String 5 // Description of Parameter 2
10155         {
10156             Text [ en-US ] = "The base number for conversion must be in the range 2 - 36." ;
10157         };
10158         String 6 // Name of Parameter 3
10159         {
10160             Text [ en-US ] = "Minimum length" ;
10161         };
10162         String 7 // Description of Parameter 3
10163         {
10164             Text [ en-US ] = "If the text is shorter than the specified length, zeros are added to the left of the string." ;
10165         };
10166     };
10167      // -=*# Resource for function DEZIMAL #*=-
10168     Resource SC_OPCODE_DECIMAL
10169     {
10170         String 1 // Description
10171         {
10172             Text [ en-US ] = "Converts a text of a specified number system to a positive integer in the base given." ;
10173         };
10174         ExtraData =
10175         {
10176             0;
10177             ID_FUNCTION_GRP_TEXT;
10178             U2S( HID_FUNC_DEZIMAL );
10179             2;  0;  0;
10180             0;
10181         };
10182         String 2 // Name of Parameter 1
10183         {
10184             Text [ en-US ] = "text" ;
10185         };
10186         String 3 // Description of Parameter 1
10187         {
10188             Text [ en-US ] = "The text to be converted." ;
10189         };
10190         String 4 // Name of Parameter 2
10191         {
10192             Text [ en-US ] = "radix" ;
10193         };
10194         String 5 // Description of Parameter 2
10195         {
10196             Text [ en-US ] = "The base number for conversion must be in the range 2 - 36." ;
10197         };
10198     };
10199      // -=*# Resource for function CONVERT #*=-
10200     Resource SC_OPCODE_CONVERT
10201     {
10202         String 1 // Description
10203         {
10204             Text [ en-US ] = "Converts a value according to a conversion table in the configuration (main.xcd).";
10205         };
10206         ExtraData =
10207         {
10208             0;
10209             ID_FUNCTION_GRP_MATH;
10210             U2S( HID_FUNC_UMRECHNEN );
10211             3;  0;  0;  0;
10212             0;
10213         };
10214         String 2 // Name of Parameter 1
10215         {
10216             Text [ en-US ] = "value" ;
10217         };
10218         String 3 // Description of Parameter 1
10219         {
10220             Text [ en-US ] = "The value to be converted.";
10221         };
10222         String 4 // Name of Parameter 2
10223         {
10224             Text [ en-US ] = "text" ;
10225         };
10226         String 5 // Description of Parameter 2
10227         {
10228             Text [ en-US ] = "Unit from which something is converted, case-sensitive.";
10229         };
10230         String 6 // Name of Parameter 3
10231         {
10232             Text [ en-US ] = "text" ;
10233         };
10234         String 7 // Description of Parameter 3
10235         {
10236             Text [ en-US ] = "Unit into which something is converted, case-sensitive.";
10237         };
10238     };
10239      // -=*# Resource for function ROEMISCH #*=-
10240     Resource SC_OPCODE_ROMAN
10241     {
10242         String 1 // Description
10243         {
10244             Text [ en-US ] = "Converts a number to a Roman numeral.";
10245         };
10246         ExtraData =
10247         {
10248             0;
10249             ID_FUNCTION_GRP_TEXT;
10250             U2S( HID_FUNC_ROEMISCH );
10251             2;  0;  1;
10252             0;
10253         };
10254         String 2 // Name of Parameter 1
10255         {
10256             Text [ en-US ] = "Number";
10257         };
10258         String 3 // Description of Parameter 1
10259         {
10260             Text [ en-US ] = "The number to be converted to a Roman numeral must be in the 0 - 3999 range.";
10261         };
10262         String 4 // Name of Parameter 2
10263         {
10264             Text [ en-US ] = "Mode";
10265         };
10266         String 5 // Description of Parameter 2
10267         {
10268             Text [ en-US ] = "The more this value increases, the more the Roman numeral is simplified. The value must be in the 0 - 4 range.";
10269         };
10270     };
10271      // -=*# Resource for function ARABISCH #*=-
10272     Resource SC_OPCODE_ARABIC
10273     {
10274         String 1 // Description
10275         {
10276             Text [ en-US ] = "Calculates the value of a Roman numeral.";
10277         };
10278         ExtraData =
10279         {
10280             0;
10281             ID_FUNCTION_GRP_TEXT;
10282             U2S( HID_FUNC_ARABISCH );
10283             1;  0;
10284             0;
10285         };
10286         String 2 // Name of Parameter 1
10287         {
10288             Text [ en-US ] = "Text";
10289         };
10290         String 3 // Description of Parameter 1
10291         {
10292             Text [ en-US ] = "The text that represents a Roman numeral.";
10293         };
10294     };
10295     Resource SC_OPCODE_INFO
10296     {
10297         String 1
10298         {
10299             Text [ en-US ] = "Returns information about the environment.";
10300         };
10301         ExtraData =
10302         {
10303             0;
10304             ID_FUNCTION_GRP_INFO;
10305             U2S( HID_FUNC_INFO );
10306             1;  0;
10307             0;
10308         };
10309         String 2
10310         {
10311             Text [ en-US ] = "Text";
10312         };
10313         String 3
10314         {
10315             Text [ en-US ] = "Can be \"osversion\", \"system\", \"release\", \"numfile\", and \"recalc\".";
10316         };
10317     };
10318     Resource SC_OPCODE_UNICODE
10319     {
10320         String 1 // Description
10321         {
10322             Text [ en-US ] = "Returns the numeric code for the first Unicode character in a text string." ;
10323         };
10324         ExtraData =
10325         {
10326             0;
10327             ID_FUNCTION_GRP_TEXT;
10328             U2S( HID_FUNC_UNICODE );
10329             1;  0;
10330             0;
10331         };
10332         String 2 // Name of Parameter 1
10333         {
10334             Text [ en-US ] = "text" ;
10335         };
10336         String 3 // Description of Parameter 1
10337         {
10338             Text [ en-US ] = "This is the text for which the code of the first character is to be found." ;
10339         };
10340     };
10341     Resource SC_OPCODE_UNICHAR
10342     {
10343         String 1 // Description
10344         {
10345             Text [ en-US ] = "Converts a code number into a Unicode character or letter." ;
10346         };
10347         ExtraData =
10348         {
10349             0;
10350             ID_FUNCTION_GRP_TEXT;
10351             U2S( HID_FUNC_UNICHAR );
10352             1;  0;
10353             0;
10354         };
10355         String 2 // Name of Parameter 1
10356         {
10357             Text [ en-US ] = "number" ;
10358         };
10359         String 3 // Description of Parameter 1
10360         {
10361             Text [ en-US ] = "The code value for the character." ;
10362         };
10363     };
10364     Resource SC_OPCODE_EUROCONVERT
10365     {
10366         String 1 // Description
10367         {
10368             Text [ en-US ] = "Converts a value from one to another Euro currency.";
10369         };
10370         ExtraData =
10371         {
10372             0;  // DOING
10373             ID_FUNCTION_GRP_MATH;
10374             U2S( HID_FUNC_EUROCONVERT );
10375             5;  0;  0;  0;  1;  1;
10376             0;
10377         };
10378         String 2 // Name of Parameter 1
10379         {
10380             Text [ en-US ] = "value" ;
10381         };
10382         String 3 // Description of Parameter 1
10383         {
10384             Text [ en-US ] = "The value to be converted.";
10385         };
10386         String 4 // Name of Parameter 2
10387         {
10388             Text [ en-US ] = "from_currency" ;
10389         };
10390         String 5 // Description of Parameter 2
10391         {
10392             Text [ en-US ] = "ISO 4217 code of the currency from which is converted, case-sensitive.";
10393         };
10394         String 6 // Name of Parameter 3
10395         {
10396             Text [ en-US ] = "to_currency" ;
10397         };
10398         String 7 // Description of Parameter 3
10399         {
10400             Text [ en-US ] = "ISO 4217 code of the currency into which is converted, case-sensitive.";
10401         };
10402         String 8 // Name of Parameter 4
10403         {
10404             Text [ en-US ] = "full_precision" ;
10405         };
10406         String 9 // Description of Parameter 4
10407         {
10408             Text [ en-US ] = "If omitted or 0 or FALSE, the result is rounded to the decimals of to_currency. Else the result is not rounded.";
10409         };
10410         String 10 // Name of Parameter 5
10411         {
10412             Text [ en-US ] = "triangulation_precision" ;
10413         };
10414         String 11 // Description of Parameter 5
10415         {
10416             Text [ en-US ] = "If given and >=3, the intermediate result of a triangular conversion is rounded to that precision. If omitted, the result is not rounded.";
10417             Text [ x-comment ] = "This description uses almost all available space in the dialog, make sure translations fit in size." ;
10418         };
10419     };
10420     Resource SC_OPCODE_NUMBERVALUE
10421     {
10422         String 1 // Description
10423         {
10424             Text [ en-US ] = "Converts text to a number, in a locale-independent way." ;
10425         };
10426         ExtraData =
10427         {
10428             0;
10429             ID_FUNCTION_GRP_TEXT;
10430             U2S( HID_FUNC_NUMBERVALUE );
10431             3;  0; 1; 1;
10432             0;
10433         };
10434         String 2 // Name of Parameter 1
10435         {
10436             Text [ en-US ] = "text" ;
10437         };
10438         String 3 // Description of Parameter 1
10439         {
10440             Text [ en-US ] = "The text to be converted to a number." ;
10441         };
10442         String 4 // Name of Parameter 2
10443         {
10444             Text [ en-US ] = "decimal_separator" ;
10445         };
10446         String 5 // Description of Parameter 2
10447         {
10448             Text [ en-US ] = "Defines the character used as the decimal separator." ;
10449         };
10450         String 6 // Name of Parameter 3
10451         {
10452             Text [ en-US ] = "group_separator" ;
10453         };
10454         String 7 // Description of Parameter 3
10455         {
10456             Text [ en-US ] = "Defines the character(s) used as the group separator." ;
10457         };
10458     };
10460     Resource SC_OPCODE_BITAND
10461     {
10462         String 1 // Description
10463         {
10464             Text [ en-US ] = "Bitwise \"AND\" of two integers.";
10465         };
10466         ExtraData =
10467         {
10468             0;
10469             ID_FUNCTION_GRP_MATH;
10470             U2S( HID_FUNC_BITAND );
10471             2;  0;  0;
10472             0;
10473         };
10474         String 2 // Name of Parameter 1
10475         {
10476             Text [ en-US ] = "Number" ;
10477         };
10478         String 3 // Description of Parameter 1
10479         {
10480             Text [ en-US ] = "Positive integer less than 2^48." ;
10481         };
10482         String 4 // Name of Parameter 2
10483         {
10484             Text [ en-US ] = "Number" ;
10485         };
10486         String 5 // Description of Parameter 2
10487         {
10488             Text [ en-US ] = "Positive integer less than 2^48." ;
10489         };
10490     };
10491     Resource SC_OPCODE_BITOR
10492     {
10493         String 1 // Description
10494         {
10495             Text [ en-US ] = "Bitwise \"OR\" of two integers.";
10496         };
10497         ExtraData =
10498         {
10499             0;
10500             ID_FUNCTION_GRP_MATH;
10501             U2S( HID_FUNC_BITOR );
10502             2;  0;  0;
10503             0;
10504         };
10505         String 2 // Name of Parameter 1
10506         {
10507             Text [ en-US ] = "Number" ;
10508         };
10509         String 3 // Description of Parameter 1
10510         {
10511             Text [ en-US ] = "Positive integer less than 2^48." ;
10512         };
10513         String 4 // Name of Parameter 2
10514         {
10515             Text [ en-US ] = "Number" ;
10516         };
10517         String 5 // Description of Parameter 2
10518         {
10519             Text [ en-US ] = "Positive integer less than 2^48." ;
10520         };
10521     };
10522     Resource SC_OPCODE_BITXOR
10523     {
10524         String 1 // Description
10525         {
10526             Text [ en-US ] = "Bitwise \"exclusive OR\" of two integers.";
10527         };
10528         ExtraData =
10529         {
10530             0;
10531             ID_FUNCTION_GRP_MATH;
10532             U2S( HID_FUNC_BITXOR );
10533             2;  0;  0;
10534             0;
10535         };
10536         String 2 // Name of Parameter 1
10537         {
10538             Text [ en-US ] = "Number" ;
10539         };
10540         String 3 // Description of Parameter 1
10541         {
10542             Text [ en-US ] = "Positive integer less than 2^48." ;
10543         };
10544         String 4 // Name of Parameter 2
10545         {
10546             Text [ en-US ] = "Number" ;
10547         };
10548         String 5 // Description of Parameter 2
10549         {
10550             Text [ en-US ] = "Positive integer less than 2^48." ;
10551         };
10552     };
10553     Resource SC_OPCODE_BITRSHIFT
10554     {
10555         String 1 // Description
10556         {
10557             Text [ en-US ] = "Bitwise right shift of an integer value.";
10558         };
10559         ExtraData =
10560         {
10561             0;
10562             ID_FUNCTION_GRP_MATH;
10563             U2S( HID_FUNC_BITRSHIFT );
10564             2;  0;  0;
10565             0;
10566         };
10567         String 2 // Name of Parameter 1
10568         {
10569             Text [ en-US ] = "Number" ;
10570         };
10571         String 3 // Description of Parameter 1
10572         {
10573             Text [ en-US ] = "The value to be shifted. Positive integer less than 2^48." ;
10574         };
10575         String 4 // Name of Parameter 2
10576         {
10577             Text [ en-US ] = "Shift" ;
10578         };
10579         String 5 // Description of Parameter 2
10580         {
10581             Text [ en-US ] = "The integer number of bits the value is to be shifted." ;
10582         };
10583     };
10584     Resource SC_OPCODE_BITLSHIFT
10585     {
10586         String 1 // Description
10587         {
10588             Text [ en-US ] = "Bitwise left shift of an integer value.";
10589         };
10590         ExtraData =
10591         {
10592             0;
10593             ID_FUNCTION_GRP_MATH;
10594             U2S( HID_FUNC_BITLSHIFT );
10595             2;  0;  0;
10596             0;
10597         };
10598         String 2 // Name of Parameter 1
10599         {
10600             Text [ en-US ] = "Number" ;
10601         };
10602         String 3 // Description of Parameter 1
10603         {
10604             Text [ en-US ] = "The value to be shifted. Positive integer less than 2^48." ;
10605         };
10606         String 4 // Name of Parameter 2
10607         {
10608             Text [ en-US ] = "Shift" ;
10609         };
10610         String 5 // Description of Parameter 2
10611         {
10612             Text [ en-US ] = "The integer number of bits the value is to be shifted." ;
10613         };
10614     };
10615     Resource SC_OPCODE_LENB
10616     {
10617         String 1 // Description
10618         {
10619             Text [ en-US ] = "Calculates length of a text string, with DBCS" ;
10620         };
10621         ExtraData =
10622         {
10623             0;
10624             ID_FUNCTION_GRP_TEXT;
10625             U2S( HID_FUNC_LENB );
10626             1;  0;
10627             0;
10628         };
10629         String 2 // Name of Parameter 1
10630         {
10631             Text [ en-US ] = "text" ;
10632         };
10633         String 3 // Description of Parameter 1
10634         {
10635             Text [ en-US ] = "The text in which the length is to be determined." ;
10636         };
10637     };
10638     Resource SC_OPCODE_RIGHTB
10639     {
10640         String 1 // Description
10641         {
10642             Text [ en-US ] = "Returns the last character or characters of a text,with DBCS" ;
10643         };
10644         ExtraData =
10645         {
10646             0;
10647             ID_FUNCTION_GRP_TEXT;
10648             U2S( HID_FUNC_RIGHTB );
10649             2;  0;  1;
10650             0;
10651         };
10652         String 2 // Name of Parameter 1
10653         {
10654             Text [ en-US ] = "text" ;
10655         };
10656         String 3 // Description of Parameter 1
10657         {
10658             Text [ en-US ] = "The text in which the end partial words are to be determined." ;
10659         };
10660         String 4 // Name of Parameter 2
10661         {
10662             Text [ en-US ] = "number" ;
10663         };
10664         String 5 // Description of Parameter 2
10665         {
10666             Text [ en-US ] = "The number of characters for the end text." ;
10667         };
10668     };
10669     Resource SC_OPCODE_LEFTB
10670     {
10671         String 1 // Description
10672         {
10673             Text [ en-US ] = "Returns the first character or characters of a text,with DBCS" ;
10674         };
10675         ExtraData =
10676         {
10677             0;
10678             ID_FUNCTION_GRP_TEXT;
10679             U2S( HID_FUNC_LEFTB );
10680             2;  0;  1;
10681             0;
10682         };
10683         String 2 // Name of Parameter 1
10684         {
10685             Text [ en-US ] = "text" ;
10686         };
10687         String 3 // Description of Parameter 1
10688         {
10689             Text [ en-US ] = "The text where the initial partial words are to be determined." ;
10690         };
10691         String 4 // Name of Parameter 2
10692         {
10693             Text [ en-US ] = "number" ;
10694         };
10695         String 5 // Description of Parameter 2
10696         {
10697             Text [ en-US ] = "The number of characters for the start text." ;
10698         };
10699     };
10700     Resource SC_OPCODE_MIDB
10701     {
10702         String 1 // Description
10703         {
10704             Text [ en-US ] = "Returns a partial text string of a text, with DBCS" ;
10705         };
10706         ExtraData =
10707         {
10708             0;
10709             ID_FUNCTION_GRP_TEXT;
10710             U2S( HID_FUNC_MIDB );
10711             3;  0;  0;  0;
10712             0;
10713         };
10714         String 2 // Name of Parameter 1
10715         {
10716             Text [ en-US ] = "text" ;
10717         };
10718         String 3 // Description of Parameter 1
10719         {
10720             Text [ en-US ] = "The text in which partial words are to be determined." ;
10721         };
10722         String 4 // Name of Parameter 2
10723         {
10724             Text [ en-US ] = "start" ;
10725         };
10726         String 5 // Description of Parameter 2
10727         {
10728             Text [ en-US ] = "The position from which the part word is to be determined." ;
10729         };
10730         String 6 // Name of Parameter 3
10731         {
10732             Text [ en-US ] = "number" ;
10733         };
10734         String 7 // Description of Parameter 3
10735         {
10736             Text [ en-US ] = "The number of characters for the text." ;
10737         };
10738     };
10739     Resource SC_OPCODE_FILTERXML
10740     {
10741         ExtraData =
10742         {
10743             0;
10744             ID_FUNCTION_GRP_TEXT;
10745             U2S( HID_FUNC_FILTERXML );
10746             2; 0; 0;
10747             0;
10748         };
10749         String 1 // Description
10750         {
10751             Text [ en-US ] = "Apply an XPath expression to an XML document";
10752         };
10753         String 2 // Name of Parameter 1
10754         {
10755             Text [ en-US ] = "XML Document";
10756         };
10757         String 3 // Description of Parameter 1
10758         {
10759             Text [ en-US ] = "String containing a valid XML stream";
10760         };
10761         String 4 // Name of parameter 2
10762         {
10763             Text [ en-US ] = "XPath expression";
10764         };
10765         String 5 // Description of Parameter 2
10766         {
10767             Text [ en-US ] = "String containing a valid XPath expression";
10768         };
10769     };
10770     Resource SC_OPCODE_WEBSERVICE
10771     {
10772         String 1 // Description
10773         {
10774             Text [ en-US] = "Get some webcontent from an URI.";
10775         };
10776         ExtraData =
10777         {
10778             0;
10779             ID_FUNCTION_GRP_TEXT;
10780             U2S( HID_FUNC_WEBSERVICE );
10781             1; 0;
10782             0;
10783         };
10784         String 2 // Name of Parameter 1
10785         {
10786             Text [ en-US ] = "URI";
10787         };
10788         String 3 // Description of Parameter 1
10789         {
10790             Text [ en-US ] = "URI of the webservice";
10791         };
10792     };
10795 #if defined(U2S)
10796 #undef U2S
10797 #endif
10799 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */