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