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