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