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