1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef INCLUDED_SC_INC_SCFUNCS_HRC
20 #define INCLUDED_SC_INC_SCFUNCS_HRC
22 #define NC_(Context, String) reinterpret_cast<char const *>(Context "\004" u8##String)
24 /* Resource file for the function wizard / autopilot.
26 * For every function there is a StringArray with a resource id (offset by
27 * RID_SC_FUNC_DESCRIPTIONS_START) with the OpCode of the function
29 * In this stringarray, the description of the function is given as the first
30 * entry, followed by two entries for each parameter, first the type or name
31 * of the parameter, second a description of the parameter.
34 // -=*# Resource for function DCOUNT #*=-
35 const char* SC_OPCODE_DB_COUNT_ARY[] =
37 NC_("SC_OPCODE_DB_COUNT", "Counts the cells of a data range whose contents match the search criteria."),
38 NC_("SC_OPCODE_DB_COUNT", "Database"),
39 NC_("SC_OPCODE_DB_COUNT", "The range of cells containing data."),
40 NC_("SC_OPCODE_DB_COUNT", "Database field"),
41 NC_("SC_OPCODE_DB_COUNT", "Indicates which database field (column) is to be used for the search criteria."),
42 NC_("SC_OPCODE_DB_COUNT", "Search criteria"),
43 NC_("SC_OPCODE_DB_COUNT", "Defines the cell range containing the search criteria.")
46 // -=*# Resource for function DCOUNTA #*=-
47 const char* SC_OPCODE_DB_COUNT_2_ARY[] =
49 NC_("SC_OPCODE_DB_COUNT_2", "Counts all non-blank cells of a data range where the content corresponds to the search criteria."),
50 NC_("SC_OPCODE_DB_COUNT_2", "Database"),
51 NC_("SC_OPCODE_DB_COUNT_2", "The range of cells containing data."),
52 NC_("SC_OPCODE_DB_COUNT_2", "Database field"),
53 NC_("SC_OPCODE_DB_COUNT_2", "Indicates which database field (column) is to be used for the search criteria."),
54 NC_("SC_OPCODE_DB_COUNT_2", "Search criteria"),
55 NC_("SC_OPCODE_DB_COUNT_2", "Defines the cell range containing the search criteria.")
58 // -=*# Resource for function DAVERAGE #*=-
59 const char* SC_OPCODE_DB_AVERAGE_ARY[] =
61 NC_("SC_OPCODE_DB_AVERAGE", "Returns the average value of all the cells of a data range whose contents match the search criteria."),
62 NC_("SC_OPCODE_DB_AVERAGE", "Database"),
63 NC_("SC_OPCODE_DB_AVERAGE", "The range of cells containing data."),
64 NC_("SC_OPCODE_DB_AVERAGE", "Database field"),
65 NC_("SC_OPCODE_DB_AVERAGE", "Indicates which database field (column) is to be used for the search criteria."),
66 NC_("SC_OPCODE_DB_AVERAGE", "Search criteria"),
67 NC_("SC_OPCODE_DB_AVERAGE", "Defines the cell range containing the search criteria.")
70 // -=*# Resource for function DGET #*=-
71 const char* SC_OPCODE_DB_GET_ARY[] =
73 NC_("SC_OPCODE_DB_GET", "Defines the contents of the cell of a data range which matches the search criteria."),
74 NC_("SC_OPCODE_DB_GET", "Database"),
75 NC_("SC_OPCODE_DB_GET", "The range of cells containing data."),
76 NC_("SC_OPCODE_DB_GET", "Database field"),
77 NC_("SC_OPCODE_DB_GET", "Indicates which database field (column) is to be used for the search criteria."),
78 NC_("SC_OPCODE_DB_GET", "Search criteria"),
79 NC_("SC_OPCODE_DB_GET", "Defines the cell range containing the search criteria.")
82 // -=*# Resource for function DMAX #*=-
83 const char* SC_OPCODE_DB_MAX_ARY[] =
85 NC_("SC_OPCODE_DB_MAX", "Returns the maximum value from all of the cells of a data range which correspond to the search criteria."),
86 NC_("SC_OPCODE_DB_MAX", "Database"),
87 NC_("SC_OPCODE_DB_MAX", "The range of cells containing data."),
88 NC_("SC_OPCODE_DB_MAX", "Database field"),
89 NC_("SC_OPCODE_DB_MAX", "Indicates which database field (column) is to be used for the search criteria."),
90 NC_("SC_OPCODE_DB_MAX", "Search criteria"),
91 NC_("SC_OPCODE_DB_MAX", "Defines the cell range containing the search criteria.")
94 // -=*# Resource for function DMIN #*=-
95 const char* SC_OPCODE_DB_MIN_ARY[] =
97 NC_("SC_OPCODE_DB_MIN", "Returns the minimum of all cells of a data range where the contents correspond to the search criteria."),
98 NC_("SC_OPCODE_DB_MIN", "Database"),
99 NC_("SC_OPCODE_DB_MIN", "The range of cells containing data."),
100 NC_("SC_OPCODE_DB_MIN", "Database field"),
101 NC_("SC_OPCODE_DB_MIN", "Indicates which database field (column) is to be used for the search criteria."),
102 NC_("SC_OPCODE_DB_MIN", "Search criteria"),
103 NC_("SC_OPCODE_DB_MIN", "Defines the cell range containing the search criteria.")
106 // -=*# Resource for function DPRODUCT #*=-
107 const char* SC_OPCODE_DB_PRODUCT_ARY[] =
109 NC_("SC_OPCODE_DB_PRODUCT", "Multiplies all cells of a data range where the contents match the search criteria."),
110 NC_("SC_OPCODE_DB_PRODUCT", "Database"),
111 NC_("SC_OPCODE_DB_PRODUCT", "The range of cells containing data."),
112 NC_("SC_OPCODE_DB_PRODUCT", "Database field"),
113 NC_("SC_OPCODE_DB_PRODUCT", "Indicates which database field (column) is to be used for the search criteria."),
114 NC_("SC_OPCODE_DB_PRODUCT", "Search criteria"),
115 NC_("SC_OPCODE_DB_PRODUCT", "Defines the cell range containing the search criteria.")
118 // -=*# Resource for function DSTDEV #*=-
119 const char* SC_OPCODE_DB_STD_DEV_ARY[] =
121 NC_("SC_OPCODE_DB_STD_DEV", "Calculates the standard deviation of all cells in a data range whose contents match the search criteria."),
122 NC_("SC_OPCODE_DB_STD_DEV", "Database"),
123 NC_("SC_OPCODE_DB_STD_DEV", "The range of cells containing data."),
124 NC_("SC_OPCODE_DB_STD_DEV", "Database field"),
125 NC_("SC_OPCODE_DB_STD_DEV", "Indicates which database field (column) is to be used for the search criteria."),
126 NC_("SC_OPCODE_DB_STD_DEV", "Search criteria"),
127 NC_("SC_OPCODE_DB_STD_DEV", "Defines the cell range containing the search criteria.")
130 // -=*# Resource for function DSTDEVP #*=-
131 const char* SC_OPCODE_DB_STD_DEV_P_ARY[] =
133 NC_("SC_OPCODE_DB_STD_DEV_P", "Returns the standard deviation with regards to the population of all cells of a data range matching the search criteria."),
134 NC_("SC_OPCODE_DB_STD_DEV_P", "Database"),
135 NC_("SC_OPCODE_DB_STD_DEV_P", "The range of cells containing data."),
136 NC_("SC_OPCODE_DB_STD_DEV_P", "Database field"),
137 NC_("SC_OPCODE_DB_STD_DEV_P", "Indicates which database field (column) is to be used for the search criteria."),
138 NC_("SC_OPCODE_DB_STD_DEV_P", "Search criteria"),
139 NC_("SC_OPCODE_DB_STD_DEV_P", "Defines the cell range containing the search criteria.")
142 // -=*# Resource for function DSUM #*=-
143 const char* SC_OPCODE_DB_SUM_ARY[] =
145 NC_("SC_OPCODE_DB_SUM", "Adds all the cells of a data range where the contents match the search criteria."),
146 NC_("SC_OPCODE_DB_SUM", "Database"),
147 NC_("SC_OPCODE_DB_SUM", "The range of cells containing data."),
148 NC_("SC_OPCODE_DB_SUM", "Database field"),
149 NC_("SC_OPCODE_DB_SUM", "Indicates which database field (column) is to be used for the search criteria."),
150 NC_("SC_OPCODE_DB_SUM", "Search criteria"),
151 NC_("SC_OPCODE_DB_SUM", "Defines the cell range containing the search criteria.")
154 // -=*# Resource for function DVAR #*=-
155 const char* SC_OPCODE_DB_VAR_ARY[] =
157 NC_("SC_OPCODE_DB_VAR", "Determines the variance of all the cells in a data range where the contents match the search criteria."),
158 NC_("SC_OPCODE_DB_VAR", "Database"),
159 NC_("SC_OPCODE_DB_VAR", "The range of cells containing data."),
160 NC_("SC_OPCODE_DB_VAR", "Database field"),
161 NC_("SC_OPCODE_DB_VAR", "Indicates which database field (column) is to be used for the search criteria."),
162 NC_("SC_OPCODE_DB_VAR", "Search criteria"),
163 NC_("SC_OPCODE_DB_VAR", "Defines the cell range containing the search criteria.")
166 // -=*# Resource for function DVARP #*=-
167 const char* SC_OPCODE_DB_VAR_P_ARY[] =
169 NC_("SC_OPCODE_DB_VAR_P", "Determines variance of a population based on all cells in a data range where contents match the search criteria."),
170 NC_("SC_OPCODE_DB_VAR_P", "Database"),
171 NC_("SC_OPCODE_DB_VAR_P", "The range of cells containing data."),
172 NC_("SC_OPCODE_DB_VAR_P", "Database field"),
173 NC_("SC_OPCODE_DB_VAR_P", "Indicates which database field (column) is to be used for the search criteria."),
174 NC_("SC_OPCODE_DB_VAR_P", "Search criteria"),
175 NC_("SC_OPCODE_DB_VAR_P", "Defines the cell range containing the search criteria.")
178 // -=*# Resource for function DATE #*=-
179 const char* SC_OPCODE_GET_DATE_ARY[] =
181 NC_("SC_OPCODE_GET_DATE", "Provides an internal number for the date given."),
182 NC_("SC_OPCODE_GET_DATE", "Year"),
183 NC_("SC_OPCODE_GET_DATE", "An integer between 1583 and 9956 or 0 and 99 (19xx or 20xx depending on the defined option)."),
184 NC_("SC_OPCODE_GET_DATE", "Month"),
185 NC_("SC_OPCODE_GET_DATE", "An integer between 1 and 12 representing the month."),
186 NC_("SC_OPCODE_GET_DATE", "Day"),
187 NC_("SC_OPCODE_GET_DATE", "An integer between 1 and 31 representing the day of the month.")
190 // -=*# Resource for function DATE_VALUE #*=-
191 const char* SC_OPCODE_GET_DATE_VALUE_ARY[] =
193 NC_("SC_OPCODE_GET_DATE_VALUE", "Returns an internal number for a text having a possible date format."),
194 NC_("SC_OPCODE_GET_DATE_VALUE", "Text"),
195 NC_("SC_OPCODE_GET_DATE_VALUE", "A text enclosed in quotation marks which returns a date in a %PRODUCTNAME date format.")
198 // -=*# Resource for function DAY #*=-
199 const char* SC_OPCODE_GET_DAY_ARY[] =
201 NC_("SC_OPCODE_GET_DAY", "Returns the sequential date of the month as an integer (1-31) in relation to the date value."),
202 NC_("SC_OPCODE_GET_DAY", "Number"),
203 NC_("SC_OPCODE_GET_DAY", "The internal number for the date.")
206 // -=*# Resource for function DAYS360 #*=-
207 const char* SC_OPCODE_GET_DIFF_DATE_360_ARY[] =
209 NC_("SC_OPCODE_GET_DIFF_DATE_360", "Calculates the number of days between two dates based on a 360-day year."),
210 NC_("SC_OPCODE_GET_DIFF_DATE_360", "Date 1"),
211 NC_("SC_OPCODE_GET_DIFF_DATE_360", "The start date for calculating the difference in days."),
212 NC_("SC_OPCODE_GET_DIFF_DATE_360", "Date 2"),
213 NC_("SC_OPCODE_GET_DIFF_DATE_360", "The end date for calculating the difference in days."),
214 NC_("SC_OPCODE_GET_DIFF_DATE_360", "Type"),
215 NC_("SC_OPCODE_GET_DIFF_DATE_360", "Method used to form differences: Type = 0 denotes US method (NASD), Type = 1 denotes the European method.")
218 // -=*# Resource for function NETWORKDAYS #*=-
219 const char* SC_OPCODE_NETWORKDAYS_ARY[] =
221 NC_("SC_OPCODE_NETWORKDAYS", "Returns the number of workdays between two dates using arguments to indicate weekenddays and holidays."),
222 NC_("SC_OPCODE_NETWORKDAYS", "Start date"),
223 NC_("SC_OPCODE_NETWORKDAYS", "Start date for calculation."),
224 NC_("SC_OPCODE_NETWORKDAYS", "End date"),
225 NC_("SC_OPCODE_NETWORKDAYS", "End date for calculation."),
226 NC_("SC_OPCODE_NETWORKDAYS", "List of dates"),
227 NC_("SC_OPCODE_NETWORKDAYS", "Optional set of one or more dates to be considered as holiday."),
228 NC_("SC_OPCODE_NETWORKDAYS", "Array"),
229 NC_("SC_OPCODE_NETWORKDAYS", "Optional list of numbers to indicate working (0) and weekend (non-zero) days. When omitted, weekend is Saturday and Sunday.")
232 // -=*# Resource for function NETWORKDAYS.INTL #*=-
233 const char* SC_OPCODE_NETWORKDAYS_MS_ARY[] =
235 NC_("SC_OPCODE_NETWORKDAYS_MS", "Returns the number of workdays between two dates using arguments to indicate weekend days and holidays."),
236 NC_("SC_OPCODE_NETWORKDAYS_MS", "Start date"),
237 NC_("SC_OPCODE_NETWORKDAYS_MS", "Start date for calculation."),
238 NC_("SC_OPCODE_NETWORKDAYS_MS", "End date"),
239 NC_("SC_OPCODE_NETWORKDAYS_MS", "End date for calculation."),
240 NC_("SC_OPCODE_NETWORKDAYS_MS", "Number or string"),
241 NC_("SC_OPCODE_NETWORKDAYS_MS", "Optional number or string to indicate when weekends occur. When omitted, weekend is Saturday and Sunday."),
242 NC_("SC_OPCODE_NETWORKDAYS_MS", "Array"),
243 NC_("SC_OPCODE_NETWORKDAYS_MS", "Optional set of one or more dates to be considered as holiday.")
246 // -=*# Resource for function WORKDAY.INTL #*=-
247 const char* SC_OPCODE_WORKDAY_MS_ARY[] =
249 NC_("SC_OPCODE_WORKDAY_MS", "Returns the serial number of the date before or after a number of workdays using arguments to indicate weekend days and holidays."),
250 NC_("SC_OPCODE_WORKDAY_MS", "Start date"),
251 NC_("SC_OPCODE_WORKDAY_MS", "Start date for calculation."),
252 NC_("SC_OPCODE_WORKDAY_MS", "Days"),
253 NC_("SC_OPCODE_WORKDAY_MS", "The number of workdays before or after start date."),
254 NC_("SC_OPCODE_WORKDAY_MS", "Number or string"),
255 NC_("SC_OPCODE_WORKDAY_MS", "Optional number or string to indicate when weekends occur. When omitted, weekend is Saturday and Sunday."),
256 NC_("SC_OPCODE_WORKDAY_MS", "Array"),
257 NC_("SC_OPCODE_WORKDAY_MS", "Optional set of one or more dates to be considered as holiday.")
260 // -=*# Resource for function HOUR #*=-
261 const char* SC_OPCODE_GET_HOUR_ARY[] =
263 NC_("SC_OPCODE_GET_HOUR", "Determines the sequential number of the hour of the day (0-23) for the time value."),
264 NC_("SC_OPCODE_GET_HOUR", "Number"),
265 NC_("SC_OPCODE_GET_HOUR", "Internal time value")
268 // -=*# Resource for function MINUTE #*=-
269 const char* SC_OPCODE_GET_MIN_ARY[] =
271 NC_("SC_OPCODE_GET_MIN", "Determines the sequential number for the minute of the hour (0-59) for the time value."),
272 NC_("SC_OPCODE_GET_MIN", "Number"),
273 NC_("SC_OPCODE_GET_MIN", "Internal time value.")
276 // -=*# Resource for function MONTH #*=-
277 const char* SC_OPCODE_GET_MONTH_ARY[] =
279 NC_("SC_OPCODE_GET_MONTH", "Determines the sequential number of a month of the year (1-12) for the date value."),
280 NC_("SC_OPCODE_GET_MONTH", "Number"),
281 NC_("SC_OPCODE_GET_MONTH", "The internal number of the date.")
284 // -=*# Resource for function NOW #*=-
285 const char* SC_OPCODE_GET_ACT_TIME_ARY[] =
287 NC_("SC_OPCODE_GET_ACT_TIME", "Determines the current time of the computer.")
290 // -=*# Resource for function SECOND #*=-
291 const char*SC_OPCODE_GET_SEC_ARY[] =
293 NC_("SC_OPCODE_GET_SEC", "Determines the sequential number of the second of a minute (0-59) for the time value."),
294 NC_("SC_OPCODE_GET_SEC", "Number"),
295 NC_("SC_OPCODE_GET_SEC", "The internal time value.")
298 // -=*# Resource for function TIME #*=-
299 const char* SC_OPCODE_GET_TIME_ARY[] =
301 NC_("SC_OPCODE_GET_TIME", "Determines a time value from the details for hour, minute and second."),
302 NC_("SC_OPCODE_GET_TIME", "Hour"),
303 NC_("SC_OPCODE_GET_TIME", "The integer for the hour."),
304 NC_("SC_OPCODE_GET_TIME", "Minute"),
305 NC_("SC_OPCODE_GET_TIME", "The integer for the minute."),
306 NC_("SC_OPCODE_GET_TIME", "Second"),
307 NC_("SC_OPCODE_GET_TIME", "The integer for the second.")
310 // -=*# Resource for function TIMEVALUE #*=-
311 const char* SC_OPCODE_GET_TIME_VALUE_ARY[] =
313 NC_("SC_OPCODE_GET_TIME_VALUE", "Returns a sequential number for a text shown in a possible time entry format."),
314 NC_("SC_OPCODE_GET_TIME_VALUE", "Text"),
315 NC_("SC_OPCODE_GET_TIME_VALUE", "A text enclosed in quotation marks which returns a time in a %PRODUCTNAME time format.")
318 // -=*# Resource for function TODAY #*=-
319 const char* SC_OPCODE_GET_ACT_DATE_ARY[] =
321 NC_("SC_OPCODE_GET_ACT_DATE", "Determines the current date of the computer.")
324 // -=*# Resource for function WEEKDAY #*=-
325 const char* SC_OPCODE_GET_DAY_OF_WEEK_ARY[] =
327 NC_("SC_OPCODE_GET_DAY_OF_WEEK", "Returns the day of the week for the date value as an integer."),
328 NC_("SC_OPCODE_GET_DAY_OF_WEEK", "Number"),
329 NC_("SC_OPCODE_GET_DAY_OF_WEEK", "The internal number for the date."),
330 NC_("SC_OPCODE_GET_DAY_OF_WEEK", "Type"),
331 NC_("SC_OPCODE_GET_DAY_OF_WEEK", "Fixes the beginning of the week and the type of calculation to be used.")
334 // -=*# Resource for function YEAR #*=-
335 const char* SC_OPCODE_GET_YEAR_ARY[] =
337 NC_("SC_OPCODE_GET_YEAR", "Returns the year of a date value as an integer."),
338 NC_("SC_OPCODE_GET_YEAR", "Number"),
339 NC_("SC_OPCODE_GET_YEAR", "Internal number of the date.")
342 // -=*# Resource for function DAYS #*=-
343 const char* SC_OPCODE_GET_DIFF_DATE_ARY[] =
345 NC_("SC_OPCODE_GET_DIFF_DATE", "Calculates the number of days between two dates."),
346 NC_("SC_OPCODE_GET_DIFF_DATE", "Date 2"),
347 NC_("SC_OPCODE_GET_DIFF_DATE", "The end date for calculating the difference in days."),
348 NC_("SC_OPCODE_GET_DIFF_DATE", "Date 1"),
349 NC_("SC_OPCODE_GET_DIFF_DATE", "The start date for calculating the difference in days.")
352 // -=*# Resource for function DATEDIF #*=-
353 const char* SC_OPCODE_GET_DATEDIF_ARY[] =
355 NC_("SC_OPCODE_GET_DATEDIF", "Returns the number of whole days, months or years between 'start date' and 'end date'."),
356 NC_("SC_OPCODE_GET_DATEDIF", "Start date"),
357 NC_("SC_OPCODE_GET_DATEDIF", "The start date."),
358 NC_("SC_OPCODE_GET_DATEDIF", "End date"),
359 NC_("SC_OPCODE_GET_DATEDIF", "The end date."),
360 NC_("SC_OPCODE_GET_DATEDIF", "Interval"),
361 NC_("SC_OPCODE_GET_DATEDIF", "Interval to be calculated. Can be \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\".")
364 // -=*# Resource for function WEEKNUM #*=-
365 const char* SC_OPCODE_WEEK_ARY[] =
367 NC_("SC_OPCODE_WEEK", "Calculates the calendar week corresponding to the given date."),
368 NC_("SC_OPCODE_WEEK", "Number"),
369 NC_("SC_OPCODE_WEEK", "The internal number of the date."),
370 NC_("SC_OPCODE_WEEK", "Mode"),
371 NC_("SC_OPCODE_WEEK", "Indicates the first day of the week and when week 1 starts.")
374 // -=*# Resource for function ISOWEEKNUM #*=-
375 const char* SC_OPCODE_ISOWEEKNUM_ARY[] =
377 NC_("SC_OPCODE_ISOWEEKNUM", "Calculates the ISO 8601 calendar week for the given date."),
378 NC_("SC_OPCODE_ISOWEEKNUM", "Number"),
379 NC_("SC_OPCODE_ISOWEEKNUM", "The internal number of the date.")
382 const char* SC_OPCODE_WEEKNUM_OOO_ARY[] =
384 NC_("SC_OPCODE_WEEKNUM_OOO", "Calculates the calendar week corresponding to the given date.\nThis function only provides interoperability with %PRODUCTNAME 5.0 and earlier and OpenOffice.org."),
385 NC_("SC_OPCODE_WEEKNUM_OOO", "Number"),
386 NC_("SC_OPCODE_WEEKNUM_OOO", "The internal number of the date."),
387 NC_("SC_OPCODE_WEEKNUM_OOO", "Mode"),
388 NC_("SC_OPCODE_WEEKNUM_OOO", "Indicates the first day of the week (1 = Sunday, other values = Monday).")
391 // -=*# Resource for function EASTERSUNDAY #*=-
392 const char* SC_OPCODE_EASTERSUNDAY_ARY[] =
394 NC_("SC_OPCODE_EASTERSUNDAY", "Calculates the date of Easter Sunday in a given year."),
395 NC_("SC_OPCODE_EASTERSUNDAY", "Year"),
396 NC_("SC_OPCODE_EASTERSUNDAY", "An integer between 1583 and 9956, or 0 and 99 (19xx or 20xx depending on the option set).")
399 // -=*# Resource for function PV #*=-
400 const char* SC_OPCODE_PV_ARY[] =
402 NC_("SC_OPCODE_PV", "Present value. Calculates the present value of an investment."),
403 NC_("SC_OPCODE_PV", "Rate"),
404 NC_("SC_OPCODE_PV", "The rate of interest for the period given."),
405 NC_("SC_OPCODE_PV", "NPER"),
406 NC_("SC_OPCODE_PV", "The payment period. The total number of periods in which the annuity is paid."),
407 NC_("SC_OPCODE_PV", "PMT"),
408 NC_("SC_OPCODE_PV", "Regular payments. The constant amount of annuity that is paid in each period."),
409 NC_("SC_OPCODE_PV", "FV"),
410 NC_("SC_OPCODE_PV", "Future value. The value (final value) to be attained after the last payment."),
411 NC_("SC_OPCODE_PV", "Type"),
412 NC_("SC_OPCODE_PV", "Type = 1 denotes due at the beginning of the period, = 0 at the end.")
415 // -=*# Resource for function FV #*=-
416 const char* SC_OPCODE_FV_ARY[] =
418 NC_("SC_OPCODE_FV", "Future value. Returns the future value of an investment based on regular payments and a constant interest rate."),
419 NC_("SC_OPCODE_FV", "Rate"),
420 NC_("SC_OPCODE_FV", "The rate of interest per period."),
421 NC_("SC_OPCODE_FV", "NPER"),
422 NC_("SC_OPCODE_FV", "Payment period. The total number of periods in which the annuity (pension) is paid."),
423 NC_("SC_OPCODE_FV", "PMT"),
424 NC_("SC_OPCODE_FV", "Regular payments. The constant annuity to be paid in each period."),
425 NC_("SC_OPCODE_FV", "PV"),
426 NC_("SC_OPCODE_FV", "Present value. The current value of a series of payments"),
427 NC_("SC_OPCODE_FV", "Type"),
428 NC_("SC_OPCODE_FV", "Type = 1 denotes due at the beginning of the period, = 0 at the end.")
431 // -=*# Resource for function NPER #*=-
432 const char* SC_OPCODE_NPER_ARY[] =
434 NC_("SC_OPCODE_NPER", "Payment period. Calculates the number of payment periods for an investment based on regular payments and a constant interest rate."),
435 NC_("SC_OPCODE_NPER", "Rate"),
436 NC_("SC_OPCODE_NPER", "The rate of interest per period."),
437 NC_("SC_OPCODE_NPER", "PMT"),
438 NC_("SC_OPCODE_NPER", "Regular payments. The constant annuity to be paid in each period."),
439 NC_("SC_OPCODE_NPER", "PV"),
440 NC_("SC_OPCODE_NPER", "Present value. The current value of a series of payments"),
441 NC_("SC_OPCODE_NPER", "FV"),
442 NC_("SC_OPCODE_NPER", "Future value. The value (end value) to be attained after the final payment."),
443 NC_("SC_OPCODE_NPER", "Type"),
444 NC_("SC_OPCODE_NPER", "Type = 1 denotes due at the beginning of the period, = 0 at the end.")
447 // -=*# Resource for function PMT #*=-
448 const char* SC_OPCODE_PMT_ARY[] =
450 NC_("SC_OPCODE_PMT", "Regular payments. Returns the periodic payment of an annuity, based on regular payments and a fixed periodic interest rate."),
451 NC_("SC_OPCODE_PMT", "Rate"),
452 NC_("SC_OPCODE_PMT", "The rate of interest per period."),
453 NC_("SC_OPCODE_PMT", "NPER"),
454 NC_("SC_OPCODE_PMT", "Payment period. The total number of periods in which the annuity (pension) is paid."),
455 NC_("SC_OPCODE_PMT", "PV"),
456 NC_("SC_OPCODE_PMT", "Present value. The current value of a series of payments"),
457 NC_("SC_OPCODE_PMT", "FV"),
458 NC_("SC_OPCODE_PMT", "Future value. The value (end value) to be attained after the final payment."),
459 NC_("SC_OPCODE_PMT", "Type"),
460 NC_("SC_OPCODE_PMT", "Type = 1 denotes due at the beginning of the period, = 0 at the end.")
463 // -=*# Resource for function RATE #*=-
464 const char* SC_OPCODE_RATE_ARY[] =
466 NC_("SC_OPCODE_RATE", "Calculates the constant interest rate of an investment with regular payments."),
467 NC_("SC_OPCODE_RATE", "NPER"),
468 NC_("SC_OPCODE_RATE", "Payment period. The total number of periods in which the annuity (pension) is paid."),
469 NC_("SC_OPCODE_RATE", "PMT"),
470 NC_("SC_OPCODE_RATE", "Regular payments. The constant annuity to be paid in each period."),
471 NC_("SC_OPCODE_RATE", "PV"),
472 NC_("SC_OPCODE_RATE", "Present value. The current value of a series of payments"),
473 NC_("SC_OPCODE_RATE", "FV"),
474 NC_("SC_OPCODE_RATE", "Future value. The value (end value) to be attained after the final payment."),
475 NC_("SC_OPCODE_RATE", "Type"),
476 NC_("SC_OPCODE_RATE", "Type = 1 denotes due at the beginning of the period, = 0 at the end."),
477 NC_("SC_OPCODE_RATE", "Guess"),
478 NC_("SC_OPCODE_RATE", "Guess. The estimate of the interest rate for the iterative calculating method.")
481 // -=*# Resource for function IPMT #*=-
482 const char* SC_OPCODE_IPMT_ARY[] =
484 NC_("SC_OPCODE_IPMT", "Compounded interest. Calculates the interest payment on the principal for an investment with regular payments and a constant interest rate for a given period."),
485 NC_("SC_OPCODE_IPMT", "Rate"),
486 NC_("SC_OPCODE_IPMT", "The rate of interest per period."),
487 NC_("SC_OPCODE_IPMT", "Period"),
488 NC_("SC_OPCODE_IPMT", "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."),
489 NC_("SC_OPCODE_IPMT", "NPER"),
490 NC_("SC_OPCODE_IPMT", "Payment period. The total number of periods in which the annuity (pension) is paid."),
491 NC_("SC_OPCODE_IPMT", "PV"),
492 NC_("SC_OPCODE_IPMT", "Present value. The current value of a series of payments"),
493 NC_("SC_OPCODE_IPMT", "FV"),
494 NC_("SC_OPCODE_IPMT", "Future value. The value (end value) to be attained after the final payment."),
495 NC_("SC_OPCODE_IPMT", "Type"),
496 NC_("SC_OPCODE_IPMT", "Type = 1 denotes due at the beginning of the period, = 0 at the end.")
499 // -=*# Resource for function PPMT #*=-
500 const char* SC_OPCODE_PPMT_ARY[] =
502 NC_("SC_OPCODE_PPMT", "Repayment. Calculates the repayment amount for a period for an investment whereby the payments are at regular intervals and the interest rate constant."),
503 NC_("SC_OPCODE_PPMT", "Rate"),
504 NC_("SC_OPCODE_PPMT", "The interest rate per period."),
505 NC_("SC_OPCODE_PPMT", "Period"),
506 NC_("SC_OPCODE_PPMT", "Period. The period for which the repayments are to be calculated. Per = 1 denotes for the first period, P = NPER for the last"),
507 NC_("SC_OPCODE_PPMT", "NPER"),
508 NC_("SC_OPCODE_PPMT", "The payment period. The total number of periods in which the annuity (pension) is paid."),
509 NC_("SC_OPCODE_PPMT", "PV"),
510 NC_("SC_OPCODE_PPMT", "The present value. The present value or the amount the annuity is currently worth."),
511 NC_("SC_OPCODE_PPMT", "FV"),
512 NC_("SC_OPCODE_PPMT", "Future value. The value (end value) attained after the last payment has been made."),
513 NC_("SC_OPCODE_PPMT", "Type"),
514 NC_("SC_OPCODE_PPMT", "Type = 1 denotes due at the beginning of the period, = 0 at the end.")
517 // -=*# Resource for function CUMPRINC #*=-
518 const char* SC_OPCODE_CUM_PRINC_ARY[] =
520 NC_("SC_OPCODE_CUM_PRINC", "Cumulative capital. Calculates the total amount of the repayment share in a period for an investment with constant interest rate."),
521 NC_("SC_OPCODE_CUM_PRINC", "Rate"),
522 NC_("SC_OPCODE_CUM_PRINC", "The rate of interest per period."),
523 NC_("SC_OPCODE_CUM_PRINC", "NPER"),
524 NC_("SC_OPCODE_CUM_PRINC", "Payment period. The total number of periods in which the annuity (pension) is paid."),
525 NC_("SC_OPCODE_CUM_PRINC", "PV"),
526 NC_("SC_OPCODE_CUM_PRINC", "The present value. The present value or the amount the annuity is currently worth."),
527 NC_("SC_OPCODE_CUM_PRINC", "S"),
528 NC_("SC_OPCODE_CUM_PRINC", "The start period. The first period to be taken into account. S = 1 denotes the very first period."),
529 NC_("SC_OPCODE_CUM_PRINC", "E"),
530 NC_("SC_OPCODE_CUM_PRINC", "End period. The last period to be taken into account."),
531 NC_("SC_OPCODE_CUM_PRINC", "Type"),
532 NC_("SC_OPCODE_CUM_PRINC", "Type = 1 denotes due at the beginning of the period, = 0 at the end.")
535 // -=*# Resource for function CUMIPMT #*=-
536 const char* SC_OPCODE_CUM_IPMT_ARY[] =
538 NC_("SC_OPCODE_CUM_IPMT", "Cumulative compounded interest. Calculates the total amount of the interest share in a period for an investment with a constant interest rate."),
539 NC_("SC_OPCODE_CUM_IPMT", "Rate"),
540 NC_("SC_OPCODE_CUM_IPMT", "The rate of interest per period."),
541 NC_("SC_OPCODE_CUM_IPMT", "NPER"),
542 NC_("SC_OPCODE_CUM_IPMT", "Payment period. The total number of periods in which the annuity (pension) is paid."),
543 NC_("SC_OPCODE_CUM_IPMT", "PV"),
544 NC_("SC_OPCODE_CUM_IPMT", "The present value. The present value or the amount the annuity is currently worth."),
545 NC_("SC_OPCODE_CUM_IPMT", "S"),
546 NC_("SC_OPCODE_CUM_IPMT", "The start period. The first period to be taken into account. S = 1 denotes the very first period."),
547 NC_("SC_OPCODE_CUM_IPMT", "E"),
548 NC_("SC_OPCODE_CUM_IPMT", "The end period. The last period to be taken into account."),
549 NC_("SC_OPCODE_CUM_IPMT", "Type"),
550 NC_("SC_OPCODE_CUM_IPMT", "Type = 1 denotes due at the beginning of the period, = 0 at the end.")
553 // -=*# Resource for function SYD #*=-
554 const char* SC_OPCODE_SYD_ARY[] =
556 NC_("SC_OPCODE_SYD", "Calculates the arithmetically declining value of an asset (depreciation) for a specified period."),
557 NC_("SC_OPCODE_SYD", "Cost"),
558 NC_("SC_OPCODE_SYD", "Acquisition costs. The initial cost of the asset."),
559 NC_("SC_OPCODE_SYD", "Salvage"),
560 NC_("SC_OPCODE_SYD", "Salvage: The remaining value of the asset at the end of its life."),
561 NC_("SC_OPCODE_SYD", "Life"),
562 NC_("SC_OPCODE_SYD", "Useful life. The number of periods in the useful life of the asset."),
563 NC_("SC_OPCODE_SYD", "Period"),
564 NC_("SC_OPCODE_SYD", "Period. The depreciation period which must have the same time unit as average useful life.")
567 // -=*# Resource for function SLN #*=-
568 const char* SC_OPCODE_SLN_ARY[] =
570 NC_("SC_OPCODE_SLN", "Calculates the linear depreciation per period."),
571 NC_("SC_OPCODE_SLN", "Cost"),
572 NC_("SC_OPCODE_SLN", "Acquisition cost. The initial cost of an asset."),
573 NC_("SC_OPCODE_SLN", "Salvage"),
574 NC_("SC_OPCODE_SLN", "Salvage: The remaining value of the asset at the end of its life."),
575 NC_("SC_OPCODE_SLN", "Life"),
576 NC_("SC_OPCODE_SLN", "Useful life. The number of periods in the useful life of the asset.")
579 // -=*# Resource for function DDB #*=-
580 const char* SC_OPCODE_DDB_ARY[] =
582 NC_("SC_OPCODE_DDB", "Calculates the depreciation of an asset for a specific period using the double-declining balance method or declining balance factor."),
583 NC_("SC_OPCODE_DDB", "Cost"),
584 NC_("SC_OPCODE_DDB", "Acquisition costs. The initial cost of the asset."),
585 NC_("SC_OPCODE_DDB", "Salvage"),
586 NC_("SC_OPCODE_DDB", "Salvage: The remaining value of the asset at the end of its life."),
587 NC_("SC_OPCODE_DDB", "Life"),
588 NC_("SC_OPCODE_DDB", "Useful life. The number of periods in the useful life of the asset."),
589 NC_("SC_OPCODE_DDB", "Period"),
590 NC_("SC_OPCODE_DDB", "Period. The depreciation period in the same time unit as the average useful life entry."),
591 NC_("SC_OPCODE_DDB", "Factor"),
592 NC_("SC_OPCODE_DDB", "Factor. The factor for balance decline. F = 2 means a double declining balance factor")
595 // -=*# Resource for function DB #*=-
596 const char* SC_OPCODE_DB_ARY[] =
598 NC_("SC_OPCODE_DB", "Returns the real depreciation of an asset for a specified period using the fixed-declining balance method."),
599 NC_("SC_OPCODE_DB", "Cost"),
600 NC_("SC_OPCODE_DB", "Acquisition costs: The initial cost of the asset."),
601 NC_("SC_OPCODE_DB", "Salvage"),
602 NC_("SC_OPCODE_DB", "Salvage: The remaining value of the asset at the end of its life."),
603 NC_("SC_OPCODE_DB", "Life"),
604 NC_("SC_OPCODE_DB", "Useful life. The number of periods in the useful life of the asset."),
605 NC_("SC_OPCODE_DB", "Period"),
606 NC_("SC_OPCODE_DB", "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."),
607 NC_("SC_OPCODE_DB", "Month"),
608 NC_("SC_OPCODE_DB", "Months: The number of months in the first year of depreciation.")
611 // -=*# Resource for function VDB #*=-
612 const char* SC_OPCODE_VBD_ARY[] =
614 NC_("SC_OPCODE_VBD", "Variable declining balance. Returns the declining balance depreciation for a particular period."),
615 NC_("SC_OPCODE_VBD", "Cost"),
616 NC_("SC_OPCODE_VBD", "Cost. The initial cost of the asset."),
617 NC_("SC_OPCODE_VBD", "Salvage"),
618 NC_("SC_OPCODE_VBD", "Salvage. The salvage value of an asset at the end of its useful life."),
619 NC_("SC_OPCODE_VBD", "Life"),
620 NC_("SC_OPCODE_VBD", "Useful life. The number of periods in the useful life of the asset."),
621 NC_("SC_OPCODE_VBD", "Start"),
622 NC_("SC_OPCODE_VBD", "Start. The first period for depreciation in the same time unit as the useful life."),
623 NC_("SC_OPCODE_VBD", "End"),
624 NC_("SC_OPCODE_VBD", "End. The last period of the depreciation using the same time unit as for the useful life."),
625 NC_("SC_OPCODE_VBD", "Factor"),
626 NC_("SC_OPCODE_VBD", "Factor. The factor for the reduction of the depreciation. Factor = 2 denotes double rate depreciation."),
627 NC_("SC_OPCODE_VBD", "NoSwitch"),
628 NC_("SC_OPCODE_VBD", "NoSwitch = 0 denotes switch to linear depreciation, NoSwitch = 1 do not switch.")
631 // -=*# Resource for function EFFECT #*=-
632 const char* SC_OPCODE_EFFECT_ARY[] =
634 NC_("SC_OPCODE_EFFECT", "Calculates the annual net interest rate for a nominal interest rate."),
635 NC_("SC_OPCODE_EFFECT", "NOM"),
636 NC_("SC_OPCODE_EFFECT", "Nominal interest"),
637 NC_("SC_OPCODE_EFFECT", "P"),
638 NC_("SC_OPCODE_EFFECT", "Periods. The number of interest payments per year.")
641 // -=*# Resource for function NOMINAL #*=-
642 const char* SC_OPCODE_NOMINAL_ARY[] =
644 NC_("SC_OPCODE_NOMINAL", "Calculates the yearly nominal interest rate as an effective interest rate."),
645 NC_("SC_OPCODE_NOMINAL", "Effective rate"),
646 NC_("SC_OPCODE_NOMINAL", "The effective interest rate"),
647 NC_("SC_OPCODE_NOMINAL", "NPER"),
648 NC_("SC_OPCODE_NOMINAL", "Periods. The number of interest payment per year.")
651 // -=*# Resource for function NPV #*=-
652 const char* SC_OPCODE_NPV_ARY[] =
654 NC_("SC_OPCODE_NPV", "Net present value. Calculates the net present value of an investment based on a series of periodic payments and a discount rate."),
655 NC_("SC_OPCODE_NPV", "Rate"),
656 NC_("SC_OPCODE_NPV", "The rate of discount for one period."),
657 NC_("SC_OPCODE_NPV", "Value "),
658 NC_("SC_OPCODE_NPV", "Value 1, value 2,... are arguments representing payments and income.")
661 // -=*# Resource for function IRR #*=-
662 const char* SC_OPCODE_IRR_ARY[] =
664 NC_("SC_OPCODE_IRR", "Returns the actuarial rate of interest of an investment excluding costs or profits."),
665 NC_("SC_OPCODE_IRR", "Values"),
666 NC_("SC_OPCODE_IRR", "An array or reference to cells whose contents correspond to the payments."),
667 NC_("SC_OPCODE_IRR", "Guess"),
668 NC_("SC_OPCODE_IRR", "Guess. An estimated value of the rate of return to be used for the iteration calculation.")
671 // -=*# Resource for function MIRR #*=-
672 const char* SC_OPCODE_MIRR_ARY[] =
674 NC_("SC_OPCODE_MIRR", "Returns the modified internal rate of return for a series of investments."),
675 NC_("SC_OPCODE_MIRR", "Values"),
676 NC_("SC_OPCODE_MIRR", "An array or reference to cells whose contents correspond to the payments."),
677 NC_("SC_OPCODE_MIRR", "Investment"),
678 NC_("SC_OPCODE_MIRR", "Interest rate for investments (the negative values in the array)."),
679 NC_("SC_OPCODE_MIRR", "Reinvest rate"),
680 NC_("SC_OPCODE_MIRR", "Interest rate for reinvestments (the positive values in the array).")
683 // -=*# Resource for function ISPMT #*=-
684 const char* SC_OPCODE_ISPMT_ARY[] =
686 NC_("SC_OPCODE_ISPMT", "Returns the amount of interest for constant amortization rates."),
687 NC_("SC_OPCODE_ISPMT", "Rate"),
688 NC_("SC_OPCODE_ISPMT", "Interest rate for a single amortization rate."),
689 NC_("SC_OPCODE_ISPMT", "Period"),
690 NC_("SC_OPCODE_ISPMT", "Number of amortization periods for the calculation of the interest."),
691 NC_("SC_OPCODE_ISPMT", "Total periods"),
692 NC_("SC_OPCODE_ISPMT", "Sum total of amortization periods."),
693 NC_("SC_OPCODE_ISPMT", "Investment"),
694 NC_("SC_OPCODE_ISPMT", "Amount of the investment.")
697 // -=*# Resource for function PDURATION #*=-
698 const char* SC_OPCODE_PDURATION_ARY[] =
700 NC_("SC_OPCODE_PDURATION", "Duration. Calculates the number of periods required by an investment to attain the desired value."),
701 NC_("SC_OPCODE_PDURATION", "Rate"),
702 NC_("SC_OPCODE_PDURATION", "The constant rate of interest."),
703 NC_("SC_OPCODE_PDURATION", "PV"),
704 NC_("SC_OPCODE_PDURATION", "The present value. The current value of the investment."),
705 NC_("SC_OPCODE_PDURATION", "FV"),
706 NC_("SC_OPCODE_PDURATION", "The future value of the investment.")
709 // -=*# Resource for function RRI #*=-
710 const char* SC_OPCODE_RRI_ARY[] =
712 NC_("SC_OPCODE_RRI", "Interest. Calculates the interest rate which represents the rate of return from an investment."),
713 NC_("SC_OPCODE_RRI", "Periods"),
714 NC_("SC_OPCODE_RRI", "The number of periods used in the calculation."),
715 NC_("SC_OPCODE_RRI", "PV"),
716 NC_("SC_OPCODE_RRI", "Present value. The current value of the investment."),
717 NC_("SC_OPCODE_RRI", "FV"),
718 NC_("SC_OPCODE_RRI", "The future value of the investment.")
721 // -=*# Resource for function ISREF #*=-
722 const char* SC_OPCODE_IS_REF_ARY[] =
724 NC_("SC_OPCODE_IS_REF", "Returns TRUE if value is a reference."),
725 NC_("SC_OPCODE_IS_REF", "Value"),
726 NC_("SC_OPCODE_IS_REF", "The value to be tested.")
729 // -=*# Resource for function ISERR #*=-
730 const char* SC_OPCODE_IS_ERR_ARY[] =
732 NC_("SC_OPCODE_IS_ERR", "Returns TRUE if the value is an error value not equal to #N/A."),
733 NC_("SC_OPCODE_IS_ERR", "Value"),
734 NC_("SC_OPCODE_IS_ERR", "The value to be tested.")
737 // -=*# Resource for function ISERROR #*=-
738 const char* SC_OPCODE_IS_ERROR_ARY[] =
740 NC_("SC_OPCODE_IS_ERROR", "Returns TRUE if the value is an error value."),
741 NC_("SC_OPCODE_IS_ERROR", "Value"),
742 NC_("SC_OPCODE_IS_ERROR", "The value to be tested.")
745 // -=*# Resource for function ISBLANK #*=-
746 const char* SC_OPCODE_IS_EMPTY_ARY[] =
748 NC_("SC_OPCODE_IS_EMPTY", "Returns TRUE if value refers to an empty cell."),
749 NC_("SC_OPCODE_IS_EMPTY", "Value"),
750 NC_("SC_OPCODE_IS_EMPTY", "The value to be tested.")
753 // -=*# Resource for function ISLOGICAL #*=-
754 const char* SC_OPCODE_IS_LOGICAL_ARY[] =
756 NC_("SC_OPCODE_IS_LOGICAL", "Returns TRUE if the value carries a logical number format."),
757 NC_("SC_OPCODE_IS_LOGICAL", "Value"),
758 NC_("SC_OPCODE_IS_LOGICAL", "The value to be tested.")
761 // -=*# Resource for function ISNA #*=-
762 const char* SC_OPCODE_IS_NV_ARY[] =
764 NC_("SC_OPCODE_IS_NV", "Returns TRUE if value equals #N/A."),
765 NC_("SC_OPCODE_IS_NV", "Value"),
766 NC_("SC_OPCODE_IS_NV", "The value to be tested.")
769 // -=*# Resource for function ISNONTEXT #*=-
770 const char* SC_OPCODE_IS_NON_STRING_ARY[] =
772 NC_("SC_OPCODE_IS_NON_STRING", "Returns TRUE if the value is not text."),
773 NC_("SC_OPCODE_IS_NON_STRING", "Value"),
774 NC_("SC_OPCODE_IS_NON_STRING", "The value to be tested.")
777 // -=*# Resource for function ISTEXT #*=-
778 const char* SC_OPCODE_IS_STRING_ARY[] =
780 NC_("SC_OPCODE_IS_STRING", "Returns TRUE if value is text."),
781 NC_("SC_OPCODE_IS_STRING", "Value"),
782 NC_("SC_OPCODE_IS_STRING", "The value to be tested.")
785 // -=*# Resource for function ISNUMBER #*=-
786 const char* SC_OPCODE_IS_VALUE_ARY[] =
788 NC_("SC_OPCODE_IS_VALUE", "Returns TRUE if value is a number."),
789 NC_("SC_OPCODE_IS_VALUE", "Value"),
790 NC_("SC_OPCODE_IS_VALUE", "The value to be tested.")
793 // -=*# Resource for function ISFORMULA #*=-
794 const char* SC_OPCODE_IS_FORMULA_ARY[] =
796 NC_("SC_OPCODE_IS_FORMULA", "Returns TRUE if the cell is a formula cell."),
797 NC_("SC_OPCODE_IS_FORMULA", "Reference"),
798 NC_("SC_OPCODE_IS_FORMULA", "The cell to be tested.")
801 // -=*# Resource for function FORMULA #*=-
802 const char* SC_OPCODE_FORMULA_ARY[] =
804 NC_("SC_OPCODE_FORMULA", "Returns the formula of a formula cell."),
805 NC_("SC_OPCODE_FORMULA", "Reference"),
806 NC_("SC_OPCODE_FORMULA", "The formula cell.")
809 // -=*# Resource for function N #*=-
810 const char* SC_OPCODE_N_ARY[] =
812 NC_("SC_OPCODE_N", "Converts a value to a number."),
813 NC_("SC_OPCODE_N", "Value"),
814 NC_("SC_OPCODE_N", "The value to be interpreted as a number.")
817 // -=*# Resource for function NA #*=-
818 const char* SC_OPCODE_NO_VALUE_ARY[] =
820 NC_("SC_OPCODE_NO_VALUE", "Not available. Returns the error value #N/A.")
823 // -=*# Resource for function TYPE #*=-
824 const char* SC_OPCODE_TYPE_ARY[] =
826 NC_("SC_OPCODE_TYPE", "Returns the data type of a value (1 = number, 2 = text, 4 = Boolean value, 8 = formula, 16 = error value, 64 = array)."),
827 NC_("SC_OPCODE_TYPE", "Value"),
828 NC_("SC_OPCODE_TYPE", "The value for which the data type is to be determined.")
831 // -=*# Resource for function CELL #*=-
832 const char* SC_OPCODE_CELL_ARY[] =
834 NC_("SC_OPCODE_CELL", "Determines information about address, formatting or contents of a cell."),
835 NC_("SC_OPCODE_CELL", "Info type"),
836 NC_("SC_OPCODE_CELL", "String that specifies the type of information."),
837 NC_("SC_OPCODE_CELL", "Reference"),
838 NC_("SC_OPCODE_CELL", "The position of the cell you want to examine.")
841 // -=*# Resource for function CURRENT #*=-
842 const char* SC_OPCODE_CURRENT_ARY[] =
844 NC_("SC_OPCODE_CURRENT", "Calculates the current value of the formula at the present location.")
847 // -=*# Resource for function FALSE #*=-
848 const char* SC_OPCODE_FALSE_ARY[] =
850 NC_("SC_OPCODE_FALSE", "Defines the logical value as FALSE.")
853 // -=*# Resource for function NOT #*=-
854 const char* SC_OPCODE_NOT_ARY[] =
856 NC_("SC_OPCODE_NOT", "Reverses the value of the argument."),
857 NC_("SC_OPCODE_NOT", "Logical value"),
858 NC_("SC_OPCODE_NOT", "An expression that can be either TRUE or FALSE.")
861 // -=*# Resource for function TRUE #*=-
862 const char* SC_OPCODE_TRUE_ARY[] =
864 NC_("SC_OPCODE_TRUE", "Returns the logical value TRUE.")
867 // -=*# Resource for function IF #*=-
868 const char* SC_OPCODE_IF_ARY[] =
870 NC_("SC_OPCODE_IF", "Specifies a logical test to be performed."),
871 NC_("SC_OPCODE_IF", "Test"),
872 NC_("SC_OPCODE_IF", "Any value or expression which can be either TRUE or FALSE."),
873 NC_("SC_OPCODE_IF", "Then value"),
874 NC_("SC_OPCODE_IF", "The result of the function if the logical test returns a TRUE."),
875 NC_("SC_OPCODE_IF", "Otherwise value"),
876 NC_("SC_OPCODE_IF", "The result of the function if the logical test returns FALSE.")
879 // -=*# Resource for function IFERROR #*=-
880 const char* SC_OPCODE_IF_ERROR_ARY[] =
882 NC_("SC_OPCODE_IF_ERROR", "Returns value if not an error value, else alternative."),
883 NC_("SC_OPCODE_IF_ERROR", "Value"),
884 NC_("SC_OPCODE_IF_ERROR", "The value to be calculated."),
885 NC_("SC_OPCODE_IF_ERROR", "Alternative value"),
886 NC_("SC_OPCODE_IF_ERROR", "The alternative to be returned, should value be an error value.")
889 // -=*# Resource for function IFNA #*=-
890 const char* SC_OPCODE_IF_NA_ARY[] =
892 NC_("SC_OPCODE_IF_NA", "Returns value if not a #N/A error, else alternative."),
893 NC_("SC_OPCODE_IF_NA", "Value"),
894 NC_("SC_OPCODE_IF_NA", "The value to be calculated."),
895 NC_("SC_OPCODE_IF_NA", "Alternative value"),
896 NC_("SC_OPCODE_IF_NA", "The alternative to be returned, should value be a #N/A error.")
899 // -=*# Resource for function OR #*=-
900 const char* SC_OPCODE_OR_ARY[] =
902 NC_("SC_OPCODE_OR", "Returns TRUE if an argument is TRUE."),
903 NC_("SC_OPCODE_OR", "Logical value "),
904 NC_("SC_OPCODE_OR", "Logical value 1, logical value 2,... are conditions to be tested and which return either TRUE or FALSE.")
907 // -=*# Resource for function XOR #*=-
908 const char* SC_OPCODE_XOR_ARY[] =
910 NC_("SC_OPCODE_XOR", "Returns TRUE if an odd number of arguments evaluates to TRUE."),
911 NC_("SC_OPCODE_XOR", "Logical value "),
912 NC_("SC_OPCODE_XOR", "Logical value 1, logical value 2, ... are conditions to be tested and which return either TRUE or FALSE.")
915 // -=*# Resource for function AND #*=-
916 const char* SC_OPCODE_AND_ARY[] =
918 NC_("SC_OPCODE_AND", "Returns TRUE if all arguments are TRUE."),
919 NC_("SC_OPCODE_AND", "Logical value "),
920 NC_("SC_OPCODE_AND", "Logical value 1, logical value 2;...are conditions to be tested and each returns either TRUE or FALSE.")
923 // -=*# Resource for function ABS #*=-
924 const char* SC_OPCODE_ABS_ARY[] =
926 NC_("SC_OPCODE_ABS", "Absolute value of a number."),
927 NC_("SC_OPCODE_ABS", "Number"),
928 NC_("SC_OPCODE_ABS", "The number whose absolute value is to be returned.")
931 // -=*# Resource for function POWER #*=-
932 const char* SC_OPCODE_POWER_ARY[] =
934 NC_("SC_OPCODE_POWER", "Returns a^b, base a raised to the power of exponent b."),
935 NC_("SC_OPCODE_POWER", "Base"),
936 NC_("SC_OPCODE_POWER", "The base a of the power a^b."),
937 NC_("SC_OPCODE_POWER", "Exponent"),
938 NC_("SC_OPCODE_POWER", "The exponent b of the power a^b.")
941 // -=*# Resource for function COUNTBLANK #*=-
942 const char* SC_OPCODE_COUNT_EMPTY_CELLS_ARY[] =
944 NC_("SC_OPCODE_COUNT_EMPTY_CELLS", "Counts the blank cells in a specified range."),
945 NC_("SC_OPCODE_COUNT_EMPTY_CELLS", "Range"),
946 NC_("SC_OPCODE_COUNT_EMPTY_CELLS", "The range in which empty cells are to be counted.")
949 // -=*# Resource for function PI #*=-
950 const char* SC_OPCODE_PI_ARY[] =
952 NC_("SC_OPCODE_PI", "Returns the value of the number Pi.")
955 // -=*# Resource for function SUM #*=-
956 const char* SC_OPCODE_SUM_ARY[] =
958 NC_("SC_OPCODE_SUM", "Returns the sum of all arguments."),
959 NC_("SC_OPCODE_SUM", "Number "),
960 NC_("SC_OPCODE_SUM", "Number 1, number 2, ... are arguments whose total is to be calculated.")
963 // -=*# Resource for function SUMSQ #*=-
964 const char* SC_OPCODE_SUM_SQ_ARY[] =
966 NC_("SC_OPCODE_SUM_SQ", "Returns the sum of the squares of the arguments."),
967 NC_("SC_OPCODE_SUM_SQ", "Number "),
968 NC_("SC_OPCODE_SUM_SQ", "Number 1, number 2,... are arguments for which the sum of the squares is to be calculated.")
971 // -=*# Resource for function PRODUCT #*=-
972 const char* SC_OPCODE_PRODUCT_ARY[] =
974 NC_("SC_OPCODE_PRODUCT", "Multiplies the arguments."),
975 NC_("SC_OPCODE_PRODUCT", "Number "),
976 NC_("SC_OPCODE_PRODUCT", "Number 1, number 2, ... are arguments to be multiplied and a result returned.")
979 // -=*# Resource for function SUMIF #*=-
980 const char* SC_OPCODE_SUM_IF_ARY[] =
982 NC_("SC_OPCODE_SUM_IF", "Totals the arguments that meet the condition."),
983 NC_("SC_OPCODE_SUM_IF", "Range"),
984 NC_("SC_OPCODE_SUM_IF", "The range to be evaluated by the criteria given."),
985 NC_("SC_OPCODE_SUM_IF", "Criteria"),
986 NC_("SC_OPCODE_SUM_IF", "The criteria to be applied to the range."),
987 NC_("SC_OPCODE_SUM_IF", "Sum range"),
988 NC_("SC_OPCODE_SUM_IF", "The range from which the values are to be totalled.")
991 // -=*# Resource for function AVERAGEIF #*=-
992 const char* SC_OPCODE_AVERAGE_IF_ARY[] =
994 NC_("SC_OPCODE_AVERAGE_IF", "Averages the arguments that meet the conditions."),
995 NC_("SC_OPCODE_AVERAGE_IF", "Range"),
996 NC_("SC_OPCODE_AVERAGE_IF", "The range to be evaluated by the criteria given."),
997 NC_("SC_OPCODE_AVERAGE_IF", "Criteria"),
998 NC_("SC_OPCODE_AVERAGE_IF", "The criteria to be applied to the range."),
999 NC_("SC_OPCODE_AVERAGE_IF", "Average range"),
1000 NC_("SC_OPCODE_AVERAGE_IF", "The range from which the values are to be averaged.")
1003 const char* SC_OPCODE_SUM_IFS_ARY[] =
1005 NC_("SC_OPCODE_SUM_IFS", "Totals the values of cells in a range that meet multiple criteria in multiple ranges."),
1006 NC_("SC_OPCODE_SUM_IFS", "Sum range"),
1007 NC_("SC_OPCODE_SUM_IFS", "The range from which the values are to be totalled."),
1008 NC_("SC_OPCODE_SUM_IFS", "Range "),
1009 NC_("SC_OPCODE_SUM_IFS", "Range 1, range 2,... are the ranges to be evaluated by the criteria given."),
1010 NC_("SC_OPCODE_SUM_IFS", "Criteria "),
1011 NC_("SC_OPCODE_SUM_IFS", "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given.")
1014 // -=*# Resource for function AVERAGEIFS #*=-
1015 const char* SC_OPCODE_AVERAGE_IFS_ARY[] =
1017 NC_("SC_OPCODE_AVERAGE_IFS", "Averages the value of the cells that meet multiple criteria in multiple ranges."),
1018 NC_("SC_OPCODE_AVERAGE_IFS", "Average range"),
1019 NC_("SC_OPCODE_AVERAGE_IFS", "The range from which the values are to be averaged."),
1020 NC_("SC_OPCODE_AVERAGE_IFS", "Range "),
1021 NC_("SC_OPCODE_AVERAGE_IFS", "Range 1, range 2,... are the ranges to be evaluated by the criteria given."),
1022 NC_("SC_OPCODE_AVERAGE_IFS", "Criteria "),
1023 NC_("SC_OPCODE_AVERAGE_IFS", "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given.")
1026 // -=*# Resource for function COUNTIFS #*=-
1027 const char* SC_OPCODE_COUNT_IFS_ARY[] =
1029 NC_("SC_OPCODE_COUNT_IFS", "Counts the cells that meet multiple criteria in multiple ranges."),
1030 NC_("SC_OPCODE_COUNT_IFS", "Range "),
1031 NC_("SC_OPCODE_COUNT_IFS", "Range 1, range 2,... are the ranges to be evaluated by the criteria given."),
1032 NC_("SC_OPCODE_COUNT_IFS", "Criteria "),
1033 NC_("SC_OPCODE_COUNT_IFS", "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given.")
1036 // -=*# Resource for function COUNTIF #*=-
1037 const char* SC_OPCODE_COUNT_IF_ARY[] =
1039 NC_("SC_OPCODE_COUNT_IF", "Counts the arguments which meet the set conditions."),
1040 NC_("SC_OPCODE_COUNT_IF", "Range"),
1041 NC_("SC_OPCODE_COUNT_IF", "The range of cells to be evaluated by the criteria given."),
1042 NC_("SC_OPCODE_COUNT_IF", "Criteria"),
1043 NC_("SC_OPCODE_COUNT_IF", "The criteria to be applied to the range.")
1046 // -=*# Resource for function SQRT #*=-
1047 const char* SC_OPCODE_SQRT_ARY[] =
1049 NC_("SC_OPCODE_SQRT", "Returns the square root of a number."),
1050 NC_("SC_OPCODE_SQRT", "Number"),
1051 NC_("SC_OPCODE_SQRT", "A positive value for which the square root is to be calculated.")
1054 // -=*# Resource for function RAND #*=-
1055 const char* SC_OPCODE_RANDOM_ARY[] =
1057 NC_("SC_OPCODE_RANDOM", "Returns a random number between 0 and 1.")
1060 // -=*# Resource for function ISEVEN #*=-
1061 const char* SC_OPCODE_IS_EVEN_ARY[] =
1063 NC_("SC_OPCODE_IS_EVEN", "Returns TRUE if value is an even integer."),
1064 NC_("SC_OPCODE_IS_EVEN", "Value"),
1065 NC_("SC_OPCODE_IS_EVEN", "The value to be tested.")
1068 // -=*# Resource for function ISODD #*=-
1069 const char* SC_OPCODE_IS_ODD_ARY[] =
1071 NC_("SC_OPCODE_IS_ODD", "Returns TRUE if value is an odd integer."),
1072 NC_("SC_OPCODE_IS_ODD", "Value"),
1073 NC_("SC_OPCODE_IS_ODD", "The value to be tested.")
1076 // -=*# Resource for function COMBIN #*=-
1077 const char* SC_OPCODE_COMBIN_ARY[] =
1079 NC_("SC_OPCODE_COMBIN", "Calculates the number of combinations for elements without repetition."),
1080 NC_("SC_OPCODE_COMBIN", "Number 1"),
1081 NC_("SC_OPCODE_COMBIN", "The total number of elements."),
1082 NC_("SC_OPCODE_COMBIN", "Number 2"),
1083 NC_("SC_OPCODE_COMBIN", "The number of elements selected.")
1086 // -=*# Resource for function COMBINA #*=-
1087 const char* SC_OPCODE_COMBIN_A_ARY[] =
1089 NC_("SC_OPCODE_COMBIN_A", "Calculates the number of combinations of elements including repetition."),
1090 NC_("SC_OPCODE_COMBIN_A", "Number 1"),
1091 NC_("SC_OPCODE_COMBIN_A", "The total number of elements."),
1092 NC_("SC_OPCODE_COMBIN_A", "Number 2"),
1093 NC_("SC_OPCODE_COMBIN_A", "The number of elements selected.")
1096 // -=*# Resource for function ARCCOS #*=-
1097 const char* SC_OPCODE_ARC_COS_ARY[] =
1099 NC_("SC_OPCODE_ARC_COS", "Returns the arccosine of a number."),
1100 NC_("SC_OPCODE_ARC_COS", "Number"),
1101 NC_("SC_OPCODE_ARC_COS", "A value between -1 and 1 for which the arccosine is to be returned.")
1104 // -=*# Resource for function ARCSIN #*=-
1105 const char* SC_OPCODE_ARC_SIN_ARY[] =
1107 NC_("SC_OPCODE_ARC_SIN", "Returns the arcsine of a number."),
1108 NC_("SC_OPCODE_ARC_SIN", "Number"),
1109 NC_("SC_OPCODE_ARC_SIN", "A value between -1 and 1 for which the arcsine is to be returned.")
1112 // -=*# Resource for function ARCCOSHYP #*=-
1113 const char* SC_OPCODE_ARC_COS_HYP_ARY[] =
1115 NC_("SC_OPCODE_ARC_COS_HYP", "Returns the inverse hyperbolic cosine of a number."),
1116 NC_("SC_OPCODE_ARC_COS_HYP", "Number"),
1117 NC_("SC_OPCODE_ARC_COS_HYP", "A value greater than or equal to 1 for which the inverse hyperbolic cosine is to be returned.")
1120 // -=*# Resource for function ARCSINHYP #*=-
1121 const char* SC_OPCODE_ARC_SIN_HYP_ARY[] =
1123 NC_("SC_OPCODE_ARC_SIN_HYP", "Returns the inverse hyperbolic sine of a number."),
1124 NC_("SC_OPCODE_ARC_SIN_HYP", "Number"),
1125 NC_("SC_OPCODE_ARC_SIN_HYP", "The value for which the inverse hyperbolic sine is to be returned.")
1128 // -=*# Resource for function ARCCOT #*=-
1129 const char* SC_OPCODE_ARC_COT_ARY[] =
1131 NC_("SC_OPCODE_ARC_COT", "Returns the inverse cotangent of a number."),
1132 NC_("SC_OPCODE_ARC_COT", "Number"),
1133 NC_("SC_OPCODE_ARC_COT", "The value for which the inverse cotangent is to be returned.")
1136 // -=*# Resource for function ARCTAN #*=-
1137 const char* SC_OPCODE_ARC_TAN_ARY[] =
1139 NC_("SC_OPCODE_ARC_TAN", "Returns the arctangent of a number."),
1140 NC_("SC_OPCODE_ARC_TAN", "Number"),
1141 NC_("SC_OPCODE_ARC_TAN", "The value for which the arctangent is to be returned.")
1144 // -=*# Resource for function ARCCOTHYP #*=-
1145 const char* SC_OPCODE_ARC_COT_HYP_ARY[] =
1147 NC_("SC_OPCODE_ARC_COT_HYP", "Returns the inverse hyperbolic cotangent of a number."),
1148 NC_("SC_OPCODE_ARC_COT_HYP", "Number"),
1149 NC_("SC_OPCODE_ARC_COT_HYP", "A value smaller than -1 or greater than 1 for which the inverse hyperbolic cotangent is to be returned.")
1152 // -=*# Resource for function ARCTANHYP #*=-
1153 const char* SC_OPCODE_ARC_TAN_HYP_ARY[] =
1155 NC_("SC_OPCODE_ARC_TAN_HYP", "Returns the inverse hyperbolic tangent of a number."),
1156 NC_("SC_OPCODE_ARC_TAN_HYP", "Number"),
1157 NC_("SC_OPCODE_ARC_TAN_HYP", "A value between -1 and 1 for which the inverse hyperbolic tangent is to be returned.")
1160 // -=*# Resource for function COS #*=-
1161 const char* SC_OPCODE_COS_ARY[] =
1163 NC_("SC_OPCODE_COS", "Returns the cosine of a number."),
1164 NC_("SC_OPCODE_COS", "Number"),
1165 NC_("SC_OPCODE_COS", "The angle in the radians for which the cosine is to be returned.")
1168 // -=*# Resource for function SIN #*=-
1169 const char* SC_OPCODE_SIN_ARY[] =
1171 NC_("SC_OPCODE_SIN", "Returns the sine of a number."),
1172 NC_("SC_OPCODE_SIN", "Number"),
1173 NC_("SC_OPCODE_SIN", "The angle in radians for which the sine is to be calculated.")
1176 // -=*# Resource for function COT #*=-
1177 const char* SC_OPCODE_COT_ARY[] =
1179 NC_("SC_OPCODE_COT", "Returns the cotangent of a number."),
1180 NC_("SC_OPCODE_COT", "Number"),
1181 NC_("SC_OPCODE_COT", "The angle in radians whose cotangent value is to be returned.")
1184 // -=*# Resource for function TAN #*=-
1185 const char* SC_OPCODE_TAN_ARY[] =
1187 NC_("SC_OPCODE_TAN", "Returns the tangent of a number."),
1188 NC_("SC_OPCODE_TAN", "Number"),
1189 NC_("SC_OPCODE_TAN", "The angle in radians for which the tangent is to be calculated.")
1192 // -=*# Resource for function COSHYP #*=-
1193 const char* SC_OPCODE_COS_HYP_ARY[] =
1195 NC_("SC_OPCODE_COS_HYP", "Returns the hyperbolic cosine of a number."),
1196 NC_("SC_OPCODE_COS_HYP", "Number"),
1197 NC_("SC_OPCODE_COS_HYP", "The value for which the hyperbolic cosine is to be returned.")
1200 // -=*# Resource for function SINHYP #*=-
1201 const char* SC_OPCODE_SIN_HYP_ARY[] =
1203 NC_("SC_OPCODE_SIN_HYP", "Returns the hyperbolic sine of a number."),
1204 NC_("SC_OPCODE_SIN_HYP", "Number"),
1205 NC_("SC_OPCODE_SIN_HYP", "The value for which the hyperbolic sine is to be calculated.")
1208 // -=*# Resource for function COTHYP #*=-
1209 const char* SC_OPCODE_COT_HYP_ARY[] =
1211 NC_("SC_OPCODE_COT_HYP", "Returns the hyperbolic cotangent of a number."),
1212 NC_("SC_OPCODE_COT_HYP", "Number"),
1213 NC_("SC_OPCODE_COT_HYP", "A value not equal to 0 for which the hyperbolic cotangent is to be returned.")
1216 // -=*# Resource for function TANHYP #*=-
1217 const char* SC_OPCODE_TAN_HYP_ARY[] =
1219 NC_("SC_OPCODE_TAN_HYP", "Returns the hyperbolic tangent of a number."),
1220 NC_("SC_OPCODE_TAN_HYP", "Number"),
1221 NC_("SC_OPCODE_TAN_HYP", "The value for which the hyperbolic tangent is to be calculated.")
1224 // -=*# Resource for function ARCTAN2 #*=-
1225 const char* SC_OPCODE_ARC_TAN_2_ARY[] =
1227 NC_("SC_OPCODE_ARC_TAN_2", "Returns the arctangent for the specified coordinates."),
1228 NC_("SC_OPCODE_ARC_TAN_2", "Number X"),
1229 NC_("SC_OPCODE_ARC_TAN_2", "The value for the X coordinate."),
1230 NC_("SC_OPCODE_ARC_TAN_2", "Number Y"),
1231 NC_("SC_OPCODE_ARC_TAN_2", "The value for the Y coordinate.")
1234 // -=*# Resource for function CSC #*=-
1235 const char* SC_OPCODE_COSECANT_ARY[] =
1237 NC_("SC_OPCODE_COSECANT", "Return the cosecant of an angle. CSC(x)=1/SIN(x)"),
1238 NC_("SC_OPCODE_COSECANT", "Angle"),
1239 NC_("SC_OPCODE_COSECANT", "The angle in radians for which the cosecant is to be calculated.")
1242 // -=*# Resource for function SEC #*=-
1243 const char* SC_OPCODE_SECANT_ARY[] =
1245 NC_("SC_OPCODE_SECANT", "Return the secant of an angle. SEC(x)=1/COS(x)"),
1246 NC_("SC_OPCODE_SECANT", "Angle"),
1247 NC_("SC_OPCODE_SECANT", "The angle in radians for which the secant is to be calculated.")
1250 // -=*# Resource for function CSCH #*=-
1251 const char* SC_OPCODE_COSECANT_HYP_ARY[] =
1253 NC_("SC_OPCODE_COSECANT_HYP", "Return the hyperbolic cosecant of a hyperbolic angle. CSCH(x)=1/SINH(x)"),
1254 NC_("SC_OPCODE_COSECANT_HYP", "Angle"),
1255 NC_("SC_OPCODE_COSECANT_HYP", "The hyperbolic angle in radians for which the hyperbolic cosecant is to be calculated.")
1258 // -=*# Resource for function SECH #*=-
1259 const char* SC_OPCODE_SECANT_HYP_ARY[] =
1261 NC_("SC_OPCODE_SECANT_HYP", "Return the hyperbolic secant of a hyperbolic angle. SECH(x)=1/COSH(x)"),
1262 NC_("SC_OPCODE_SECANT_HYP", "Angle"),
1263 NC_("SC_OPCODE_SECANT_HYP", "The hyperbolic angle in radians for which the hyperbolic secant is to be calculated.")
1266 // -=*# Resource for function DEG #*=-
1267 const char* SC_OPCODE_DEG_ARY[] =
1269 NC_("SC_OPCODE_DEG", "Converts a radian to degrees"),
1270 NC_("SC_OPCODE_DEG", "Number"),
1271 NC_("SC_OPCODE_DEG", "The angle in a radian")
1274 // -=*# Resource for function RAD #*=-
1275 const char* SC_OPCODE_RAD_ARY[] =
1277 NC_("SC_OPCODE_RAD", "Converts degrees to radians"),
1278 NC_("SC_OPCODE_RAD", "Number"),
1279 NC_("SC_OPCODE_RAD", "The angle in degrees.")
1282 // -=*# Resource for function EXP #*=-
1283 const char* SC_OPCODE_EXP_ARY[] =
1285 NC_("SC_OPCODE_EXP", "Calculates the exponent for basis e."),
1286 NC_("SC_OPCODE_EXP", "Number"),
1287 NC_("SC_OPCODE_EXP", "The exponent applied to base e.")
1290 // -=*# Resource for function LOG #*=-
1291 const char* SC_OPCODE_LOG_ARY[] =
1293 NC_("SC_OPCODE_LOG", "Calculates the logarithm to any specified base."),
1294 NC_("SC_OPCODE_LOG", "Number"),
1295 NC_("SC_OPCODE_LOG", "A value greater than 0 for which the logarithm is to be calculated."),
1296 NC_("SC_OPCODE_LOG", "Base"),
1297 NC_("SC_OPCODE_LOG", "The base of the logarithm. If omitted, the base is regarded as 10.")
1300 // -=*# Resource for function LN #*=-
1301 const char* SC_OPCODE_LN_ARY[] =
1303 NC_("SC_OPCODE_LN", "Calculates the natural logarithm of a number."),
1304 NC_("SC_OPCODE_LN", "Number"),
1305 NC_("SC_OPCODE_LN", "A value greater than 0 for which the natural logarithm is to be calculated.")
1308 // -=*# Resource for function LOG10 #*=-
1309 const char* SC_OPCODE_LOG10_ARY[] =
1311 NC_("SC_OPCODE_LOG10", "Calculates the base-10 logarithm of a number."),
1312 NC_("SC_OPCODE_LOG10", "Number"),
1313 NC_("SC_OPCODE_LOG10", "A value greater than 0 for which the logarithm is to be calculated.")
1316 // -=*# Resource for function FACT #*=-
1317 const char* SC_OPCODE_FACT_ARY[] =
1319 NC_("SC_OPCODE_FACT", "Calculates the factorial of a number."),
1320 NC_("SC_OPCODE_FACT", "Number"),
1321 NC_("SC_OPCODE_FACT", "The number for which the factorial is to be calculated.")
1324 // -=*# Resource for function MOD #*=-
1325 const char* SC_OPCODE_MOD_ARY[] =
1327 NC_("SC_OPCODE_MOD", "Calculates the remainder of a division."),
1328 NC_("SC_OPCODE_MOD", "Dividend"),
1329 NC_("SC_OPCODE_MOD", "The number to be divided."),
1330 NC_("SC_OPCODE_MOD", "Divisor"),
1331 NC_("SC_OPCODE_MOD", "The number by which the dividend is divided.")
1334 // -=*# Resource for function SIGN #*=-
1335 const char* SC_OPCODE_PLUS_MINUS_ARY[] =
1337 NC_("SC_OPCODE_PLUS_MINUS", "Returns the algebraic sign of a number."),
1338 NC_("SC_OPCODE_PLUS_MINUS", "Number"),
1339 NC_("SC_OPCODE_PLUS_MINUS", "The number for which the algebraic sign is to be determined.")
1342 // -=*# Resource for function SUBTOTAL #*=-
1343 const char* SC_OPCODE_SUB_TOTAL_ARY[] =
1345 NC_("SC_OPCODE_SUB_TOTAL", "Calculates subtotals in a spreadsheet."),
1346 NC_("SC_OPCODE_SUB_TOTAL", "Function"),
1347 NC_("SC_OPCODE_SUB_TOTAL", "Function index. Is an index of the possible functions Total, Max, ..."),
1348 NC_("SC_OPCODE_SUB_TOTAL", "Range"),
1349 NC_("SC_OPCODE_SUB_TOTAL", "The cells of the range which are to be taken into account.")
1352 // -=*# Resource for function AGGREGATE #*=-
1353 const char* SC_OPCODE_AGGREGATE_ARY[] =
1355 NC_("SC_OPCODE_AGGREGATE", "Calculates an aggregate in a spreadsheet."),
1356 NC_("SC_OPCODE_AGGREGATE", "Function"),
1357 NC_("SC_OPCODE_AGGREGATE", "Function index. Is an index of the possible functions Total, Max, ..."),
1358 NC_("SC_OPCODE_AGGREGATE", "Options"),
1359 NC_("SC_OPCODE_AGGREGATE", "Option index. Is an index of the possible ignore options."),
1360 NC_("SC_OPCODE_AGGREGATE", "Reference 1 or array"),
1361 NC_("SC_OPCODE_AGGREGATE", "The cell(s) of the range which are to be taken into account."),
1362 NC_("SC_OPCODE_AGGREGATE", "Reference 2..n or k "),
1363 NC_("SC_OPCODE_AGGREGATE", "The cells of the range which are to be taken into account or mandatory 2nd argument for certain functions.")
1366 // -=*# Resource for function INT #*=-
1367 const char* SC_OPCODE_INT_ARY[] =
1369 NC_("SC_OPCODE_INT", "Rounds a number down to the nearest integer."),
1370 NC_("SC_OPCODE_INT", "Number"),
1371 NC_("SC_OPCODE_INT", "The number to be rounded down.")
1374 // -=*# Resource for function TRUNC #*=-
1375 const char* SC_OPCODE_TRUNC_ARY[] =
1377 NC_("SC_OPCODE_TRUNC", "Truncates the decimal places of a number."),
1378 NC_("SC_OPCODE_TRUNC", "Number"),
1379 NC_("SC_OPCODE_TRUNC", "The number to be truncated."),
1380 NC_("SC_OPCODE_TRUNC", "Count"),
1381 NC_("SC_OPCODE_TRUNC", "The number of places after the decimal point that are not to be truncated.")
1384 // -=*# Resource for function ROUND #*=-
1385 const char* SC_OPCODE_ROUND_ARY[] =
1387 NC_("SC_OPCODE_ROUND", "Rounds a number to a predefined accuracy."),
1388 NC_("SC_OPCODE_ROUND", "Number"),
1389 NC_("SC_OPCODE_ROUND", "The number to be rounded."),
1390 NC_("SC_OPCODE_ROUND", "Count"),
1391 NC_("SC_OPCODE_ROUND", "The number of places to which a number is to be rounded.")
1394 // -=*# Resource for function ROUNDUP #*=-
1395 const char* SC_OPCODE_ROUND_UP_ARY[] =
1397 NC_("SC_OPCODE_ROUND_UP", "Rounds a number up to the predefined accuracy."),
1398 NC_("SC_OPCODE_ROUND_UP", "Number"),
1399 NC_("SC_OPCODE_ROUND_UP", "The number to be rounded up."),
1400 NC_("SC_OPCODE_ROUND_UP", "Count"),
1401 NC_("SC_OPCODE_ROUND_UP", "The number of places to which a number is to be rounded.")
1404 // -=*# Resource for function ROUNDDOWN #*=-
1405 const char* SC_OPCODE_ROUND_DOWN_ARY[] =
1407 NC_("SC_OPCODE_ROUND_DOWN", "Rounds a number down to a predefined accuracy."),
1408 NC_("SC_OPCODE_ROUND_DOWN", "Number"),
1409 NC_("SC_OPCODE_ROUND_DOWN", "The number to be rounded down."),
1410 NC_("SC_OPCODE_ROUND_DOWN", "Count"),
1411 NC_("SC_OPCODE_ROUND_DOWN", "The number of places down to which a number is to be rounded.")
1414 // -=*# Resource for function EVEN #*=-
1415 const char* SC_OPCODE_EVEN_ARY[] =
1417 NC_("SC_OPCODE_EVEN", "Rounds a positive number up and negative number down to the nearest even integer."),
1418 NC_("SC_OPCODE_EVEN", "Number"),
1419 NC_("SC_OPCODE_EVEN", "The number to be rounded up.")
1422 // -=*# Resource for function ODD #*=-
1423 const char* SC_OPCODE_ODD_ARY[] =
1425 NC_("SC_OPCODE_ODD", "Rounds a positive number up and negative number down to the nearest odd integer."),
1426 NC_("SC_OPCODE_ODD", "Number"),
1427 NC_("SC_OPCODE_ODD", "The number to be rounded up.")
1430 // -=*# Resource for function CEILING.XCL #*=-
1431 const char* SC_OPCODE_CEIL_MS_ARY[] =
1433 NC_("SC_OPCODE_CEIL_MS", "Rounds a number away from zero to the nearest multiple of significance.\nThis function exists for interoperability with Microsoft Excel 2007 or older versions."),
1434 NC_("SC_OPCODE_CEIL_MS", "Number"),
1435 NC_("SC_OPCODE_CEIL_MS", "The number to be rounded up."),
1436 NC_("SC_OPCODE_CEIL_MS", "Significance"),
1437 NC_("SC_OPCODE_CEIL_MS", "The number to whose multiple the value is rounded.")
1440 // -=*# Resource for function CEILING.PRECISE #*=-
1441 const char* SC_OPCODE_CEIL_PRECISE_ARY[] =
1443 NC_("SC_OPCODE_CEIL_PRECISE", "Rounds a number up to the nearest multiple of significance, regardless of sign of significance."),
1444 NC_("SC_OPCODE_CEIL_PRECISE", "Number"),
1445 NC_("SC_OPCODE_CEIL_PRECISE", "The number to be rounded up."),
1446 NC_("SC_OPCODE_CEIL_PRECISE", "Significance"),
1447 NC_("SC_OPCODE_CEIL_PRECISE", "The number to whose multiple the value is rounded.")
1450 // -=*# Resource for function ISO.CEILING #*=-
1451 const char* SC_OPCODE_CEIL_ISO_ARY[] =
1453 NC_("SC_OPCODE_CEIL_ISO", "Rounds a number up to the nearest multiple of significance, regardless of sign of significance."),
1454 NC_("SC_OPCODE_CEIL_ISO", "Number"),
1455 NC_("SC_OPCODE_CEIL_ISO", "The number to be rounded up."),
1456 NC_("SC_OPCODE_CEIL_ISO", "Significance"),
1457 NC_("SC_OPCODE_CEIL_ISO", "The number to whose multiple the value is rounded.")
1460 // -=*# Resource for function CEILING #*=-
1461 const char* SC_OPCODE_CEIL_ARY[] =
1463 NC_("SC_OPCODE_CEIL", "Rounds a number up to the nearest multiple of significance."),
1464 NC_("SC_OPCODE_CEIL", "Number"),
1465 NC_("SC_OPCODE_CEIL", "The number to be rounded up."),
1466 NC_("SC_OPCODE_CEIL", "Significance"),
1467 NC_("SC_OPCODE_CEIL", "If given the number to whose multiple the value is rounded, else -1 or 1 depending on sign of Number."),
1468 NC_("SC_OPCODE_CEIL", "Mode"),
1469 NC_("SC_OPCODE_CEIL", "If given and not equal to zero then rounded up according to amount when a negative number and significance.")
1472 // -=*# Resource for function CEILING.MATH #*=-
1473 const char* SC_OPCODE_CEIL_MATH_ARY[] =
1475 NC_("SC_OPCODE_CEIL_MATH", "Rounds a number up to the nearest multiple of significance."),
1476 NC_("SC_OPCODE_CEIL_MATH", "Number"),
1477 NC_("SC_OPCODE_CEIL_MATH", "The number to be rounded up."),
1478 NC_("SC_OPCODE_CEIL_MATH", "Significance"),
1479 NC_("SC_OPCODE_CEIL_MATH", "If given the number to whose multiple the value is rounded, else 1."),
1480 NC_("SC_OPCODE_CEIL_MATH", "Mode"),
1481 NC_("SC_OPCODE_CEIL_MATH", "For negative numbers; if given and not equal to zero then rounds away from zero, else rounds towards zero.")
1484 // -=*# Resource for function FLOOR #*=-
1485 const char* SC_OPCODE_FLOOR_ARY[] =
1487 NC_("SC_OPCODE_FLOOR", "Rounds number down to the nearest multiple of significance."),
1488 NC_("SC_OPCODE_FLOOR", "Number"),
1489 NC_("SC_OPCODE_FLOOR", "The number to be rounded down."),
1490 NC_("SC_OPCODE_FLOOR", "Significance"),
1491 NC_("SC_OPCODE_FLOOR", "The number to whose multiple the value is to be rounded down."),
1492 NC_("SC_OPCODE_FLOOR", "Mode"),
1493 NC_("SC_OPCODE_FLOOR", "If given and not equal to zero then rounded towards zero with negative number and significance.")
1496 // -=*# Resource for function FLOOR.XCL #*=-
1497 const char* SC_OPCODE_FLOOR_MS_ARY[] =
1499 NC_("SC_OPCODE_FLOOR_MS", "Rounds number towards zero to the nearest multiple of absolute value of significance.\nThis function exists for interoperability with Microsoft Excel 2007 or older versions."),
1500 NC_("SC_OPCODE_FLOOR_MS", "Number"),
1501 NC_("SC_OPCODE_FLOOR_MS", "The number to be rounded down."),
1502 NC_("SC_OPCODE_FLOOR_MS", "Significance"),
1503 NC_("SC_OPCODE_FLOOR_MS", "The number to whose multiple the value is to be rounded down.")
1506 // -=*# Resource for function FLOOR.MATH #*=-
1507 const char* SC_OPCODE_FLOOR_MATH_ARY[] =
1509 NC_("SC_OPCODE_FLOOR_MATH", "Rounds number down to the nearest multiple of significance, regardless of sign of significance."),
1510 NC_("SC_OPCODE_FLOOR_MATH", "Number"),
1511 NC_("SC_OPCODE_FLOOR_MATH", "The number to be rounded down."),
1512 NC_("SC_OPCODE_FLOOR_MATH", "Significance"),
1513 NC_("SC_OPCODE_FLOOR_MATH", "The number to whose multiple the value is to be rounded down."),
1514 NC_("SC_OPCODE_FLOOR_MATH", "Mode"),
1515 NC_("SC_OPCODE_FLOOR_MATH", "For negative numbers; if given and not equal to or less than zero rounds towards zero.")
1518 // -=*# Resource for function FLOOR.PRECISE #*=-
1519 const char* SC_OPCODE_FLOOR_PRECISE_ARY[] =
1521 NC_("SC_OPCODE_FLOOR_PRECISE", "Rounds number down (towards -∞) to the nearest multiple of significance."),
1522 NC_("SC_OPCODE_FLOOR_PRECISE", "Number"),
1523 NC_("SC_OPCODE_FLOOR_PRECISE", "The number to be rounded down."),
1524 NC_("SC_OPCODE_FLOOR_PRECISE", "Significance"),
1525 NC_("SC_OPCODE_FLOOR_PRECISE", "The number to whose multiple the value is to be rounded down. Sign has no meaning.")
1528 // -=*# Resource for function GCD #*=-
1529 const char* SC_OPCODE_GCD_ARY[] =
1531 NC_("SC_OPCODE_GCD", "Greatest Common Divisor"),
1532 NC_("SC_OPCODE_GCD", "Integer "),
1533 NC_("SC_OPCODE_GCD", "Integer 1; integer 2,... are integers for which the greatest common divisor is to be calculated.")
1536 // -=*# Resource for function LCM #*=-
1537 const char* SC_OPCODE_LCM_ARY[] =
1539 NC_("SC_OPCODE_LCM", "Lowest common multiple"),
1540 NC_("SC_OPCODE_LCM", "Integer "),
1541 NC_("SC_OPCODE_LCM", "Integer 1; integer 2,... are integers whose smallest common multiple is to be calculated.")
1544 // -=*# Resource for function TRANSPOSE #*=-
1545 const char* SC_OPCODE_MAT_TRANS_ARY[] =
1547 NC_("SC_OPCODE_MAT_TRANS", "Array transposition. Exchanges the rows and columns of an array."),
1548 NC_("SC_OPCODE_MAT_TRANS", "Array"),
1549 NC_("SC_OPCODE_MAT_TRANS", "The array in which the rows and columns have been transposed.")
1552 // -=*# Resource for function MMULT #*=-
1553 const char* SC_OPCODE_MAT_MULT_ARY[] =
1555 NC_("SC_OPCODE_MAT_MULT", "Array multiplication. Returns the product of two arrays."),
1556 NC_("SC_OPCODE_MAT_MULT", "Array 1"),
1557 NC_("SC_OPCODE_MAT_MULT", "The first array for the array product."),
1558 NC_("SC_OPCODE_MAT_MULT", "Array 2"),
1559 NC_("SC_OPCODE_MAT_MULT", "The second array having the same number of rows as the first array has columns.")
1562 // -=*# Resource for function MDETERM #*=-
1563 const char* SC_OPCODE_MAT_DET_ARY[] =
1565 NC_("SC_OPCODE_MAT_DET", "Returns the array determinant."),
1566 NC_("SC_OPCODE_MAT_DET", "Array"),
1567 NC_("SC_OPCODE_MAT_DET", "The array for which the determinant is to be determined.")
1570 // -=*# Resource for function MINVERSE #*=-
1571 const char* SC_OPCODE_MAT_INV_ARY[] =
1573 NC_("SC_OPCODE_MAT_INV", "Returns the inverse of an array."),
1574 NC_("SC_OPCODE_MAT_INV", "Array"),
1575 NC_("SC_OPCODE_MAT_INV", "The array to be inverted.")
1578 // -=*# Resource for function MUNIT #*=-
1579 const char* SC_OPCODE_MATRIX_UNIT_ARY[] =
1581 NC_("SC_OPCODE_MATRIX_UNIT", "Returns the unitary square array of a certain size."),
1582 NC_("SC_OPCODE_MATRIX_UNIT", "Dimensions"),
1583 NC_("SC_OPCODE_MATRIX_UNIT", "The size of the unitary array.")
1586 // -=*# Resource for function SUMPRODUCT #*=-
1587 const char* SC_OPCODE_SUM_PRODUCT_ARY[] =
1589 NC_("SC_OPCODE_SUM_PRODUCT", "(Inner products) Returns the sum of the products of array arguments."),
1590 NC_("SC_OPCODE_SUM_PRODUCT", "Array "),
1591 NC_("SC_OPCODE_SUM_PRODUCT", "Array 1, array 2, ... are arrays whose arguments are to be multiplied.")
1594 // -=*# Resource for function SUMX2MY2 #*=-
1595 const char* SC_OPCODE_SUM_X2MY2_ARY[] =
1597 NC_("SC_OPCODE_SUM_X2MY2", "Returns the sum of the difference of squares of two arrays."),
1598 NC_("SC_OPCODE_SUM_X2MY2", "Array X"),
1599 NC_("SC_OPCODE_SUM_X2MY2", "First array where the square of the arguments are totalled."),
1600 NC_("SC_OPCODE_SUM_X2MY2", "Array Y"),
1601 NC_("SC_OPCODE_SUM_X2MY2", "Second array where the square of the arguments is to be subtracted.")
1604 // -=*# Resource for function SUMX2PY2 #*=-
1605 const char* SC_OPCODE_SUM_X2DY2_ARY[] =
1607 NC_("SC_OPCODE_SUM_X2DY2", "Returns the total of the square sum of two arrays."),
1608 NC_("SC_OPCODE_SUM_X2DY2", "Array X"),
1609 NC_("SC_OPCODE_SUM_X2DY2", "First array where the square of the arguments are totalled."),
1610 NC_("SC_OPCODE_SUM_X2DY2", "Array Y"),
1611 NC_("SC_OPCODE_SUM_X2DY2", "Second array where the square of the arguments is to be totalled.")
1614 // -=*# Resource for function SUMXMY2 #*=-
1615 const char* SC_OPCODE_SUM_XMY2_ARY[] =
1617 NC_("SC_OPCODE_SUM_XMY2", "Returns the sum of squares of differences of two arrays."),
1618 NC_("SC_OPCODE_SUM_XMY2", "Array X"),
1619 NC_("SC_OPCODE_SUM_XMY2", "First array for forming argument differences."),
1620 NC_("SC_OPCODE_SUM_XMY2", "Array Y"),
1621 NC_("SC_OPCODE_SUM_XMY2", "Second array for forming the argument differences.")
1624 // -=*# Resource for function FREQUENCY #*=-
1625 const char* SC_OPCODE_FREQUENCY_ARY[] =
1627 NC_("SC_OPCODE_FREQUENCY", "Returns a frequency distribution as a vertical array."),
1628 NC_("SC_OPCODE_FREQUENCY", "Data"),
1629 NC_("SC_OPCODE_FREQUENCY", "The array of the data."),
1630 NC_("SC_OPCODE_FREQUENCY", "Classes"),
1631 NC_("SC_OPCODE_FREQUENCY", "The array for forming classes.")
1634 // -=*# Resource for function LINEST #*=-
1635 const char* SC_OPCODE_LINEST_ARY[] =
1637 NC_("SC_OPCODE_LINEST", "Calculates parameters of the linear regression as an array."),
1638 NC_("SC_OPCODE_LINEST", "Data Y"),
1639 NC_("SC_OPCODE_LINEST", "The Y data array."),
1640 NC_("SC_OPCODE_LINEST", "Data X"),
1641 NC_("SC_OPCODE_LINEST", "The X data array."),
1642 NC_("SC_OPCODE_LINEST", "Linear type"),
1643 NC_("SC_OPCODE_LINEST", "If type = 0 the linears will be calculated through the zero point, or else moved linears."),
1644 NC_("SC_OPCODE_LINEST", "Stats"),
1645 NC_("SC_OPCODE_LINEST", "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well.")
1648 // -=*# Resource for function LOGEST #*=-
1649 const char* SC_OPCODE_LOGEST_ARY[] =
1651 NC_("SC_OPCODE_LOGEST", "Calculates the parameters of the exponential regression curve as an array."),
1652 NC_("SC_OPCODE_LOGEST", "Data Y"),
1653 NC_("SC_OPCODE_LOGEST", "The Y data array."),
1654 NC_("SC_OPCODE_LOGEST", "Data X"),
1655 NC_("SC_OPCODE_LOGEST", "The X data array."),
1656 NC_("SC_OPCODE_LOGEST", "Function type"),
1657 NC_("SC_OPCODE_LOGEST", "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x."),
1658 NC_("SC_OPCODE_LOGEST", "Stats"),
1659 NC_("SC_OPCODE_LOGEST", "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well.")
1662 // -=*# Resource for function TREND #*=-
1663 const char* SC_OPCODE_TREND_ARY[] =
1665 NC_("SC_OPCODE_TREND", "Calculates points along a regression line."),
1666 NC_("SC_OPCODE_TREND", "Data Y"),
1667 NC_("SC_OPCODE_TREND", "The Y data array."),
1668 NC_("SC_OPCODE_TREND", "Data X"),
1669 NC_("SC_OPCODE_TREND", "The X data array as the basis for the regression."),
1670 NC_("SC_OPCODE_TREND", "New data X"),
1671 NC_("SC_OPCODE_TREND", "The array of X data for recalculating the values."),
1672 NC_("SC_OPCODE_TREND", "Linear type"),
1673 NC_("SC_OPCODE_TREND", "If type = 0 the linears will be calculated through the zero point, or else moved linears.")
1676 // -=*# Resource for function GROWTH #*=-
1677 const char* SC_OPCODE_GROWTH_ARY[] =
1679 NC_("SC_OPCODE_GROWTH", "Calculates points on the exponential regression function."),
1680 NC_("SC_OPCODE_GROWTH", "Data Y"),
1681 NC_("SC_OPCODE_GROWTH", "The Y data array."),
1682 NC_("SC_OPCODE_GROWTH", "Data X"),
1683 NC_("SC_OPCODE_GROWTH", "The X data array as the basis for the regression."),
1684 NC_("SC_OPCODE_GROWTH", "New data X"),
1685 NC_("SC_OPCODE_GROWTH", "The array of X data for recalculating the values."),
1686 NC_("SC_OPCODE_GROWTH", "Function type"),
1687 NC_("SC_OPCODE_GROWTH", "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x.")
1690 // -=*# Resource for function COUNT #*=-
1691 const char* SC_OPCODE_COUNT_ARY[] =
1693 NC_("SC_OPCODE_COUNT", "Counts how many numbers are in the list of arguments."),
1694 NC_("SC_OPCODE_COUNT", "Value "),
1695 NC_("SC_OPCODE_COUNT", "Value 1, value 2, ... are arguments containing different data types but where only numbers are counted.")
1698 // -=*# Resource for function COUNTA #*=-
1699 const char* SC_OPCODE_COUNT_2_ARY[] =
1701 NC_("SC_OPCODE_COUNT_2", "Counts how many values are in the list of arguments."),
1702 NC_("SC_OPCODE_COUNT_2", "Value "),
1703 NC_("SC_OPCODE_COUNT_2", "Value 1, value 2, ... are arguments representing the values to be counted.")
1706 // -=*# Resource for function MAX #*=-
1707 const char* SC_OPCODE_MAX_ARY[] =
1709 NC_("SC_OPCODE_MAX", "Returns the maximum value in a list of arguments."),
1710 NC_("SC_OPCODE_MAX", "Number "),
1711 NC_("SC_OPCODE_MAX", "Number 1, number 2, ... are numerical arguments for which the largest number is to be determined.")
1714 // -=*# Resource for function MAXA #*=-
1715 const char* SC_OPCODE_MAX_A_ARY[] =
1717 NC_("SC_OPCODE_MAX_A", "Returns the maximum value in a list of arguments. Text is evaluated as Zero."),
1718 NC_("SC_OPCODE_MAX_A", "Value "),
1719 NC_("SC_OPCODE_MAX_A", "Value 1, value 2, are arguments whose largest value is to be determined.")
1722 // -=*# Resource for function MIN #*=-
1723 const char* SC_OPCODE_MIN_ARY[] =
1725 NC_("SC_OPCODE_MIN", "Returns the minimum value in a list of arguments."),
1726 NC_("SC_OPCODE_MIN", "Number "),
1727 NC_("SC_OPCODE_MIN", "Number 1, number 2, ... are numerical arguments for which the smallest number is to be determined.")
1730 // -=*# Resource for function MINA #*=-
1731 const char* SC_OPCODE_MIN_A_ARY[] =
1733 NC_("SC_OPCODE_MIN_A", "Returns the smallest value in a list of arguments. Text is evaluated as zero."),
1734 NC_("SC_OPCODE_MIN_A", "Value "),
1735 NC_("SC_OPCODE_MIN_A", "Value 1; value 2;... are arguments whose smallest number is to be determined.")
1738 // -=*# Resource for function VAR #*=-
1739 const char* SC_OPCODE_VAR_ARY[] =
1741 NC_("SC_OPCODE_VAR", "Calculates the variance based on a sample."),
1742 NC_("SC_OPCODE_VAR", "Number "),
1743 NC_("SC_OPCODE_VAR", "Number 1, number 2, ... are numerical arguments which portray a sample of a population.")
1746 // -=*# Resource for function VAR.S #*=-
1747 const char* SC_OPCODE_VAR_S_ARY[] =
1749 NC_("SC_OPCODE_VAR_S", "Calculates the variance based on a sample."),
1750 NC_("SC_OPCODE_VAR_S", "Number "),
1751 NC_("SC_OPCODE_VAR_S", "Number 1, number 2, ... are numerical arguments which portray a sample of a population.")
1754 // -=*# Resource for function VARA #*=-
1755 const char* SC_OPCODE_VAR_A_ARY[] =
1757 NC_("SC_OPCODE_VAR_A", "Returns the variance based on a sample. Text is evaluated as zero."),
1758 NC_("SC_OPCODE_VAR_A", "Value "),
1759 NC_("SC_OPCODE_VAR_A", "Value 1; value 2; ... are arguments representing a sample taken from a basic total population.")
1762 // -=*# Resource for function VARP #*=-
1763 const char* SC_OPCODE_VAR_P_ARY[] =
1765 NC_("SC_OPCODE_VAR_P", "Calculates variance based on the entire population."),
1766 NC_("SC_OPCODE_VAR_P", "Number "),
1767 NC_("SC_OPCODE_VAR_P", "Number 1, number 2, ... are numerical arguments which represent a population.")
1770 // -=*# Resource for function VAR.P #*=-
1771 const char* SC_OPCODE_VAR_P_MS_ARY[] =
1773 NC_("SC_OPCODE_VAR_P_MS", "Calculates variance based on the entire population."),
1774 NC_("SC_OPCODE_VAR_P_MS", "Number "),
1775 NC_("SC_OPCODE_VAR_P_MS", "Number 1, number 2, ... are numerical arguments which represent a population.")
1778 // -=*# Resource for function VARPA #*=-
1779 const char* SC_OPCODE_VAR_P_A_ARY[] =
1781 NC_("SC_OPCODE_VAR_P_A", "Returns the variance based on the entire population. Text is evaluated as zero."),
1782 NC_("SC_OPCODE_VAR_P_A", "Value "),
1783 NC_("SC_OPCODE_VAR_P_A", "Value 1; value 2;... are arguments representing a population.")
1786 // -=*# Resource for function STDEV #*=-
1787 const char* SC_OPCODE_ST_DEV_ARY[] =
1789 NC_("SC_OPCODE_ST_DEV", "Calculates the standard deviation based on a sample."),
1790 NC_("SC_OPCODE_ST_DEV", "Number "),
1791 NC_("SC_OPCODE_ST_DEV", "Number 1, number 2, ... are numerical arguments which portray a sample of a population.")
1794 // -=*# Resource for function STDEV.S #*=-
1795 const char* SC_OPCODE_ST_DEV_S_ARY[] =
1797 NC_("SC_OPCODE_ST_DEV_S", "Calculates the standard deviation based on a sample."),
1798 NC_("SC_OPCODE_ST_DEV_S", "Number "),
1799 NC_("SC_OPCODE_ST_DEV_S", "Number 1, number 2, ... are numerical arguments which portray a sample of a population.")
1802 // -=*# Resource for function STDEVA #*=-
1803 const char* SC_OPCODE_ST_DEV_A_ARY[] =
1805 NC_("SC_OPCODE_ST_DEV_A", "Returns the standard deviation based on a sample. Text is evaluated as zero."),
1806 NC_("SC_OPCODE_ST_DEV_A", "Value "),
1807 NC_("SC_OPCODE_ST_DEV_A", "Value 1; value 2; ... are arguments representing a sample taken from a basic total population.")
1810 // -=*# Resource for function STDEVP #*=-
1811 const char* SC_OPCODE_ST_DEV_P_ARY[] =
1813 NC_("SC_OPCODE_ST_DEV_P", "Calculates the standard deviation based on the entire population."),
1814 NC_("SC_OPCODE_ST_DEV_P", "Number "),
1815 NC_("SC_OPCODE_ST_DEV_P", "Number 1, number 2, ... are numerical arguments which portray a population.")
1818 // -=*# Resource for function STDEV.P #*=-
1819 const char* SC_OPCODE_ST_DEV_P_MS_ARY[] =
1821 NC_("SC_OPCODE_ST_DEV_P_MS", "Calculates the standard deviation based on the entire population."),
1822 NC_("SC_OPCODE_ST_DEV_P_MS", "Number "),
1823 NC_("SC_OPCODE_ST_DEV_P_MS", "Number 1, number 2, ... are numerical arguments which portray a population.")
1826 // -=*# Resource for function STDEVPA #*=-
1827 const char* SC_OPCODE_ST_DEV_P_A_ARY[] =
1829 NC_("SC_OPCODE_ST_DEV_P_A", "Returns the standard deviation based on the entire population. Text is evaluated as zero."),
1830 NC_("SC_OPCODE_ST_DEV_P_A", "Value "),
1831 NC_("SC_OPCODE_ST_DEV_P_A", "Value 1; value 2;... are arguments corresponding to a population.")
1834 // -=*# Resource for function AVERAGE #*=-
1835 const char* SC_OPCODE_AVERAGE_ARY[] =
1837 NC_("SC_OPCODE_AVERAGE", "Returns the average of a sample."),
1838 NC_("SC_OPCODE_AVERAGE", "Number "),
1839 NC_("SC_OPCODE_AVERAGE", "Number 1, number 2;...are numeric arguments representing a population sample.")
1842 // -=*# Resource for function AVERAGEA #*=-
1843 const char* SC_OPCODE_AVERAGE_A_ARY[] =
1845 NC_("SC_OPCODE_AVERAGE_A", "Returns the average value for a sample. Text is evaluated as zero."),
1846 NC_("SC_OPCODE_AVERAGE_A", "Value "),
1847 NC_("SC_OPCODE_AVERAGE_A", "Value 1; value 2; ... are arguments representing a sample taken from a basic total population.")
1850 // -=*# Resource for function DEVSQ #*=-
1851 const char* SC_OPCODE_DEV_SQ_ARY[] =
1853 NC_("SC_OPCODE_DEV_SQ", "Returns the sum of squares of deviations from the sample mean value"),
1854 NC_("SC_OPCODE_DEV_SQ", "Number "),
1855 NC_("SC_OPCODE_DEV_SQ", "Number 1, number 2, ... are numerical arguments which portray a sample.")
1858 // -=*# Resource for function AVEDEV #*=-
1859 const char* SC_OPCODE_AVE_DEV_ARY[] =
1861 NC_("SC_OPCODE_AVE_DEV", "Returns the average of the absolute deviations of a sample from the mean."),
1862 NC_("SC_OPCODE_AVE_DEV", "Number "),
1863 NC_("SC_OPCODE_AVE_DEV", "Number 1, number 2;...are numerical arguments representing a sample.")
1866 // -=*# Resource for function SKEW #*=-
1867 const char* SC_OPCODE_SKEW_ARY[] =
1869 NC_("SC_OPCODE_SKEW", "Returns the skewness of a distribution."),
1870 NC_("SC_OPCODE_SKEW", "Number "),
1871 NC_("SC_OPCODE_SKEW", "Number 1, number 2, ... are numerical arguments portraying a sample of the distribution.")
1874 // -=*# Resource for function SKEWP #*=-
1875 const char* SC_OPCODE_SKEWP_ARY[] =
1877 NC_("SC_OPCODE_SKEWP", "Returns the skewness of a distribution using the population of a random variable."),
1878 NC_("SC_OPCODE_SKEWP", "Number "),
1879 NC_("SC_OPCODE_SKEWP", "Number 1, number 2, ... are numerical arguments portraying the population.")
1882 // -=*# Resource for function KURT #*=-
1883 const char* SC_OPCODE_KURT_ARY[] =
1885 NC_("SC_OPCODE_KURT", "Returns the kurtosis of a distribution."),
1886 NC_("SC_OPCODE_KURT", "Number "),
1887 NC_("SC_OPCODE_KURT", "Number 1, number 2, ... are numerical arguments, representing a sample of the distribution.")
1890 // -=*# Resource for function GEOMEAN #*=-
1891 const char* SC_OPCODE_GEO_MEAN_ARY[] =
1893 NC_("SC_OPCODE_GEO_MEAN", "Returns the geometric mean of a sample."),
1894 NC_("SC_OPCODE_GEO_MEAN", "Number "),
1895 NC_("SC_OPCODE_GEO_MEAN", "Number 1, number 2, ... are numerical arguments which portray a sample.")
1898 // -=*# Resource for function HARMEAN #*=-
1899 const char* SC_OPCODE_HAR_MEAN_ARY[] =
1901 NC_("SC_OPCODE_HAR_MEAN", "Returns the harmonic mean of a sample."),
1902 NC_("SC_OPCODE_HAR_MEAN", "Number "),
1903 NC_("SC_OPCODE_HAR_MEAN", "Number 1, number 2, ... are numerical arguments which portray a sample.")
1906 // -=*# Resource for function MODE #*=-
1907 const char* SC_OPCODE_MODAL_VALUE_ARY[] =
1909 NC_("SC_OPCODE_MODAL_VALUE", "Returns the most common value in a sample."),
1910 NC_("SC_OPCODE_MODAL_VALUE", "Number "),
1911 NC_("SC_OPCODE_MODAL_VALUE", "Number 1, number 2, ... are numerical arguments which portray a sample.")
1914 // -=*# Resource for function MODE.SNGL #*=-
1915 const char* SC_OPCODE_MODAL_VALUE_MS_ARY[] =
1917 NC_("SC_OPCODE_MODAL_VALUE_MS", "Returns the most common value in a sample."),
1918 NC_("SC_OPCODE_MODAL_VALUE_MS", "Number "),
1919 NC_("SC_OPCODE_MODAL_VALUE_MS", "Number 1, number 2, ... are numerical arguments which portray a sample.")
1922 // -=*# Resource for function MODE.MULT #*=-
1923 const char* SC_OPCODE_MODAL_VALUE_MULTI_ARY[] =
1925 NC_("SC_OPCODE_MODAL_VALUE_MULTI", "Returns the most common value in a sample."),
1926 NC_("SC_OPCODE_MODAL_VALUE_MULTI", "Number "),
1927 NC_("SC_OPCODE_MODAL_VALUE_MULTI", "Number 1, number 2, ... are 1 to 254 numerical arguments which portray a sample.")
1930 // -=*# Resource for function MEDIAN #*=-
1931 const char* SC_OPCODE_MEDIAN_ARY[] =
1933 NC_("SC_OPCODE_MEDIAN", "Returns the median of a given sample."),
1934 NC_("SC_OPCODE_MEDIAN", "Number "),
1935 NC_("SC_OPCODE_MEDIAN", "Number 1, number 2, ... are numerical arguments which portray a sample.")
1938 // -=*# Resource for function PERCENTILE #*=-
1939 const char* SC_OPCODE_PERCENTILE_ARY[] =
1941 NC_("SC_OPCODE_PERCENTILE", "Returns the alpha quantile of a sample."),
1942 NC_("SC_OPCODE_PERCENTILE", "Data"),
1943 NC_("SC_OPCODE_PERCENTILE", "The array of the data in the sample."),
1944 NC_("SC_OPCODE_PERCENTILE", "Alpha"),
1945 NC_("SC_OPCODE_PERCENTILE", "The percentage rate of the quantile between 0 and 1.")
1948 // -=*# Resource for function PERCENTILE.EXC #*=-
1949 const char* SC_OPCODE_PERCENTILE_EXC_ARY[] =
1951 NC_("SC_OPCODE_PERCENTILE_EXC", "Returns the alpha percentile of a sample."),
1952 NC_("SC_OPCODE_PERCENTILE_EXC", "Data"),
1953 NC_("SC_OPCODE_PERCENTILE_EXC", "The array of the data in the sample."),
1954 NC_("SC_OPCODE_PERCENTILE_EXC", "Alpha"),
1955 NC_("SC_OPCODE_PERCENTILE_EXC", "The percentile value, range 0...1, exclusive.")
1958 // -=*# Resource for function PERCENTILE.INC #*=-
1959 const char* SC_OPCODE_PERCENTILE_INC_ARY[] =
1961 NC_("SC_OPCODE_PERCENTILE_INC", "Returns the alpha percentile of a sample."),
1962 NC_("SC_OPCODE_PERCENTILE_INC", "Data"),
1963 NC_("SC_OPCODE_PERCENTILE_INC", "The array of the data in the sample."),
1964 NC_("SC_OPCODE_PERCENTILE_INC", "Alpha"),
1965 NC_("SC_OPCODE_PERCENTILE_INC", "The percentile value, range 0...1, inclusive.")
1968 // -=*# Resource for function QUARTILE #*=-
1969 const char* SC_OPCODE_QUARTILE_ARY[] =
1971 NC_("SC_OPCODE_QUARTILE", "Returns the quartile of a sample."),
1972 NC_("SC_OPCODE_QUARTILE", "Data"),
1973 NC_("SC_OPCODE_QUARTILE", "The array of the data in the sample."),
1974 NC_("SC_OPCODE_QUARTILE", "Type"),
1975 NC_("SC_OPCODE_QUARTILE", "The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX).")
1978 // -=*# Resource for function QUARTILE.EXC #*=-
1979 const char* SC_OPCODE_QUARTILE_EXC_ARY[] =
1981 NC_("SC_OPCODE_QUARTILE_EXC", "Returns the quartile of a sample."),
1982 NC_("SC_OPCODE_QUARTILE_EXC", "Data"),
1983 NC_("SC_OPCODE_QUARTILE_EXC", "The array of the data in the sample."),
1984 NC_("SC_OPCODE_QUARTILE_EXC", "Type"),
1985 NC_("SC_OPCODE_QUARTILE_EXC", "The type of the quartile (1 = 25%, 2 = 50%, 3 = 75%).")
1988 // -=*# Resource for function QUARTILE.INC #*=-
1989 const char* SC_OPCODE_QUARTILE_INC_ARY[] =
1991 NC_("SC_OPCODE_QUARTILE_INC", "Returns the quartile of a sample."),
1992 NC_("SC_OPCODE_QUARTILE_INC", "Data"),
1993 NC_("SC_OPCODE_QUARTILE_INC", "The array of the data in the sample."),
1994 NC_("SC_OPCODE_QUARTILE_INC", "Type"),
1995 NC_("SC_OPCODE_QUARTILE_INC", "The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX).")
1998 // -=*# Resource for function LARGE #*=-
1999 const char* SC_OPCODE_LARGE_ARY[] =
2001 NC_("SC_OPCODE_LARGE", "Returns the k-th largest value of a sample."),
2002 NC_("SC_OPCODE_LARGE", "Data"),
2003 NC_("SC_OPCODE_LARGE", "The array of the data in the sample."),
2004 NC_("SC_OPCODE_LARGE", "Rank c"),
2005 NC_("SC_OPCODE_LARGE", "The ranking of the value.")
2008 // -=*# Resource for function SMALL #*=-
2009 const char* SC_OPCODE_SMALL_ARY[] =
2011 NC_("SC_OPCODE_SMALL", "Returns the k-th smallest value of a sample."),
2012 NC_("SC_OPCODE_SMALL", "Data"),
2013 NC_("SC_OPCODE_SMALL", "The array of the data in the sample."),
2014 NC_("SC_OPCODE_SMALL", "Rank c"),
2015 NC_("SC_OPCODE_SMALL", "The ranking of the value.")
2018 // -=*# Resource for function PERCENTRANK #*=-
2019 const char* SC_OPCODE_PERCENT_RANK_ARY[] =
2021 NC_("SC_OPCODE_PERCENT_RANK", "Returns the percentage rank of a value in a sample."),
2022 NC_("SC_OPCODE_PERCENT_RANK", "Data"),
2023 NC_("SC_OPCODE_PERCENT_RANK", "The array of the data in the sample."),
2024 NC_("SC_OPCODE_PERCENT_RANK", "Value"),
2025 NC_("SC_OPCODE_PERCENT_RANK", "The value for which percentage ranking is to be determined."),
2026 NC_("SC_OPCODE_PERCENT_RANK", "Significance"),
2027 NC_("SC_OPCODE_PERCENT_RANK", "The number of significant digits for the returned percentage: if omitted, a value of 3 is used.")
2030 // -=*# Resource for function PERCENTRANK.EXC #*=-
2031 const char* SC_OPCODE_PERCENT_RANK_EXC_ARY[] =
2033 NC_("SC_OPCODE_PERCENT_RANK_EXC", "Returns the percentage rank (0..1, exclusive) of a value in a sample."),
2034 NC_("SC_OPCODE_PERCENT_RANK_EXC", "Data"),
2035 NC_("SC_OPCODE_PERCENT_RANK_EXC", "The array of the data in the sample."),
2036 NC_("SC_OPCODE_PERCENT_RANK_EXC", "Value"),
2037 NC_("SC_OPCODE_PERCENT_RANK_EXC", "The value for which percentage ranking is to be determined."),
2038 NC_("SC_OPCODE_PERCENT_RANK_EXC", "Significance"),
2039 NC_("SC_OPCODE_PERCENT_RANK_EXC", "The number of significant digits for the returned percentage: if omitted, a value of 3 is used.")
2042 // -=*# Resource for function PERCENTRANK.INC #*=-
2043 const char* SC_OPCODE_PERCENT_RANK_INC_ARY[] =
2045 NC_("SC_OPCODE_PERCENT_RANK_INC", "Returns the percentage rank (0..1, inclusive) of a value in a sample."),
2046 NC_("SC_OPCODE_PERCENT_RANK_INC", "Data"),
2047 NC_("SC_OPCODE_PERCENT_RANK_INC", "The array of the data in the sample."),
2048 NC_("SC_OPCODE_PERCENT_RANK_INC", "Value"),
2049 NC_("SC_OPCODE_PERCENT_RANK_INC", "The value for which percentage ranking is to be determined."),
2050 NC_("SC_OPCODE_PERCENT_RANK_INC", "Significance"),
2051 NC_("SC_OPCODE_PERCENT_RANK_INC", "The number of significant digits for the returned percentage: if omitted, a value of 3 is used.")
2054 // -=*# Resource for function RANK #*=-
2055 const char* SC_OPCODE_RANK_ARY[] =
2057 NC_("SC_OPCODE_RANK", "Returns the ranking of a value in a sample."),
2058 NC_("SC_OPCODE_RANK", "Value"),
2059 NC_("SC_OPCODE_RANK", "The value for which the rank is to be determined."),
2060 NC_("SC_OPCODE_RANK", "Data"),
2061 NC_("SC_OPCODE_RANK", "The array of the data in the sample."),
2062 NC_("SC_OPCODE_RANK", "Type"),
2063 NC_("SC_OPCODE_RANK", "Sequence order: 0 or omitted means descending, any other value than 0 means ascending.")
2066 // -=*# Resource for function RANK.EQ #*=-
2067 const char* SC_OPCODE_RANK_EQ_ARY[] =
2069 NC_("SC_OPCODE_RANK_EQ", "Returns the ranking of a value in a sample; if more than one value has the same rank, the top rank of that set of values is returned."),
2070 NC_("SC_OPCODE_RANK_EQ", "Value"),
2071 NC_("SC_OPCODE_RANK_EQ", "The value for which the rank is to be determined."),
2072 NC_("SC_OPCODE_RANK_EQ", "Data"),
2073 NC_("SC_OPCODE_RANK_EQ", "The array of the data in the sample."),
2074 NC_("SC_OPCODE_RANK_EQ", "Type"),
2075 NC_("SC_OPCODE_RANK_EQ", "Sequence order: 0 or omitted means descending, any other value than 0 means ascending.")
2078 // -=*# Resource for function RANK.AVG #*=-
2079 const char* SC_OPCODE_RANK_AVG_ARY[] =
2081 NC_("SC_OPCODE_RANK_AVG", "Returns the ranking of a value in a sample; if more than one value has the same rank, the average rank is returned."),
2082 NC_("SC_OPCODE_RANK_AVG", "Value"),
2083 NC_("SC_OPCODE_RANK_AVG", "The value for which the rank is to be determined."),
2084 NC_("SC_OPCODE_RANK_AVG", "Data"),
2085 NC_("SC_OPCODE_RANK_AVG", "The array of the data in the sample."),
2086 NC_("SC_OPCODE_RANK_AVG", "Type"),
2087 NC_("SC_OPCODE_RANK_AVG", "Sequence order: 0 or omitted means descending, any other value than 0 means ascending.")
2090 // -=*# Resource for function TRIMMEAN #*=-
2091 const char* SC_OPCODE_TRIM_MEAN_ARY[] =
2093 NC_("SC_OPCODE_TRIM_MEAN", "Returns the mean of a sample without including the marginal values."),
2094 NC_("SC_OPCODE_TRIM_MEAN", "Data"),
2095 NC_("SC_OPCODE_TRIM_MEAN", "The array of the data in the sample."),
2096 NC_("SC_OPCODE_TRIM_MEAN", "Alpha"),
2097 NC_("SC_OPCODE_TRIM_MEAN", "The percentage of marginal data that is not to be taken into account.")
2100 // -=*# Resource for function PROB #*=-
2101 const char* SC_OPCODE_PROB_ARY[] =
2103 NC_("SC_OPCODE_PROB", "Returns the discrete probability of an interval."),
2104 NC_("SC_OPCODE_PROB", "Data"),
2105 NC_("SC_OPCODE_PROB", "The sample data array."),
2106 NC_("SC_OPCODE_PROB", "Probability"),
2107 NC_("SC_OPCODE_PROB", "The array of the associated probabilities."),
2108 NC_("SC_OPCODE_PROB", "Start"),
2109 NC_("SC_OPCODE_PROB", "The start of the value interval whose probabilities is to be totalled."),
2110 NC_("SC_OPCODE_PROB", "End"),
2111 NC_("SC_OPCODE_PROB", "The end of the value interval where the probabilities are to be totalled.")
2114 // -=*# Resource for function B #*=-
2115 const char* SC_OPCODE_B_ARY[] =
2117 NC_("SC_OPCODE_B", "Returns the probability of a trial result using binomial distribution."),
2118 NC_("SC_OPCODE_B", "Trials"),
2119 NC_("SC_OPCODE_B", "The number of trials."),
2120 NC_("SC_OPCODE_B", "SP"),
2121 NC_("SC_OPCODE_B", "The individual probability of a trial result."),
2122 NC_("SC_OPCODE_B", "T 1"),
2123 NC_("SC_OPCODE_B", "Lower limit for the number of trials."),
2124 NC_("SC_OPCODE_B", "T 2"),
2125 NC_("SC_OPCODE_B", "Upper limit for the number of trials.")
2128 // -=*# Resource for function PHI #*=-
2129 const char* SC_OPCODE_PHI_ARY[] =
2131 NC_("SC_OPCODE_PHI", "Values of the distribution function for a standard normal distribution."),
2132 NC_("SC_OPCODE_PHI", "Number"),
2133 NC_("SC_OPCODE_PHI", "The value for which the standard normal distribution is to be calculated.")
2136 // -=*# Resource for function GAUSS #*=-
2137 const char* SC_OPCODE_GAUSS_ARY[] =
2139 NC_("SC_OPCODE_GAUSS", "Returns the integral values of the standard normal cumulative distribution."),
2140 NC_("SC_OPCODE_GAUSS", "Number"),
2141 NC_("SC_OPCODE_GAUSS", "The value for which the integral value of the standard normal distribution is to be calculated.")
2144 // -=*# Resource for function FISHER #*=-
2145 const char* SC_OPCODE_FISHER_ARY[] =
2147 NC_("SC_OPCODE_FISHER", "Returns the Fisher transformation."),
2148 NC_("SC_OPCODE_FISHER", "Number"),
2149 NC_("SC_OPCODE_FISHER", "The value to be transformed (-1 < VALUE < 1).")
2152 // -=*# Resource for function FISHERINV #*=-
2153 const char* SC_OPCODE_FISHER_INV_ARY[] =
2155 NC_("SC_OPCODE_FISHER_INV", "Returns the inverse of the Fisher transformation."),
2156 NC_("SC_OPCODE_FISHER_INV", "Number"),
2157 NC_("SC_OPCODE_FISHER_INV", "The value that is to be transformed back.")
2160 // -=*# Resource for function BINOMDIST #*=-
2161 const char* SC_OPCODE_BINOM_DIST_ARY[] =
2163 NC_("SC_OPCODE_BINOM_DIST", "Values of the binomial distribution."),
2164 NC_("SC_OPCODE_BINOM_DIST", "X"),
2165 NC_("SC_OPCODE_BINOM_DIST", "The number of successes in a series of trials."),
2166 NC_("SC_OPCODE_BINOM_DIST", "Trials"),
2167 NC_("SC_OPCODE_BINOM_DIST", "The total number of trials."),
2168 NC_("SC_OPCODE_BINOM_DIST", "SP"),
2169 NC_("SC_OPCODE_BINOM_DIST", "The success probability of a trial."),
2170 NC_("SC_OPCODE_BINOM_DIST", "C"),
2171 NC_("SC_OPCODE_BINOM_DIST", "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability.")
2174 // -=*# Resource for function BINOM.DIST #*=-
2175 const char* SC_OPCODE_BINOM_DIST_MS_ARY[] =
2177 NC_("SC_OPCODE_BINOM_DIST_MS", "Values of the binomial distribution."),
2178 NC_("SC_OPCODE_BINOM_DIST_MS", "X"),
2179 NC_("SC_OPCODE_BINOM_DIST_MS", "The number of successes in a series of trials."),
2180 NC_("SC_OPCODE_BINOM_DIST_MS", "Trials"),
2181 NC_("SC_OPCODE_BINOM_DIST_MS", "The total number of trials."),
2182 NC_("SC_OPCODE_BINOM_DIST_MS", "SP"),
2183 NC_("SC_OPCODE_BINOM_DIST_MS", "The success probability of a trial."),
2184 NC_("SC_OPCODE_BINOM_DIST_MS", "C"),
2185 NC_("SC_OPCODE_BINOM_DIST_MS", "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability.")
2188 // -=*# Resource for function NEGBINOMDIST #*=-
2189 const char* SC_OPCODE_NEG_BINOM_VERT_ARY[] =
2191 NC_("SC_OPCODE_NEG_BINOM_VERT", "Values of the negative binomial distribution."),
2192 NC_("SC_OPCODE_NEG_BINOM_VERT", "X"),
2193 NC_("SC_OPCODE_NEG_BINOM_VERT", "The number of failures in the trial range."),
2194 NC_("SC_OPCODE_NEG_BINOM_VERT", "R"),
2195 NC_("SC_OPCODE_NEG_BINOM_VERT", "The number of successes in the trial sequence."),
2196 NC_("SC_OPCODE_NEG_BINOM_VERT", "SP"),
2197 NC_("SC_OPCODE_NEG_BINOM_VERT", "The success probability of a trial.")
2200 // -=*# Resource for function NEGBINOM.DIST #*=-
2201 const char* SC_OPCODE_NEG_BINOM_DIST_MS_ARY[] =
2203 NC_("SC_OPCODE_NEG_BINOM_DIST_MS", "Values of the negative binomial distribution."),
2204 NC_("SC_OPCODE_NEG_BINOM_DIST_MS", "X"),
2205 NC_("SC_OPCODE_NEG_BINOM_DIST_MS", "The number of failures in the trial range."),
2206 NC_("SC_OPCODE_NEG_BINOM_DIST_MS", "R"),
2207 NC_("SC_OPCODE_NEG_BINOM_DIST_MS", "The number of successes in the trial sequence."),
2208 NC_("SC_OPCODE_NEG_BINOM_DIST_MS", "SP"),
2209 NC_("SC_OPCODE_NEG_BINOM_DIST_MS", "The success probability of a trial."),
2210 NC_("SC_OPCODE_NEG_BINOM_DIST_MS", "Cumulative"),
2211 NC_("SC_OPCODE_NEG_BINOM_DIST_MS", "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function.")
2214 // -=*# Resource for function CRITBINOM #*=-
2215 const char* SC_OPCODE_CRIT_BINOM_ARY[] =
2217 NC_("SC_OPCODE_CRIT_BINOM", "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value."),
2218 NC_("SC_OPCODE_CRIT_BINOM", "Trials"),
2219 NC_("SC_OPCODE_CRIT_BINOM", "The total number of trials."),
2220 NC_("SC_OPCODE_CRIT_BINOM", "SP"),
2221 NC_("SC_OPCODE_CRIT_BINOM", "The success probability of a trial."),
2222 NC_("SC_OPCODE_CRIT_BINOM", "Alpha"),
2223 NC_("SC_OPCODE_CRIT_BINOM", "The border probability that is attained or exceeded.")
2226 // -=*# Resource for function BINOM.INV #*=-
2227 const char* SC_OPCODE_BINOM_INV_ARY[] =
2229 NC_("SC_OPCODE_BINOM_INV", "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value."),
2230 NC_("SC_OPCODE_BINOM_INV", "Trials"),
2231 NC_("SC_OPCODE_BINOM_INV", "The total number of trials."),
2232 NC_("SC_OPCODE_BINOM_INV", "SP"),
2233 NC_("SC_OPCODE_BINOM_INV", "The success probability of a trial."),
2234 NC_("SC_OPCODE_BINOM_INV", "Alpha"),
2235 NC_("SC_OPCODE_BINOM_INV", "The border probability that is attained or exceeded.")
2238 // -=*# Resource for function POISSON #*=-
2239 const char* SC_OPCODE_POISSON_DIST_ARY[] =
2241 NC_("SC_OPCODE_POISSON_DIST", "Returns the Poisson distribution."),
2242 NC_("SC_OPCODE_POISSON_DIST", "Number"),
2243 NC_("SC_OPCODE_POISSON_DIST", "The value for which the Poisson distribution is to be calculated."),
2244 NC_("SC_OPCODE_POISSON_DIST", "Mean"),
2245 NC_("SC_OPCODE_POISSON_DIST", "Mean. The mean value of the Poisson distribution."),
2246 NC_("SC_OPCODE_POISSON_DIST", "Cumulative"),
2247 NC_("SC_OPCODE_POISSON_DIST", "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function.")
2250 // -=*# Resource for function POISSON.DIST #*=-
2251 const char* SC_OPCODE_POISSON_DIST_MS_ARY[] =
2253 NC_("SC_OPCODE_POISSON_DIST_MS", "Returns the Poisson distribution."),
2254 NC_("SC_OPCODE_POISSON_DIST_MS", "Number"),
2255 NC_("SC_OPCODE_POISSON_DIST_MS", "The value for which the Poisson distribution is to be calculated."),
2256 NC_("SC_OPCODE_POISSON_DIST_MS", "Mean"),
2257 NC_("SC_OPCODE_POISSON_DIST_MS", "Mean. The mean value of the Poisson distribution."),
2258 NC_("SC_OPCODE_POISSON_DIST_MS", "Cumulative"),
2259 NC_("SC_OPCODE_POISSON_DIST_MS", "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function.")
2262 // -=*# Resource for function NORMDIST #*=-
2263 const char* SC_OPCODE_NORM_DIST_ARY[] =
2265 NC_("SC_OPCODE_NORM_DIST", "Values of the normal distribution."),
2266 NC_("SC_OPCODE_NORM_DIST", "Number"),
2267 NC_("SC_OPCODE_NORM_DIST", "The value for which the normal distribution is to be calculated."),
2268 NC_("SC_OPCODE_NORM_DIST", "Mean"),
2269 NC_("SC_OPCODE_NORM_DIST", "The mean value. The mean value of the normal distribution."),
2270 NC_("SC_OPCODE_NORM_DIST", "STDEV"),
2271 NC_("SC_OPCODE_NORM_DIST", "Standard deviation. The standard deviation of the normal distribution."),
2272 NC_("SC_OPCODE_NORM_DIST", "C"),
2273 NC_("SC_OPCODE_NORM_DIST", "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function.")
2276 // -=*# Resource for function NORM.DIST #*=-
2277 const char* SC_OPCODE_NORM_DIST_MS_ARY[] =
2279 NC_("SC_OPCODE_NORM_DIST_MS", "Values of the normal distribution."),
2280 NC_("SC_OPCODE_NORM_DIST_MS", "Number"),
2281 NC_("SC_OPCODE_NORM_DIST_MS", "The value for which the normal distribution is to be calculated."),
2282 NC_("SC_OPCODE_NORM_DIST_MS", "Mean"),
2283 NC_("SC_OPCODE_NORM_DIST_MS", "The mean value. The mean value of the normal distribution."),
2284 NC_("SC_OPCODE_NORM_DIST_MS", "STDEV"),
2285 NC_("SC_OPCODE_NORM_DIST_MS", "Standard deviation. The standard deviation of the normal distribution."),
2286 NC_("SC_OPCODE_NORM_DIST_MS", "C"),
2287 NC_("SC_OPCODE_NORM_DIST_MS", "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function.")
2290 // -=*# Resource for function NORMINV #*=-
2291 const char* SC_OPCODE_NORM_INV_ARY[] =
2293 NC_("SC_OPCODE_NORM_INV", "Values of the inverse normal distribution."),
2294 NC_("SC_OPCODE_NORM_INV", "Number"),
2295 NC_("SC_OPCODE_NORM_INV", "The probability value for which the inverse normal distribution is to be calculated."),
2296 NC_("SC_OPCODE_NORM_INV", "Mean"),
2297 NC_("SC_OPCODE_NORM_INV", "The mean value. The mean value of the normal distribution."),
2298 NC_("SC_OPCODE_NORM_INV", "STDEV"),
2299 NC_("SC_OPCODE_NORM_INV", "Standard deviation. The standard deviation of the normal distribution.")
2302 // -=*# Resource for function NORM.INV #*=-
2303 const char* SC_OPCODE_NORM_INV_MS_ARY[] =
2305 NC_("SC_OPCODE_NORM_INV_MS", "Values of the inverse normal distribution."),
2306 NC_("SC_OPCODE_NORM_INV_MS", "Number"),
2307 NC_("SC_OPCODE_NORM_INV_MS", "The probability value for which the inverse normal distribution is to be calculated."),
2308 NC_("SC_OPCODE_NORM_INV_MS", "Mean"),
2309 NC_("SC_OPCODE_NORM_INV_MS", "The mean value. The mean value of the normal distribution."),
2310 NC_("SC_OPCODE_NORM_INV_MS", "STDEV"),
2311 NC_("SC_OPCODE_NORM_INV_MS", "Standard deviation. The standard deviation of the normal distribution.")
2314 // -=*# Resource for function NORMSDIST #*=-
2315 const char* SC_OPCODE_STD_NORM_DIST_ARY[] =
2317 NC_("SC_OPCODE_STD_NORM_DIST", "The values of the standard normal cumulative distribution."),
2318 NC_("SC_OPCODE_STD_NORM_DIST", "Number"),
2319 NC_("SC_OPCODE_STD_NORM_DIST", "The value for which the standard normal distribution is to be calculated.")
2322 // -=*# Resource for function NORM.S.DIST #*=-
2323 const char* SC_OPCODE_STD_NORM_DIST_MS_ARY[] =
2325 NC_("SC_OPCODE_STD_NORM_DIST_MS", "The values of the standard normal distribution."),
2326 NC_("SC_OPCODE_STD_NORM_DIST_MS", "Number"),
2327 NC_("SC_OPCODE_STD_NORM_DIST_MS", "The value for which the standard normal distribution is to be calculated."),
2328 NC_("SC_OPCODE_STD_NORM_DIST_MS", "Cumulative"),
2329 NC_("SC_OPCODE_STD_NORM_DIST_MS", "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function.")
2332 // -=*# Resource for function NORMSINV #*=-
2333 const char* SC_OPCODE_S_NORM_INV_ARY[] =
2335 NC_("SC_OPCODE_S_NORM_INV", "Values of the inverse standard normal distribution."),
2336 NC_("SC_OPCODE_S_NORM_INV", "Number"),
2337 NC_("SC_OPCODE_S_NORM_INV", "The probability value for which the inverse standard normal distribution is to be calculated.")
2340 // -=*# Resource for function NORM.S.INV #*=-
2341 const char* SC_OPCODE_S_NORM_INV_MS_ARY[] =
2343 NC_("SC_OPCODE_S_NORM_INV_MS", "Values of the inverse standard normal distribution."),
2344 NC_("SC_OPCODE_S_NORM_INV_MS", "Number"),
2345 NC_("SC_OPCODE_S_NORM_INV_MS", "The probability value for which the inverse standard normal distribution is to be calculated.")
2348 // -=*# Resource for function LOGNORMDIST #*=-
2349 const char* SC_OPCODE_LOG_NORM_DIST_ARY[] =
2351 NC_("SC_OPCODE_LOG_NORM_DIST", "Values of the log normal distribution."),
2352 NC_("SC_OPCODE_LOG_NORM_DIST", "Number"),
2353 NC_("SC_OPCODE_LOG_NORM_DIST", "The value for which the log normal distribution is to be calculated."),
2354 NC_("SC_OPCODE_LOG_NORM_DIST", "Mean"),
2355 NC_("SC_OPCODE_LOG_NORM_DIST", "The mean value of the log normal distribution. It is set to 0 if omitted."),
2356 NC_("SC_OPCODE_LOG_NORM_DIST", "STDEV"),
2357 NC_("SC_OPCODE_LOG_NORM_DIST", "The standard deviation of the log normal distribution. It is set to 1 if omitted."),
2358 NC_("SC_OPCODE_LOG_NORM_DIST", "Cumulative"),
2359 NC_("SC_OPCODE_LOG_NORM_DIST", "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function.")
2362 // -=*# Resource for function LOGNORM.DIST #*=-
2363 const char* SC_OPCODE_LOG_NORM_DIST_MS_ARY[] =
2365 NC_("SC_OPCODE_LOG_NORM_DIST_MS", "Values of the log normal distribution."),
2366 NC_("SC_OPCODE_LOG_NORM_DIST_MS", "Number"),
2367 NC_("SC_OPCODE_LOG_NORM_DIST_MS", "The value for which the log normal distribution is to be calculated."),
2368 NC_("SC_OPCODE_LOG_NORM_DIST_MS", "Mean"),
2369 NC_("SC_OPCODE_LOG_NORM_DIST_MS", "The mean value of the log normal distribution."),
2370 NC_("SC_OPCODE_LOG_NORM_DIST_MS", "STDEV"),
2371 NC_("SC_OPCODE_LOG_NORM_DIST_MS", "The standard deviation of the log normal distribution."),
2372 NC_("SC_OPCODE_LOG_NORM_DIST_MS", "Cumulative"),
2373 NC_("SC_OPCODE_LOG_NORM_DIST_MS", "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function.")
2376 // -=*# Resource for function LOGINV #*=-
2377 const char* SC_OPCODE_LOG_INV_ARY[] =
2379 NC_("SC_OPCODE_LOG_INV", "Values of the inverse of the lognormal distribution."),
2380 NC_("SC_OPCODE_LOG_INV", "Number"),
2381 NC_("SC_OPCODE_LOG_INV", "The probability value for which the inverse log normal distribution is to be calculated."),
2382 NC_("SC_OPCODE_LOG_INV", "Mean"),
2383 NC_("SC_OPCODE_LOG_INV", "Mean value. The mean value of the log normal distribution."),
2384 NC_("SC_OPCODE_LOG_INV", "STDEV"),
2385 NC_("SC_OPCODE_LOG_INV", "Standard deviation. The standard deviation of the log normal distribution.")
2388 // -=*# Resource for function LOGNORM.INV #*=-
2389 const char* SC_OPCODE_LOG_INV_MS_ARY[] =
2391 NC_("SC_OPCODE_LOG_INV_MS", "Values of the inverse of the lognormal distribution."),
2392 NC_("SC_OPCODE_LOG_INV_MS", "Number"),
2393 NC_("SC_OPCODE_LOG_INV_MS", "The probability value for which the inverse log normal distribution is to be calculated."),
2394 NC_("SC_OPCODE_LOG_INV_MS", "Mean"),
2395 NC_("SC_OPCODE_LOG_INV_MS", "Mean value. The mean value of the log normal distribution."),
2396 NC_("SC_OPCODE_LOG_INV_MS", "STDEV"),
2397 NC_("SC_OPCODE_LOG_INV_MS", "Standard deviation. The standard deviation of the log normal distribution.")
2400 // -=*# Resource for function EXPONDIST #*=-
2401 const char* SC_OPCODE_EXP_DIST_ARY[] =
2403 NC_("SC_OPCODE_EXP_DIST", "Values of the exponential distribution."),
2404 NC_("SC_OPCODE_EXP_DIST", "Number"),
2405 NC_("SC_OPCODE_EXP_DIST", "The value to which the exponential distribution is to be calculated."),
2406 NC_("SC_OPCODE_EXP_DIST", "Lambda"),
2407 NC_("SC_OPCODE_EXP_DIST", "The parameters of the exponential distribution."),
2408 NC_("SC_OPCODE_EXP_DIST", "C"),
2409 NC_("SC_OPCODE_EXP_DIST", "Cumulated. C=0 calculates the density function, C=1 the distribution.")
2412 // -=*# Resource for function EXPON.DIST #*=-
2413 const char* SC_OPCODE_EXP_DIST_MS_ARY[] =
2415 NC_("SC_OPCODE_EXP_DIST_MS", "Values of the exponential distribution."),
2416 NC_("SC_OPCODE_EXP_DIST_MS", "Number"),
2417 NC_("SC_OPCODE_EXP_DIST_MS", "The value to which the exponential distribution is to be calculated."),
2418 NC_("SC_OPCODE_EXP_DIST_MS", "Lambda"),
2419 NC_("SC_OPCODE_EXP_DIST_MS", "The parameters of the exponential distribution."),
2420 NC_("SC_OPCODE_EXP_DIST_MS", "C"),
2421 NC_("SC_OPCODE_EXP_DIST_MS", "Cumulated. C=0 calculates the density function, C=1 the distribution.")
2424 // -=*# Resource for function GAMMADIST #*=-
2425 const char* SC_OPCODE_GAMMA_DIST_ARY[] =
2427 NC_("SC_OPCODE_GAMMA_DIST", "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution."),
2428 NC_("SC_OPCODE_GAMMA_DIST", "Number"),
2429 NC_("SC_OPCODE_GAMMA_DIST", "The value for which the gamma distribution is to be calculated."),
2430 NC_("SC_OPCODE_GAMMA_DIST", "Alpha"),
2431 NC_("SC_OPCODE_GAMMA_DIST", "The Alpha parameter of the Gamma distribution."),
2432 NC_("SC_OPCODE_GAMMA_DIST", "Beta"),
2433 NC_("SC_OPCODE_GAMMA_DIST", "The Beta parameter of the Gamma distribution."),
2434 NC_("SC_OPCODE_GAMMA_DIST", "Cumulative"),
2435 NC_("SC_OPCODE_GAMMA_DIST", "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function.")
2438 // -=*# Resource for function GAMMA.DIST #*=-
2439 const char* SC_OPCODE_GAMMA_DIST_MS_ARY[] =
2441 NC_("SC_OPCODE_GAMMA_DIST_MS", "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution."),
2442 NC_("SC_OPCODE_GAMMA_DIST_MS", "Number"),
2443 NC_("SC_OPCODE_GAMMA_DIST_MS", "The value for which the gamma distribution is to be calculated."),
2444 NC_("SC_OPCODE_GAMMA_DIST_MS", "Alpha"),
2445 NC_("SC_OPCODE_GAMMA_DIST_MS", "The Alpha parameter of the Gamma distribution."),
2446 NC_("SC_OPCODE_GAMMA_DIST_MS", "Beta"),
2447 NC_("SC_OPCODE_GAMMA_DIST_MS", "The Beta parameter of the Gamma distribution."),
2448 NC_("SC_OPCODE_GAMMA_DIST_MS", "Cumulative"),
2449 NC_("SC_OPCODE_GAMMA_DIST_MS", "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function.")
2452 // -=*# Resource for function GAMMAINV #*=-
2453 const char* SC_OPCODE_GAMMA_INV_ARY[] =
2455 NC_("SC_OPCODE_GAMMA_INV", "Values of the inverse gamma distribution."),
2456 NC_("SC_OPCODE_GAMMA_INV", "Number"),
2457 NC_("SC_OPCODE_GAMMA_INV", "The probability value for which the inverse gamma distribution is to be calculated."),
2458 NC_("SC_OPCODE_GAMMA_INV", "Alpha"),
2459 NC_("SC_OPCODE_GAMMA_INV", "The Alpha (shape) parameter of the Gamma distribution."),
2460 NC_("SC_OPCODE_GAMMA_INV", "Beta"),
2461 NC_("SC_OPCODE_GAMMA_INV", "The Beta (scale) parameter of the Gamma distribution.")
2464 // -=*# Resource for function GAMMA.INV #*=-
2465 const char* SC_OPCODE_GAMMA_INV_MS_ARY[] =
2467 NC_("SC_OPCODE_GAMMA_INV_MS", "Values of the inverse gamma distribution."),
2468 NC_("SC_OPCODE_GAMMA_INV_MS", "Number"),
2469 NC_("SC_OPCODE_GAMMA_INV_MS", "The probability value for which the inverse gamma distribution is to be calculated."),
2470 NC_("SC_OPCODE_GAMMA_INV_MS", "Alpha"),
2471 NC_("SC_OPCODE_GAMMA_INV_MS", "The Alpha (shape) parameter of the Gamma distribution."),
2472 NC_("SC_OPCODE_GAMMA_INV_MS", "Beta"),
2473 NC_("SC_OPCODE_GAMMA_INV_MS", "The Beta (scale) parameter of the Gamma distribution.")
2476 // -=*# Resource for function GAMMALN #*=-
2477 const char* SC_OPCODE_GAMMA_LN_ARY[] =
2479 NC_("SC_OPCODE_GAMMA_LN", "Returns the natural logarithm of the gamma function."),
2480 NC_("SC_OPCODE_GAMMA_LN", "Number"),
2481 NC_("SC_OPCODE_GAMMA_LN", "The value for which the natural logarithm of the gamma function is to be calculated.")
2484 // -=*# Resource for function GAMMALN.PRECISE #*=-
2485 const char* SC_OPCODE_GAMMA_LN_MS_ARY[] =
2487 NC_("SC_OPCODE_GAMMA_LN_MS", "Returns the natural logarithm of the gamma function."),
2488 NC_("SC_OPCODE_GAMMA_LN_MS", "Number"),
2489 NC_("SC_OPCODE_GAMMA_LN_MS", "The value for which the natural logarithm of the gamma function is to be calculated.")
2493 // -=*# Resource for function GAMMA #*=-
2494 const char* SC_OPCODE_GAMMA_ARY[] =
2496 NC_("SC_OPCODE_GAMMA", "Returns the value of the Gamma function."),
2497 NC_("SC_OPCODE_GAMMA", "Number"),
2498 NC_("SC_OPCODE_GAMMA", "The value for which the Gamma function is to be calculated.")
2502 // -=*# Resource for function BETADIST #*=-
2503 const char* SC_OPCODE_BETA_DIST_ARY[] =
2505 NC_("SC_OPCODE_BETA_DIST", "Values of the beta distribution."),
2506 NC_("SC_OPCODE_BETA_DIST", "Number"),
2507 NC_("SC_OPCODE_BETA_DIST", "The value for which the beta distribution is to be calculated."),
2508 NC_("SC_OPCODE_BETA_DIST", "Alpha"),
2509 NC_("SC_OPCODE_BETA_DIST", "The Alpha parameter of the Beta distribution."),
2510 NC_("SC_OPCODE_BETA_DIST", "Beta"),
2511 NC_("SC_OPCODE_BETA_DIST", "The Beta parameter of the Beta distribution."),
2512 NC_("SC_OPCODE_BETA_DIST", "Start"),
2513 NC_("SC_OPCODE_BETA_DIST", "The starting value for the value interval of the distribution."),
2514 NC_("SC_OPCODE_BETA_DIST", "End"),
2515 NC_("SC_OPCODE_BETA_DIST", "The final value for the value interval of the distribution."),
2516 NC_("SC_OPCODE_BETA_DIST", "Cumulative"),
2517 NC_("SC_OPCODE_BETA_DIST", "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function.")
2520 // -=*# Resource for function BETAINV #*=-
2521 const char* SC_OPCODE_BETA_INV_ARY[] =
2523 NC_("SC_OPCODE_BETA_INV", "Values of the inverse beta distribution."),
2524 NC_("SC_OPCODE_BETA_INV", "Number"),
2525 NC_("SC_OPCODE_BETA_INV", "The probability value for which the inverse beta distribution is to be calculated."),
2526 NC_("SC_OPCODE_BETA_INV", "Alpha"),
2527 NC_("SC_OPCODE_BETA_INV", "The Alpha parameter of the Beta distribution."),
2528 NC_("SC_OPCODE_BETA_INV", "Beta"),
2529 NC_("SC_OPCODE_BETA_INV", "The Beta parameter of the Beta distribution."),
2530 NC_("SC_OPCODE_BETA_INV", "Start"),
2531 NC_("SC_OPCODE_BETA_INV", "The starting value for the value interval of the distribution."),
2532 NC_("SC_OPCODE_BETA_INV", "End"),
2533 NC_("SC_OPCODE_BETA_INV", "The final value for the value interval of the distribution.")
2536 // -=*# Resource for function BETA.DIST #*=-
2537 const char* SC_OPCODE_BETA_DIST_MS_ARY[] =
2539 NC_("SC_OPCODE_BETA_DIST_MS", "Values of the beta distribution."),
2540 NC_("SC_OPCODE_BETA_DIST_MS", "Number"),
2541 NC_("SC_OPCODE_BETA_DIST_MS", "The value for which the beta distribution is to be calculated."),
2542 NC_("SC_OPCODE_BETA_DIST_MS", "Alpha"),
2543 NC_("SC_OPCODE_BETA_DIST_MS", "The Alpha parameter of the Beta distribution."),
2544 NC_("SC_OPCODE_BETA_DIST_MS", "Beta"),
2545 NC_("SC_OPCODE_BETA_DIST_MS", "The Beta parameter of the Beta distribution."),
2546 NC_("SC_OPCODE_BETA_DIST_MS", "Cumulative"),
2547 NC_("SC_OPCODE_BETA_DIST_MS", "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function."),
2548 NC_("SC_OPCODE_BETA_DIST_MS", "Start"),
2549 NC_("SC_OPCODE_BETA_DIST_MS", "The starting value for the value interval of the distribution."),
2550 NC_("SC_OPCODE_BETA_DIST_MS", "End"),
2551 NC_("SC_OPCODE_BETA_DIST_MS", "The final value for the value interval of the distribution.")
2554 // -=*# Resource for function BETA.INV #*=-
2555 const char* SC_OPCODE_BETA_INV_MS_ARY[] =
2557 NC_("SC_OPCODE_BETA_INV_MS", "Values of the inverse beta distribution."),
2558 NC_("SC_OPCODE_BETA_INV_MS", "Number"),
2559 NC_("SC_OPCODE_BETA_INV_MS", "The probability value for which the inverse beta distribution is to be calculated."),
2560 NC_("SC_OPCODE_BETA_INV_MS", "Alpha"),
2561 NC_("SC_OPCODE_BETA_INV_MS", "The Alpha parameter of the Beta distribution."),
2562 NC_("SC_OPCODE_BETA_INV_MS", "Beta"),
2563 NC_("SC_OPCODE_BETA_INV_MS", "The Beta parameter of the Beta distribution."),
2564 NC_("SC_OPCODE_BETA_INV_MS", "Start"),
2565 NC_("SC_OPCODE_BETA_INV_MS", "The starting value for the value interval of the distribution."),
2566 NC_("SC_OPCODE_BETA_INV_MS", "End"),
2567 NC_("SC_OPCODE_BETA_INV_MS", "The final value for the value interval of the distribution.")
2570 // -=*# Resource for function WEIBULL #*=-
2571 const char* SC_OPCODE_WEIBULL_ARY[] =
2573 NC_("SC_OPCODE_WEIBULL", "Returns the values of the Weibull distribution."),
2574 NC_("SC_OPCODE_WEIBULL", "Number"),
2575 NC_("SC_OPCODE_WEIBULL", "The value for which the Weibull distribution is to be calculated."),
2576 NC_("SC_OPCODE_WEIBULL", "Alpha"),
2577 NC_("SC_OPCODE_WEIBULL", "The Alpha parameter of the Weibull distribution."),
2578 NC_("SC_OPCODE_WEIBULL", "Beta"),
2579 NC_("SC_OPCODE_WEIBULL", "The Beta parameter of the Weibull distribution."),
2580 NC_("SC_OPCODE_WEIBULL", "C"),
2581 NC_("SC_OPCODE_WEIBULL", "Cumulated. C=0 calculates the density function, C=1 the distribution.")
2584 // -=*# Resource for function WEIBULL.DIST #*=-
2585 const char* SC_OPCODE_WEIBULL_MS_ARY[] =
2587 NC_("SC_OPCODE_WEIBULL_MS", "Returns the values of the Weibull distribution."),
2588 NC_("SC_OPCODE_WEIBULL_MS", "Number"),
2589 NC_("SC_OPCODE_WEIBULL_MS", "The value for which the Weibull distribution is to be calculated."),
2590 NC_("SC_OPCODE_WEIBULL_MS", "Alpha"),
2591 NC_("SC_OPCODE_WEIBULL_MS", "The Alpha parameter of the Weibull distribution."),
2592 NC_("SC_OPCODE_WEIBULL_MS", "Beta"),
2593 NC_("SC_OPCODE_WEIBULL_MS", "The Beta parameter of the Weibull distribution."),
2594 NC_("SC_OPCODE_WEIBULL_MS", "C"),
2595 NC_("SC_OPCODE_WEIBULL_MS", "Cumulated. C=0 calculates the density function, C=1 the distribution.")
2598 // -=*# Resource for function HYPGEOMDIST #*=-
2599 const char* SC_OPCODE_HYP_GEOM_DIST_ARY[] =
2601 NC_("SC_OPCODE_HYP_GEOM_DIST", "Values of the hypergeometric distribution."),
2602 NC_("SC_OPCODE_HYP_GEOM_DIST", "X"),
2603 NC_("SC_OPCODE_HYP_GEOM_DIST", "The number of successes in the sample."),
2604 NC_("SC_OPCODE_HYP_GEOM_DIST", "N sample"),
2605 NC_("SC_OPCODE_HYP_GEOM_DIST", "The size of the sample."),
2606 NC_("SC_OPCODE_HYP_GEOM_DIST", "Successes"),
2607 NC_("SC_OPCODE_HYP_GEOM_DIST", "The number of successes in the population."),
2608 NC_("SC_OPCODE_HYP_GEOM_DIST", "N population"),
2609 NC_("SC_OPCODE_HYP_GEOM_DIST", "The population size."),
2610 NC_("SC_OPCODE_HYP_GEOM_DIST", "Cumulative"),
2611 NC_("SC_OPCODE_HYP_GEOM_DIST", "Cumulated. TRUE calculates the cumulative distribution function, FALSE the probability mass function.")
2614 // -=*# Resource for function HYPGEOM.DIST #*=-
2615 const char* SC_OPCODE_HYP_GEOM_DIST_MS_ARY[] =
2617 NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "Values of the hypergeometric distribution."),
2618 NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "X"),
2619 NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "The number of successes in the sample."),
2620 NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "N sample"),
2621 NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "The size of the sample."),
2622 NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "Successes"),
2623 NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "The number of successes in the population."),
2624 NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "N population"),
2625 NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "The population size."),
2626 NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "Cumulative"),
2627 NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "Cumulated. TRUE calculates the cumulative distribution function, FALSE the probability mass function.")
2630 // -=*# Resource for function TDIST #*=-
2631 const char* SC_OPCODE_T_DIST_ARY[] =
2633 NC_("SC_OPCODE_T_DIST", "Returns the t-distribution."),
2634 NC_("SC_OPCODE_T_DIST", "Number"),
2635 NC_("SC_OPCODE_T_DIST", "The value for which the T distribution is to be calculated."),
2636 NC_("SC_OPCODE_T_DIST", "Degrees freedom"),
2637 NC_("SC_OPCODE_T_DIST", "The degrees of freedom of the T distribution."),
2638 NC_("SC_OPCODE_T_DIST", "Mode"),
2639 NC_("SC_OPCODE_T_DIST", "Mode = 1 calculates the one-tailed test, 2 = two-tailed distribution.")
2642 // -=*# Resource for function T.DIST.2T #*=-
2643 const char* SC_OPCODE_T_DIST_2T_ARY[] =
2645 NC_("SC_OPCODE_T_DIST_2T", "Returns the two-tailed t-distribution."),
2646 NC_("SC_OPCODE_T_DIST_2T", "Number"),
2647 NC_("SC_OPCODE_T_DIST_2T", "The value for which the T distribution is to be calculated."),
2648 NC_("SC_OPCODE_T_DIST_2T", "Degrees freedom"),
2649 NC_("SC_OPCODE_T_DIST_2T", "The degrees of freedom of the T distribution.")
2652 // -=*# Resource for function T.DIST #*=-
2653 const char* SC_OPCODE_T_DIST_MS_ARY[] =
2655 NC_("SC_OPCODE_T_DIST_MS", "Returns the t-distribution."),
2656 NC_("SC_OPCODE_T_DIST_MS", "Number"),
2657 NC_("SC_OPCODE_T_DIST_MS", "The value for which the T distribution is to be calculated."),
2658 NC_("SC_OPCODE_T_DIST_MS", "Degrees freedom"),
2659 NC_("SC_OPCODE_T_DIST_MS", "The degrees of freedom of the T distribution."),
2660 NC_("SC_OPCODE_T_DIST_MS", "Cumulative"),
2661 NC_("SC_OPCODE_T_DIST_MS", "True calculates the cumulative distribution function, false the probability density function.")
2664 // -=*# Resource for function T.DIST.RT #*=-
2665 const char* SC_OPCODE_T_DIST_RT_ARY[] =
2667 NC_("SC_OPCODE_T_DIST_RT", "Returns the right-tailed t-distribution."),
2668 NC_("SC_OPCODE_T_DIST_RT", "Number"),
2669 NC_("SC_OPCODE_T_DIST_RT", "The value for which the T distribution is to be calculated."),
2670 NC_("SC_OPCODE_T_DIST_RT", "Degrees freedom"),
2671 NC_("SC_OPCODE_T_DIST_RT", "The degrees of freedom of the T distribution.")
2674 // -=*# Resource for function TINV #*=-
2675 const char* SC_OPCODE_T_INV_ARY[] =
2677 NC_("SC_OPCODE_T_INV", "Values of the inverse t-distribution."),
2678 NC_("SC_OPCODE_T_INV", "Number"),
2679 NC_("SC_OPCODE_T_INV", "The probability value for which the inverse T distribution is to be calculated."),
2680 NC_("SC_OPCODE_T_INV", "Degrees freedom"),
2681 NC_("SC_OPCODE_T_INV", "The degrees of freedom of the T distribution.")
2684 // -=*# Resource for function T.INV #*=-
2685 const char* SC_OPCODE_T_INV_MS_ARY[] =
2687 NC_("SC_OPCODE_T_INV_MS", "Values of the left-tailed inverse t-distribution."),
2688 NC_("SC_OPCODE_T_INV_MS", "Number"),
2689 NC_("SC_OPCODE_T_INV_MS", "The probability value for which the inverse T distribution is to be calculated."),
2690 NC_("SC_OPCODE_T_INV_MS", "Degrees freedom"),
2691 NC_("SC_OPCODE_T_INV_MS", "The degrees of freedom of the T distribution.")
2694 // -=*# Resource for function T.INV.2T #*=-
2695 const char* SC_OPCODE_T_INV_2T_ARY[] =
2697 NC_("SC_OPCODE_T_INV_2T", "Values of the two-tailed inverse t-distribution."),
2698 NC_("SC_OPCODE_T_INV_2T", "Number"),
2699 NC_("SC_OPCODE_T_INV_2T", "The probability value for which the inverse T distribution is to be calculated."),
2700 NC_("SC_OPCODE_T_INV_2T", "Degrees freedom"),
2701 NC_("SC_OPCODE_T_INV_2T", "The degrees of freedom of the T distribution.")
2704 // -=*# Resource for function FDIST #*=-
2705 const char* SC_OPCODE_F_DIST_ARY[] =
2707 NC_("SC_OPCODE_F_DIST", "Values of the F probability distribution."),
2708 NC_("SC_OPCODE_F_DIST", "Number"),
2709 NC_("SC_OPCODE_F_DIST", "The value for which the F distribution is to be calculated."),
2710 NC_("SC_OPCODE_F_DIST", "Degrees freedom 1"),
2711 NC_("SC_OPCODE_F_DIST", "The degrees of freedom in the numerator of the F distribution."),
2712 NC_("SC_OPCODE_F_DIST", "Degrees freedom 2"),
2713 NC_("SC_OPCODE_F_DIST", "The degrees of freedom in the denominator of the F distribution.")
2716 // -=*# Resource for function F.DIST #*=-
2717 const char* SC_OPCODE_F_DIST_LT_ARY[] =
2719 NC_("SC_OPCODE_F_DIST_LT", "Values of the left tail F probability distribution."),
2720 NC_("SC_OPCODE_F_DIST_LT", "Number"),
2721 NC_("SC_OPCODE_F_DIST_LT", "The value for which the F distribution is to be calculated."),
2722 NC_("SC_OPCODE_F_DIST_LT", "Degrees freedom 1"),
2723 NC_("SC_OPCODE_F_DIST_LT", "The degrees of freedom in the numerator of the F distribution."),
2724 NC_("SC_OPCODE_F_DIST_LT", "Degrees freedom 2"),
2725 NC_("SC_OPCODE_F_DIST_LT", "The degrees of freedom in the denominator of the F distribution."),
2726 NC_("SC_OPCODE_F_DIST_LT", "Cumulative"),
2727 NC_("SC_OPCODE_F_DIST_LT", "Cumulative distribution function (TRUE) or probability density function (FALSE).")
2730 // -=*# Resource for function F.DIST.RT #*=-
2731 const char* SC_OPCODE_F_DIST_RT_ARY[] =
2733 NC_("SC_OPCODE_F_DIST_RT", "Values of the right tail F probability distribution."),
2734 NC_("SC_OPCODE_F_DIST_RT", "Number"),
2735 NC_("SC_OPCODE_F_DIST_RT", "The value for which the F distribution is to be calculated."),
2736 NC_("SC_OPCODE_F_DIST_RT", "Degrees freedom 1"),
2737 NC_("SC_OPCODE_F_DIST_RT", "The degrees of freedom in the numerator of the F distribution."),
2738 NC_("SC_OPCODE_F_DIST_RT", "Degrees freedom 2"),
2739 NC_("SC_OPCODE_F_DIST_RT", "The degrees of freedom in the denominator of the F distribution.")
2742 // -=*# Resource for function FINV #*=-
2743 const char* SC_OPCODE_F_INV_ARY[] =
2745 NC_("SC_OPCODE_F_INV", "Values of the inverse F distribution."),
2746 NC_("SC_OPCODE_F_INV", "Number"),
2747 NC_("SC_OPCODE_F_INV", "The probability value for which the inverse F distribution is to be calculated."),
2748 NC_("SC_OPCODE_F_INV", "Degrees freedom 1"),
2749 NC_("SC_OPCODE_F_INV", "The degrees of freedom in the numerator of the F distribution."),
2750 NC_("SC_OPCODE_F_INV", "Degrees freedom 2"),
2751 NC_("SC_OPCODE_F_INV", "The degrees of freedom in the denominator of the F distribution.")
2754 // -=*# Resource for function F.INV #*=-
2755 const char* SC_OPCODE_F_INV_LT_ARY[] =
2757 NC_("SC_OPCODE_F_INV_LT", "Values of the inverse left tail F distribution."),
2758 NC_("SC_OPCODE_F_INV_LT", "Number"),
2759 NC_("SC_OPCODE_F_INV_LT", "The probability value for which the inverse F distribution is to be calculated."),
2760 NC_("SC_OPCODE_F_INV_LT", "Degrees freedom 1"),
2761 NC_("SC_OPCODE_F_INV_LT", "The degrees of freedom in the numerator of the F distribution."),
2762 NC_("SC_OPCODE_F_INV_LT", "Degrees freedom 2"),
2763 NC_("SC_OPCODE_F_INV_LT", "The degrees of freedom in the denominator of the F distribution.")
2766 // -=*# Resource for function F.INV.RT #*=-
2767 const char* SC_OPCODE_F_INV_RT_ARY[] =
2769 NC_("SC_OPCODE_F_INV_RT", "Values of the inverse right tail F distribution."),
2770 NC_("SC_OPCODE_F_INV_RT", "Number"),
2771 NC_("SC_OPCODE_F_INV_RT", "The probability value for which the inverse F distribution is to be calculated."),
2772 NC_("SC_OPCODE_F_INV_RT", "Degrees freedom 1"),
2773 NC_("SC_OPCODE_F_INV_RT", "The degrees of freedom in the numerator of the F distribution."),
2774 NC_("SC_OPCODE_F_INV_RT", "Degrees freedom 2"),
2775 NC_("SC_OPCODE_F_INV_RT", "The degrees of freedom in the denominator of the F distribution.")
2778 // -=*# Resource for function CHIDIST #*=-
2779 const char* SC_OPCODE_CHI_DIST_ARY[] =
2781 NC_("SC_OPCODE_CHI_DIST", "Returns the right-tail probability of the chi-square distribution."),
2782 NC_("SC_OPCODE_CHI_DIST", "Number"),
2783 NC_("SC_OPCODE_CHI_DIST", "The value for which the chi square distribution is to be calculated."),
2784 NC_("SC_OPCODE_CHI_DIST", "Degrees freedom"),
2785 NC_("SC_OPCODE_CHI_DIST", "The degrees of freedom of the chi square distribution.")
2788 // -=*# Resource for function CHISQ.DIST.RT #*=-
2789 const char* SC_OPCODE_CHI_DIST_MS_ARY[] =
2791 NC_("SC_OPCODE_CHI_DIST_MS", "Returns the right-tail probability of the chi-square distribution."),
2792 NC_("SC_OPCODE_CHI_DIST_MS", "Number"),
2793 NC_("SC_OPCODE_CHI_DIST_MS", "The value for which the chi square distribution is to be calculated."),
2794 NC_("SC_OPCODE_CHI_DIST_MS", "Degrees freedom"),
2795 NC_("SC_OPCODE_CHI_DIST_MS", "The degrees of freedom of the chi square distribution.")
2799 // -=*# Resource for function CHISQDIST #*=-
2800 const char* SC_OPCODE_CHISQ_DIST_ARY[] =
2802 NC_("SC_OPCODE_CHISQ_DIST", "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution."),
2803 NC_("SC_OPCODE_CHISQ_DIST", "Number"),
2804 NC_("SC_OPCODE_CHISQ_DIST", "The value for which the probability density function or cumulative distribution function is to be calculated."),
2805 NC_("SC_OPCODE_CHISQ_DIST", "Degrees of Freedom"),
2806 NC_("SC_OPCODE_CHISQ_DIST", "The degrees of freedom of the chi-square distribution."),
2807 NC_("SC_OPCODE_CHISQ_DIST", "Cumulative"),
2808 NC_("SC_OPCODE_CHISQ_DIST", "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function.")
2812 // -=*# Resource for function CHISQ.DIST #*=-
2813 const char* SC_OPCODE_CHISQ_DIST_MS_ARY[] =
2815 NC_("SC_OPCODE_CHISQ_DIST_MS", "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution."),
2816 NC_("SC_OPCODE_CHISQ_DIST_MS", "Number"),
2817 NC_("SC_OPCODE_CHISQ_DIST_MS", "The value for which the probability density function or cumulative distribution function is to be calculated."),
2818 NC_("SC_OPCODE_CHISQ_DIST_MS", "Degrees of Freedom"),
2819 NC_("SC_OPCODE_CHISQ_DIST_MS", "The degrees of freedom of the chi-square distribution."),
2820 NC_("SC_OPCODE_CHISQ_DIST_MS", "Cumulative"),
2821 NC_("SC_OPCODE_CHISQ_DIST_MS", "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function.")
2825 // -=*# Resource for function CHIINV #*=-
2826 const char* SC_OPCODE_CHI_INV_ARY[] =
2828 NC_("SC_OPCODE_CHI_INV", "Values of the inverse of CHIDIST(x; DegreesOfFreedom)."),
2829 NC_("SC_OPCODE_CHI_INV", "Number"),
2830 NC_("SC_OPCODE_CHI_INV", "The probability value for which the inverse chi square distribution is to be calculated."),
2831 NC_("SC_OPCODE_CHI_INV", "Degrees freedom"),
2832 NC_("SC_OPCODE_CHI_INV", "The degrees of freedom of the chi square distribution.")
2836 // -=*# Resource for function CHISQ.INV.RT #*=-
2837 const char* SC_OPCODE_CHI_INV_MS_ARY[] =
2839 NC_("SC_OPCODE_CHI_INV_MS", "Values of the inverse of CHIDIST(x; DegreesOfFreedom)."),
2840 NC_("SC_OPCODE_CHI_INV_MS", "Number"),
2841 NC_("SC_OPCODE_CHI_INV_MS", "The probability value for which the inverse chi square distribution is to be calculated."),
2842 NC_("SC_OPCODE_CHI_INV_MS", "Degrees freedom"),
2843 NC_("SC_OPCODE_CHI_INV_MS", "The degrees of freedom of the chi square distribution.")
2847 // -=*# Resource for function CHISQINV #*=-
2848 const char* SC_OPCODE_CHISQ_INV_ARY[] =
2850 NC_("SC_OPCODE_CHISQ_INV", "Values of the inverse of CHISQDIST(x;DegreesOfFreedom;TRUE())."),
2851 NC_("SC_OPCODE_CHISQ_INV", "Probability"),
2852 NC_("SC_OPCODE_CHISQ_INV", "The probability value for which the inverse of the chi square distribution is to be calculated."),
2853 NC_("SC_OPCODE_CHISQ_INV", "Degrees of Freedom"),
2854 NC_("SC_OPCODE_CHISQ_INV", "The degrees of freedom of the chi square distribution.")
2858 // -=*# Resource for function CHISQ.INV #*=-
2859 const char* SC_OPCODE_CHISQ_INV_MS_ARY[] =
2861 NC_("SC_OPCODE_CHISQ_INV_MS", "Values of the inverse of CHISQ.DIST(x;DegreesOfFreedom;TRUE())."),
2862 NC_("SC_OPCODE_CHISQ_INV_MS", "Probability"),
2863 NC_("SC_OPCODE_CHISQ_INV_MS", "The probability value for which the inverse of the chi square distribution is to be calculated."),
2864 NC_("SC_OPCODE_CHISQ_INV_MS", "Degrees of Freedom"),
2865 NC_("SC_OPCODE_CHISQ_INV_MS", "The degrees of freedom of the chi square distribution.")
2869 // -=*# Resource for function STANDARDIZE #*=-
2870 const char* SC_OPCODE_STANDARD_ARY[] =
2872 NC_("SC_OPCODE_STANDARD", "Converts a random variable to a normalized value."),
2873 NC_("SC_OPCODE_STANDARD", "Number"),
2874 NC_("SC_OPCODE_STANDARD", "The value to be standardized."),
2875 NC_("SC_OPCODE_STANDARD", "Mean"),
2876 NC_("SC_OPCODE_STANDARD", "The mean value used for moving."),
2877 NC_("SC_OPCODE_STANDARD", "STDEV"),
2878 NC_("SC_OPCODE_STANDARD", "The standard deviation used for scaling.")
2881 // -=*# Resource for function PERMUT #*=-
2882 const char* SC_OPCODE_PERMUT_ARY[] =
2884 NC_("SC_OPCODE_PERMUT", "Returns the number of permutations for a given number of elements without repetition."),
2885 NC_("SC_OPCODE_PERMUT", "Count 1"),
2886 NC_("SC_OPCODE_PERMUT", "The total number of elements."),
2887 NC_("SC_OPCODE_PERMUT", "Count 2"),
2888 NC_("SC_OPCODE_PERMUT", "The selection number taken from the elements.")
2891 // -=*# Resource for function PERMUTATIONA #*=-
2892 const char* SC_OPCODE_PERMUTATION_A_ARY[] =
2894 NC_("SC_OPCODE_PERMUTATION_A", "Returns the number of permutations for a given number of objects (repetition allowed)."),
2895 NC_("SC_OPCODE_PERMUTATION_A", "Count 1"),
2896 NC_("SC_OPCODE_PERMUTATION_A", "The total number of elements."),
2897 NC_("SC_OPCODE_PERMUTATION_A", "Count 2"),
2898 NC_("SC_OPCODE_PERMUTATION_A", "The selection number taken from the elements.")
2901 // -=*# Resource for function CONFIDENCE #*=-
2902 const char* SC_OPCODE_CONFIDENCE_ARY[] =
2904 NC_("SC_OPCODE_CONFIDENCE", "Returns a (1-alpha) confidence interval for a normal distribution."),
2905 NC_("SC_OPCODE_CONFIDENCE", "Alpha"),
2906 NC_("SC_OPCODE_CONFIDENCE", "The level of the confidence interval."),
2907 NC_("SC_OPCODE_CONFIDENCE", "STDEV"),
2908 NC_("SC_OPCODE_CONFIDENCE", "The standard deviation of the population."),
2909 NC_("SC_OPCODE_CONFIDENCE", "Size"),
2910 NC_("SC_OPCODE_CONFIDENCE", "The size of the population.")
2913 // -=*# Resource for function CONFIDENCE.NORM #*=-
2914 const char* SC_OPCODE_CONFIDENCE_N_ARY[] =
2916 NC_("SC_OPCODE_CONFIDENCE_N", "Returns a (1-alpha) confidence interval for a normal distribution."),
2917 NC_("SC_OPCODE_CONFIDENCE_N", "Alpha"),
2918 NC_("SC_OPCODE_CONFIDENCE_N", "The level of the confidence interval."),
2919 NC_("SC_OPCODE_CONFIDENCE_N", "STDEV"),
2920 NC_("SC_OPCODE_CONFIDENCE_N", "The standard deviation of the population."),
2921 NC_("SC_OPCODE_CONFIDENCE_N", "Size"),
2922 NC_("SC_OPCODE_CONFIDENCE_N", "The size of the population.")
2925 // -=*# Resource for function CONFIDENCE.T #*=-
2926 const char* SC_OPCODE_CONFIDENCE_T_ARY[] =
2928 NC_("SC_OPCODE_CONFIDENCE_T", "Returns a (1-alpha) confidence interval for a Student's t distribution."),
2929 NC_("SC_OPCODE_CONFIDENCE_T", "Alpha"),
2930 NC_("SC_OPCODE_CONFIDENCE_T", "The level of the confidence interval."),
2931 NC_("SC_OPCODE_CONFIDENCE_T", "STDEV"),
2932 NC_("SC_OPCODE_CONFIDENCE_T", "The standard deviation of the population."),
2933 NC_("SC_OPCODE_CONFIDENCE_T", "Size"),
2934 NC_("SC_OPCODE_CONFIDENCE_T", "The size of the population.")
2937 // -=*# Resource for function ZTEST #*=-
2938 const char* SC_OPCODE_Z_TEST_ARY[] =
2940 NC_("SC_OPCODE_Z_TEST", "Calculates the probability of observing a z-statistic greater than the one computed based on a sample."),
2941 NC_("SC_OPCODE_Z_TEST", "Data"),
2942 NC_("SC_OPCODE_Z_TEST", "The given sample, drawn from a normally distributed population."),
2943 NC_("SC_OPCODE_Z_TEST", "mu"),
2944 NC_("SC_OPCODE_Z_TEST", "The known mean of the population."),
2945 NC_("SC_OPCODE_Z_TEST", "sigma"),
2946 NC_("SC_OPCODE_Z_TEST", "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used.")
2949 // -=*# Resource for function Z.TEST #*=-
2950 const char* SC_OPCODE_Z_TEST_MS_ARY[] =
2952 NC_("SC_OPCODE_Z_TEST_MS", "Calculates the probability of observing a z-statistic greater than the one computed based on a sample."),
2953 NC_("SC_OPCODE_Z_TEST_MS", "Data"),
2954 NC_("SC_OPCODE_Z_TEST_MS", "The given sample, drawn from a normally distributed population."),
2955 NC_("SC_OPCODE_Z_TEST_MS", "mu"),
2956 NC_("SC_OPCODE_Z_TEST_MS", "The known mean of the population."),
2957 NC_("SC_OPCODE_Z_TEST_MS", "sigma"),
2958 NC_("SC_OPCODE_Z_TEST_MS", "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used.")
2961 // -=*# Resource for function CHITEST #*=-
2962 const char* SC_OPCODE_CHI_TEST_ARY[] =
2964 NC_("SC_OPCODE_CHI_TEST", "Returns the chi square independence test."),
2965 NC_("SC_OPCODE_CHI_TEST", "Data B"),
2966 NC_("SC_OPCODE_CHI_TEST", "The observed data array."),
2967 NC_("SC_OPCODE_CHI_TEST", "Data E"),
2968 NC_("SC_OPCODE_CHI_TEST", "The expected data array.")
2971 // -=*# Resource for function CHISQ.TEST #*=-
2972 const char* SC_OPCODE_CHI_TEST_MS_ARY[] =
2974 NC_("SC_OPCODE_CHI_TEST_MS", "Returns the chi square independence test."),
2975 NC_("SC_OPCODE_CHI_TEST_MS", "Data B"),
2976 NC_("SC_OPCODE_CHI_TEST_MS", "The observed data array."),
2977 NC_("SC_OPCODE_CHI_TEST_MS", "Data E"),
2978 NC_("SC_OPCODE_CHI_TEST_MS", "The expected data array.")
2981 // -=*# Resource for function FTEST #*=-
2982 const char* SC_OPCODE_F_TEST_ARY[] =
2984 NC_("SC_OPCODE_F_TEST", "Calculates the F test."),
2985 NC_("SC_OPCODE_F_TEST", "Data 1"),
2986 NC_("SC_OPCODE_F_TEST", "The first record array."),
2987 NC_("SC_OPCODE_F_TEST", "Data 2"),
2988 NC_("SC_OPCODE_F_TEST", "The second record array.")
2991 // -=*# Resource for function F.TEST #*=-
2992 const char* SC_OPCODE_F_TEST_MS_ARY[] =
2994 NC_("SC_OPCODE_F_TEST_MS", "Calculates the F test."),
2995 NC_("SC_OPCODE_F_TEST_MS", "Data 1"),
2996 NC_("SC_OPCODE_F_TEST_MS", "The first record array."),
2997 NC_("SC_OPCODE_F_TEST_MS", "Data 2"),
2998 NC_("SC_OPCODE_F_TEST_MS", "The second record array.")
3001 // -=*# Resource for function TTEST #*=-
3002 const char* SC_OPCODE_T_TEST_ARY[] =
3004 NC_("SC_OPCODE_T_TEST", "Calculates the T test."),
3005 NC_("SC_OPCODE_T_TEST", "Data 1"),
3006 NC_("SC_OPCODE_T_TEST", "The first record array."),
3007 NC_("SC_OPCODE_T_TEST", "Data 2"),
3008 NC_("SC_OPCODE_T_TEST", "The second record array."),
3009 NC_("SC_OPCODE_T_TEST", "Mode"),
3010 NC_("SC_OPCODE_T_TEST", "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"),
3011 NC_("SC_OPCODE_T_TEST", "Type"),
3012 NC_("SC_OPCODE_T_TEST", "The type of the T test.")
3015 // -=*# Resource for function T.TEST #*=-
3016 const char* SC_OPCODE_T_TEST_MS_ARY[] =
3018 NC_("SC_OPCODE_T_TEST_MS", "Calculates the T test."),
3019 NC_("SC_OPCODE_T_TEST_MS", "Data 1"),
3020 NC_("SC_OPCODE_T_TEST_MS", "The first record array."),
3021 NC_("SC_OPCODE_T_TEST_MS", "Data 2"),
3022 NC_("SC_OPCODE_T_TEST_MS", "The second record array."),
3023 NC_("SC_OPCODE_T_TEST_MS", "Mode"),
3024 NC_("SC_OPCODE_T_TEST_MS", "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"),
3025 NC_("SC_OPCODE_T_TEST_MS", "Type"),
3026 NC_("SC_OPCODE_T_TEST_MS", "The type of the T test.")
3029 // -=*# Resource for function RSQ #*=-
3030 const char* SC_OPCODE_RSQ_ARY[] =
3032 NC_("SC_OPCODE_RSQ", "Returns the square of the Pearson product moment correlation coefficient."),
3033 NC_("SC_OPCODE_RSQ", "Data Y"),
3034 NC_("SC_OPCODE_RSQ", "The Y data array."),
3035 NC_("SC_OPCODE_RSQ", "Data X"),
3036 NC_("SC_OPCODE_RSQ", "The X data array.")
3039 // -=*# Resource for function INTERCEPT #*=-
3040 const char* SC_OPCODE_INTERCEPT_ARY[] =
3042 NC_("SC_OPCODE_INTERCEPT", "Returns the intercept of the linear regression line and the Y axis."),
3043 NC_("SC_OPCODE_INTERCEPT", "Data Y"),
3044 NC_("SC_OPCODE_INTERCEPT", "The Y data array."),
3045 NC_("SC_OPCODE_INTERCEPT", "Data X"),
3046 NC_("SC_OPCODE_INTERCEPT", "The X data array.")
3049 // -=*# Resource for function SLOPE #*=-
3050 const char* SC_OPCODE_SLOPE_ARY[] =
3052 NC_("SC_OPCODE_SLOPE", "Returns the slope of the linear regression line."),
3053 NC_("SC_OPCODE_SLOPE", "Data Y"),
3054 NC_("SC_OPCODE_SLOPE", "The Y data array."),
3055 NC_("SC_OPCODE_SLOPE", "Data X"),
3056 NC_("SC_OPCODE_SLOPE", "The X data array.")
3059 // -=*# Resource for function STEYX #*=-
3060 const char* SC_OPCODE_STEYX_ARY[] =
3062 NC_("SC_OPCODE_STEYX", "Returns the standard error of the linear regression."),
3063 NC_("SC_OPCODE_STEYX", "Data Y"),
3064 NC_("SC_OPCODE_STEYX", "The Y data array."),
3065 NC_("SC_OPCODE_STEYX", "Data X"),
3066 NC_("SC_OPCODE_STEYX", "The X data array.")
3069 // -=*# Resource for function PEARSON #*=-
3070 const char* SC_OPCODE_PEARSON_ARY[] =
3072 NC_("SC_OPCODE_PEARSON", "Returns the Pearson product moment correlation coefficient."),
3073 NC_("SC_OPCODE_PEARSON", "Data 1"),
3074 NC_("SC_OPCODE_PEARSON", "The first record array."),
3075 NC_("SC_OPCODE_PEARSON", "Data 2"),
3076 NC_("SC_OPCODE_PEARSON", "The second record array.")
3079 // -=*# Resource for function CORREL #*=-
3080 const char* SC_OPCODE_CORREL_ARY[] =
3082 NC_("SC_OPCODE_CORREL", "Returns the correlation coefficient."),
3083 NC_("SC_OPCODE_CORREL", "Data 1"),
3084 NC_("SC_OPCODE_CORREL", "The first record array."),
3085 NC_("SC_OPCODE_CORREL", "Data 2"),
3086 NC_("SC_OPCODE_CORREL", "The second record array.")
3089 // -=*# Resource for function COVAR #*=-
3090 const char* SC_OPCODE_COVAR_ARY[] =
3092 NC_("SC_OPCODE_COVAR", "Calculates the population covariance."),
3093 NC_("SC_OPCODE_COVAR", "Data 1"),
3094 NC_("SC_OPCODE_COVAR", "The first record array."),
3095 NC_("SC_OPCODE_COVAR", "Data 2"),
3096 NC_("SC_OPCODE_COVAR", "The second record array.")
3099 // -=*# Resource for function COVARIANCE.P #*=-
3100 const char* SC_OPCODE_COVARIANCE_P_ARY[] =
3102 NC_("SC_OPCODE_COVARIANCE_P", "Calculates the population covariance."),
3103 NC_("SC_OPCODE_COVARIANCE_P", "Data 1"),
3104 NC_("SC_OPCODE_COVARIANCE_P", "The first record array."),
3105 NC_("SC_OPCODE_COVARIANCE_P", "Data 2"),
3106 NC_("SC_OPCODE_COVARIANCE_P", "The second record array.")
3109 // -=*# Resource for function COVARIANCE.S #*=-
3110 const char* SC_OPCODE_COVARIANCE_S_ARY[] =
3112 NC_("SC_OPCODE_COVARIANCE_S", "Calculates the sample covariance."),
3113 NC_("SC_OPCODE_COVARIANCE_S", "Data 1"),
3114 NC_("SC_OPCODE_COVARIANCE_S", "The first record array."),
3115 NC_("SC_OPCODE_COVARIANCE_S", "Data 2"),
3116 NC_("SC_OPCODE_COVARIANCE_S", "The second record array.")
3119 // -=*# Resource for function FORECAST #*=-
3120 const char* SC_OPCODE_FORECAST_ARY[] =
3122 NC_("SC_OPCODE_FORECAST", "Returns a value along a linear regression"),
3123 NC_("SC_OPCODE_FORECAST", "Value"),
3124 NC_("SC_OPCODE_FORECAST", "The X value for which the Y value on the regression linear is to be calculated."),
3125 NC_("SC_OPCODE_FORECAST", "Data Y"),
3126 NC_("SC_OPCODE_FORECAST", "The Y data array."),
3127 NC_("SC_OPCODE_FORECAST", "Data X"),
3128 NC_("SC_OPCODE_FORECAST", "The X data array.")
3131 // -=*# Resource for function FORECAST.ETS #*=-
3132 const char* SC_OPCODE_FORECAST_ETS_ADD_ARY[] =
3134 NC_("SC_OPCODE_FORECAST_ETS_ADD", "Calculates future value(s) using additive Exponential Smoothing algorithm."),
3135 NC_("SC_OPCODE_FORECAST_ETS_ADD", "Target"),
3136 NC_("SC_OPCODE_FORECAST_ETS_ADD", "The date (array) for which you want to predict a value."),
3137 NC_("SC_OPCODE_FORECAST_ETS_ADD", "Values"),
3138 NC_("SC_OPCODE_FORECAST_ETS_ADD", "The data array from which you want to forecast."),
3139 NC_("SC_OPCODE_FORECAST_ETS_ADD", "Timeline"),
3140 NC_("SC_OPCODE_FORECAST_ETS_ADD", "The date or numeric array; a consistent step between values is needed."),
3141 NC_("SC_OPCODE_FORECAST_ETS_ADD", "Period length"),
3142 NC_("SC_OPCODE_FORECAST_ETS_ADD", "Number of Samples in Period (default 1); length of the seasonal pattern."),
3143 NC_("SC_OPCODE_FORECAST_ETS_ADD", "Data completion"),
3144 NC_("SC_OPCODE_FORECAST_ETS_ADD", "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."),
3145 NC_("SC_OPCODE_FORECAST_ETS_ADD", "Aggregation"),
3146 NC_("SC_OPCODE_FORECAST_ETS_ADD", "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values.")
3149 // -=*# Resource for function FORECAST.ETS.MULT #*=-
3150 const char* SC_OPCODE_FORECAST_ETS_MUL_ARY[] =
3152 NC_("SC_OPCODE_FORECAST_ETS_MUL", "Calculates future value(s) using multiplicative Exponential Smoothing algorithm."),
3153 NC_("SC_OPCODE_FORECAST_ETS_MUL", "Target"),
3154 NC_("SC_OPCODE_FORECAST_ETS_MUL", "The date (array) for which you want to predict a value."),
3155 NC_("SC_OPCODE_FORECAST_ETS_MUL", "Values"),
3156 NC_("SC_OPCODE_FORECAST_ETS_MUL", "The data array from which you want to forecast."),
3157 NC_("SC_OPCODE_FORECAST_ETS_MUL", "Timeline"),
3158 NC_("SC_OPCODE_FORECAST_ETS_MUL", "The date or numeric array; a consistent step between values is needed."),
3159 NC_("SC_OPCODE_FORECAST_ETS_MUL", "Period length"),
3160 NC_("SC_OPCODE_FORECAST_ETS_MUL", "Number of Samples in Period (default 1); length of the seasonal pattern."),
3161 NC_("SC_OPCODE_FORECAST_ETS_MUL", "Data completion"),
3162 NC_("SC_OPCODE_FORECAST_ETS_MUL", "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."),
3163 NC_("SC_OPCODE_FORECAST_ETS_MUL", "Aggregation"),
3164 NC_("SC_OPCODE_FORECAST_ETS_MUL", "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values.")
3167 // -=*# Resource for function FORECAST.ETS.CONFINT #*=-
3168 const char* SC_OPCODE_FORECAST_ETS_PIA_ARY[] =
3170 NC_("SC_OPCODE_FORECAST_ETS_PIA", "Returns a prediction interval at the specified target value(s) for additive Exponential Smoothing method"),
3171 NC_("SC_OPCODE_FORECAST_ETS_PIA", "Target"),
3172 NC_("SC_OPCODE_FORECAST_ETS_PIA", "The date (array) for which you want to predict a value."),
3173 NC_("SC_OPCODE_FORECAST_ETS_PIA", "Values"),
3174 NC_("SC_OPCODE_FORECAST_ETS_PIA", "The data array from which you want to forecast."),
3175 NC_("SC_OPCODE_FORECAST_ETS_PIA", "Timeline"),
3176 NC_("SC_OPCODE_FORECAST_ETS_PIA", "The date or numeric array; a consistent step between values is needed."),
3177 NC_("SC_OPCODE_FORECAST_ETS_PIA", "Confidence level"),
3178 NC_("SC_OPCODE_FORECAST_ETS_PIA", "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval."),
3179 NC_("SC_OPCODE_FORECAST_ETS_PIA", "Period length"),
3180 NC_("SC_OPCODE_FORECAST_ETS_PIA", "Number of Samples in Period (default 1); length of the seasonal pattern."),
3181 NC_("SC_OPCODE_FORECAST_ETS_PIA", "Data completion"),
3182 NC_("SC_OPCODE_FORECAST_ETS_PIA", "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."),
3183 NC_("SC_OPCODE_FORECAST_ETS_PIA", "Aggregation"),
3184 NC_("SC_OPCODE_FORECAST_ETS_PIA", "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values.")
3187 // -=*# Resource for function FORECAST.ETS.PI.MULT #*=-
3188 const char* SC_OPCODE_FORECAST_ETS_PIM_ARY[] =
3190 NC_("SC_OPCODE_FORECAST_ETS_PIM", "Returns a prediction interval at the specified target value(s) for multiplicative Exponential Smoothing method"),
3191 NC_("SC_OPCODE_FORECAST_ETS_PIM", "Target"),
3192 NC_("SC_OPCODE_FORECAST_ETS_PIM", "The date (array) for which you want to predict a value."),
3193 NC_("SC_OPCODE_FORECAST_ETS_PIM", "Values"),
3194 NC_("SC_OPCODE_FORECAST_ETS_PIM", "The data array from which you want to forecast."),
3195 NC_("SC_OPCODE_FORECAST_ETS_PIM", "Timeline"),
3196 NC_("SC_OPCODE_FORECAST_ETS_PIM", "The date or numeric array; a consistent step between values is needed."),
3197 NC_("SC_OPCODE_FORECAST_ETS_PIM", "Confidence level"),
3198 NC_("SC_OPCODE_FORECAST_ETS_PIM", "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval."),
3199 NC_("SC_OPCODE_FORECAST_ETS_PIM", "Period length"),
3200 NC_("SC_OPCODE_FORECAST_ETS_PIM", "Number of Samples in Period (default 1); length of the seasonal pattern."),
3201 NC_("SC_OPCODE_FORECAST_ETS_PIM", "Data completion"),
3202 NC_("SC_OPCODE_FORECAST_ETS_PIM", "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."),
3203 NC_("SC_OPCODE_FORECAST_ETS_PIM", "Aggregation"),
3204 NC_("SC_OPCODE_FORECAST_ETS_PIM", "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values.")
3207 // -=*# Resource for function FORECAST.ETS.SEASONALITY #*=-
3208 const char* SC_OPCODE_FORECAST_ETS_SEA_ARY[] =
3210 NC_("SC_OPCODE_FORECAST_ETS_SEA", "Calculates the number of samples in period (season) using additive Exponential Triple Smoothing algorithm."),
3211 NC_("SC_OPCODE_FORECAST_ETS_SEA", "Values"),
3212 NC_("SC_OPCODE_FORECAST_ETS_SEA", "The data array from which you want to forecast."),
3213 NC_("SC_OPCODE_FORECAST_ETS_SEA", "Timeline"),
3214 NC_("SC_OPCODE_FORECAST_ETS_SEA", "The date or numeric array; a consistent step between values is needed."),
3215 NC_("SC_OPCODE_FORECAST_ETS_SEA", "Data completion"),
3216 NC_("SC_OPCODE_FORECAST_ETS_SEA", "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."),
3217 NC_("SC_OPCODE_FORECAST_ETS_SEA", "Aggregation"),
3218 NC_("SC_OPCODE_FORECAST_ETS_SEA", "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values.")
3221 // -=*# Resource for function FORECAST.ETS.STAT #*=-
3222 const char* SC_OPCODE_FORECAST_ETS_STA_ARY[] =
3224 NC_("SC_OPCODE_FORECAST_ETS_STA", "Returns statistical value(s) using additive Exponential Smoothing algorithm."),
3225 NC_("SC_OPCODE_FORECAST_ETS_STA", "Values"),
3226 NC_("SC_OPCODE_FORECAST_ETS_STA", "The data array from which you want to forecast."),
3227 NC_("SC_OPCODE_FORECAST_ETS_STA", "Timeline"),
3228 NC_("SC_OPCODE_FORECAST_ETS_STA", "The date or numeric array; a consistent step between values is needed."),
3229 NC_("SC_OPCODE_FORECAST_ETS_STA", "Statistic type"),
3230 NC_("SC_OPCODE_FORECAST_ETS_STA", "Value (1-9) or array of values, indicating which statistic will be returned for the calculated forecast"),
3231 NC_("SC_OPCODE_FORECAST_ETS_STA", "Period length"),
3232 NC_("SC_OPCODE_FORECAST_ETS_STA", "Number of Samples in Period (default 1); length of the seasonal pattern."),
3233 NC_("SC_OPCODE_FORECAST_ETS_STA", "Data completion"),
3234 NC_("SC_OPCODE_FORECAST_ETS_STA", "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."),
3235 NC_("SC_OPCODE_FORECAST_ETS_STA", "Aggregation"),
3236 NC_("SC_OPCODE_FORECAST_ETS_STA", "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values.")
3239 // -=*# Resource for function FORECAST.ETS.STAT.MULT #*=-
3240 const char* SC_OPCODE_FORECAST_ETS_STM_ARY[] =
3242 NC_("SC_OPCODE_FORECAST_ETS_STM", "Returns statistical value(s) using multiplicative Exponential Smoothing algorithm."),
3243 NC_("SC_OPCODE_FORECAST_ETS_STM", "Values"),
3244 NC_("SC_OPCODE_FORECAST_ETS_STM", "The data array from which you want to forecast."),
3245 NC_("SC_OPCODE_FORECAST_ETS_STM", "Timeline"),
3246 NC_("SC_OPCODE_FORECAST_ETS_STM", "The date or numeric array; a consistent step between values is needed."),
3247 NC_("SC_OPCODE_FORECAST_ETS_STM", "Statistic type"),
3248 NC_("SC_OPCODE_FORECAST_ETS_STM", "Value (1-9) or array of values, indicating which statistic will be returned for the calculated forecast"),
3249 NC_("SC_OPCODE_FORECAST_ETS_STM", "Period length"),
3250 NC_("SC_OPCODE_FORECAST_ETS_STM", "Number of samples in period (default 1); length of the seasonal pattern."),
3251 NC_("SC_OPCODE_FORECAST_ETS_STM", "Data completion"),
3252 NC_("SC_OPCODE_FORECAST_ETS_STM", "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."),
3253 NC_("SC_OPCODE_FORECAST_ETS_STM", "Aggregation"),
3254 NC_("SC_OPCODE_FORECAST_ETS_STM", "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values.")
3257 // -=*# Resource for function FORECAST.LINEAR #*=-
3258 const char* SC_OPCODE_FORECAST_LIN_ARY[] =
3260 NC_("SC_OPCODE_FORECAST_LIN", "Returns a value along a linear regression"),
3261 NC_("SC_OPCODE_FORECAST_LIN", "Value"),
3262 NC_("SC_OPCODE_FORECAST_LIN", "The X value for which the Y value on the regression linear is to be calculated."),
3263 NC_("SC_OPCODE_FORECAST_LIN", "Data Y"),
3264 NC_("SC_OPCODE_FORECAST_LIN", "The Y data array."),
3265 NC_("SC_OPCODE_FORECAST_LIN", "Data X"),
3266 NC_("SC_OPCODE_FORECAST_LIN", "The X data array.")
3269 // -=*# Resource for function ADDRESS #*=-
3270 const char* SC_OPCODE_ADDRESS_ARY[] =
3272 NC_("SC_OPCODE_ADDRESS", "Returns the reference to a cell as text."),
3273 NC_("SC_OPCODE_ADDRESS", "Row"),
3274 NC_("SC_OPCODE_ADDRESS", "The row number of the cell."),
3275 NC_("SC_OPCODE_ADDRESS", "Column"),
3276 NC_("SC_OPCODE_ADDRESS", "The column number of the cell."),
3277 NC_("SC_OPCODE_ADDRESS", "ABS"),
3278 NC_("SC_OPCODE_ADDRESS", "Specifies whether absolute or relative referencing is to be used."),
3279 NC_("SC_OPCODE_ADDRESS", "A1"),
3280 NC_("SC_OPCODE_ADDRESS", "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style."),
3281 NC_("SC_OPCODE_ADDRESS", "Sheet"),
3282 NC_("SC_OPCODE_ADDRESS", "The spreadsheet name of the cell reference.")
3285 // -=*# Resource for function AREAS #*=-
3286 const char* SC_OPCODE_AREAS_ARY[] =
3288 NC_("SC_OPCODE_AREAS", "Returns the number of individual ranges that belong to a (multiple) range."),
3289 NC_("SC_OPCODE_AREAS", "Reference"),
3290 NC_("SC_OPCODE_AREAS", "The reference to a (multiple) range.")
3293 // -=*# Resource for function CHOOSE #*=-
3294 const char* SC_OPCODE_CHOOSE_ARY[] =
3296 NC_("SC_OPCODE_CHOOSE", "Selects a value from a list of up to 30 value arguments."),
3297 NC_("SC_OPCODE_CHOOSE", "Index"),
3298 NC_("SC_OPCODE_CHOOSE", "The index of the value (1..30) selected."),
3299 NC_("SC_OPCODE_CHOOSE", "Value "),
3300 NC_("SC_OPCODE_CHOOSE", "Value 1, value 2,... The list of arguments from which a value is chosen.")
3303 // -=*# Resource for function COLUMNS #*=-
3304 const char* SC_OPCODE_COLUMN_ARY[] =
3306 NC_("SC_OPCODE_COLUMN", "Returns the internal column number of a reference."),
3307 NC_("SC_OPCODE_COLUMN", "Reference"),
3308 NC_("SC_OPCODE_COLUMN", "The reference to a cell or a range.")
3311 // -=*# Resource for function ROW #*=-
3312 const char* SC_OPCODE_ROW_ARY[] =
3314 NC_("SC_OPCODE_ROW", "Defines the internal row number of a reference."),
3315 NC_("SC_OPCODE_ROW", "Reference"),
3316 NC_("SC_OPCODE_ROW", "The reference to a cell or a range.")
3319 // -=*# Resource for function SHEET #*=-
3320 const char* SC_OPCODE_SHEET_ARY[] =
3322 NC_("SC_OPCODE_SHEET", "Returns the internal sheet number of a reference or a string."),
3323 NC_("SC_OPCODE_SHEET", "Reference"),
3324 NC_("SC_OPCODE_SHEET", "The reference to a cell or a range or the character string of a sheet name.")
3327 // -=*# Resource for function COLUMNS #*=-
3328 const char* SC_OPCODE_COLUMNS_ARY[] =
3330 NC_("SC_OPCODE_COLUMNS", "Returns the number of columns in an array or reference."),
3331 NC_("SC_OPCODE_COLUMNS", "Array"),
3332 NC_("SC_OPCODE_COLUMNS", "The array (reference) for which the number of columns is to be determined.")
3335 // -=*# Resource for function ROWS #*=-
3336 const char* SC_OPCODE_ROWS_ARY[] =
3338 NC_("SC_OPCODE_ROWS", "Returns the number of rows in a reference or array."),
3339 NC_("SC_OPCODE_ROWS", "Array"),
3340 NC_("SC_OPCODE_ROWS", "The array (reference) for which the number of rows is to be determined.")
3343 // -=*# Resource for function SHEETS #*=-
3344 const char* SC_OPCODE_SHEETS_ARY[] =
3346 NC_("SC_OPCODE_SHEETS", "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."),
3347 NC_("SC_OPCODE_SHEETS", "Reference"),
3348 NC_("SC_OPCODE_SHEETS", "The reference to a cell or a range.")
3351 // -=*# Resource for function HLOOKUP #*=-
3352 const char* SC_OPCODE_H_LOOKUP_ARY[] =
3354 NC_("SC_OPCODE_H_LOOKUP", "Horizontal search and reference to the cells located below."),
3355 NC_("SC_OPCODE_H_LOOKUP", "Search criterion"),
3356 NC_("SC_OPCODE_H_LOOKUP", "The value to be found in the first row."),
3357 NC_("SC_OPCODE_H_LOOKUP", "Array"),
3358 NC_("SC_OPCODE_H_LOOKUP", "The array or the range for the reference."),
3359 NC_("SC_OPCODE_H_LOOKUP", "Index"),
3360 NC_("SC_OPCODE_H_LOOKUP", "The row index in the array."),
3361 NC_("SC_OPCODE_H_LOOKUP", "Sorted range lookup"),
3362 NC_("SC_OPCODE_H_LOOKUP", "If the value is TRUE or not given, the search row of the array represents a series of ranges, and must be sorted in ascending order.")
3365 // -=*# Resource for function VLOOKUP #*=-
3366 const char* SC_OPCODE_V_LOOKUP_ARY[] =
3368 NC_("SC_OPCODE_V_LOOKUP", "Vertical search and reference to indicated cells."),
3369 NC_("SC_OPCODE_V_LOOKUP", "Search criterion"),
3370 NC_("SC_OPCODE_V_LOOKUP", "The value to be found in the first column."),
3371 NC_("SC_OPCODE_V_LOOKUP", "Array"),
3372 NC_("SC_OPCODE_V_LOOKUP", "The array or range for referencing."),
3373 NC_("SC_OPCODE_V_LOOKUP", "Index"),
3374 NC_("SC_OPCODE_V_LOOKUP", "Column index number in the array."),
3375 NC_("SC_OPCODE_V_LOOKUP", "Sorted range lookup"),
3376 NC_("SC_OPCODE_V_LOOKUP", "If the value is TRUE or not given, the search column of the array represents a series of ranges, and must be sorted in ascending order.")
3379 // -=*# Resource for function INDEX #*=-
3380 const char* SC_OPCODE_INDEX_ARY[] =
3382 NC_("SC_OPCODE_INDEX", "Returns a reference to a cell from a defined range."),
3383 NC_("SC_OPCODE_INDEX", "Reference"),
3384 NC_("SC_OPCODE_INDEX", "The reference to a (multiple) range."),
3385 NC_("SC_OPCODE_INDEX", "Row"),
3386 NC_("SC_OPCODE_INDEX", "The row in the range."),
3387 NC_("SC_OPCODE_INDEX", "Column"),
3388 NC_("SC_OPCODE_INDEX", "The column in the range."),
3389 NC_("SC_OPCODE_INDEX", "Range"),
3390 NC_("SC_OPCODE_INDEX", "The index of the subrange if referring to a multiple range.")
3393 // -=*# Resource for function INDIRECT #*=-
3394 const char* SC_OPCODE_INDIRECT_ARY[] =
3396 NC_("SC_OPCODE_INDIRECT", "Returns the contents of a cell that is referenced in text form."),
3397 NC_("SC_OPCODE_INDIRECT", "Reference"),
3398 NC_("SC_OPCODE_INDIRECT", "The cell whose contents are to be evaluated is to be referenced in text form (e.g. \"A1\")."),
3399 NC_("SC_OPCODE_INDIRECT", "A1"),
3400 NC_("SC_OPCODE_INDIRECT", "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style.")
3403 // -=*# Resource for function LOOKUP #*=-
3404 const char* SC_OPCODE_LOOKUP_ARY[] =
3406 NC_("SC_OPCODE_LOOKUP", "Determines a value in a vector by comparison to values in another vector."),
3407 NC_("SC_OPCODE_LOOKUP", "Search criterion"),
3408 NC_("SC_OPCODE_LOOKUP", "The value to be used for comparison."),
3409 NC_("SC_OPCODE_LOOKUP", "Search vector"),
3410 NC_("SC_OPCODE_LOOKUP", "The vector (row or column) in which to search."),
3411 NC_("SC_OPCODE_LOOKUP", "Result vector"),
3412 NC_("SC_OPCODE_LOOKUP", "The vector (row or range) from which the value is to be determined.")
3415 // -=*# Resource for function MATCH #*=-
3416 const char* SC_OPCODE_MATCH_ARY[] =
3418 NC_("SC_OPCODE_MATCH", "Defines a position in an array after comparing values."),
3419 NC_("SC_OPCODE_MATCH", "Search criterion"),
3420 NC_("SC_OPCODE_MATCH", "The value to be used for comparison."),
3421 NC_("SC_OPCODE_MATCH", "Lookup array"),
3422 NC_("SC_OPCODE_MATCH", "The array (range) in which the search is made."),
3423 NC_("SC_OPCODE_MATCH", "Type"),
3424 NC_("SC_OPCODE_MATCH", "Type can take the value 1 (first column array ascending), 0 (exact match or wildcard or regular expression match) or -1 (first column array descending) and determines the criteria to be used for comparison purposes.")
3427 // -=*# Resource for function OFFSET #*=-
3428 const char* SC_OPCODE_OFFSET_ARY[] =
3430 NC_("SC_OPCODE_OFFSET", "Returns a reference which has been moved in relation to the starting point."),
3431 NC_("SC_OPCODE_OFFSET", "Reference"),
3432 NC_("SC_OPCODE_OFFSET", "The reference (cell) from which to base the movement."),
3433 NC_("SC_OPCODE_OFFSET", "Rows"),
3434 NC_("SC_OPCODE_OFFSET", "The number of rows to be moved either up or down."),
3435 NC_("SC_OPCODE_OFFSET", "Columns"),
3436 NC_("SC_OPCODE_OFFSET", "The number of columns that are to be moved to the left or to the right."),
3437 NC_("SC_OPCODE_OFFSET", "Height"),
3438 NC_("SC_OPCODE_OFFSET", "The number of rows of the moved reference."),
3439 NC_("SC_OPCODE_OFFSET", "Width"),
3440 NC_("SC_OPCODE_OFFSET", "The number of columns in the moved reference.")
3443 // -=*# Resource for function ERRORTYPE #*=-
3444 const char* SC_OPCODE_ERROR_TYPE_ARY[] =
3446 NC_("SC_OPCODE_ERROR_TYPE", "Returns a number corresponding to an error type"),
3447 NC_("SC_OPCODE_ERROR_TYPE", "Reference"),
3448 NC_("SC_OPCODE_ERROR_TYPE", "The reference (cell) in which the error occurred.")
3451 // -=*# Resource for function ERROR.TYPE #*=-
3452 const char* SC_OPCODE_ERROR_TYPE_ODF_ARY[] =
3454 NC_("SC_OPCODE_ERROR_TYPE_ODF", "Returns a number corresponding to one of the error values or #N/A if no error exists"),
3455 NC_("SC_OPCODE_ERROR_TYPE_ODF", "Expression"),
3456 NC_("SC_OPCODE_ERROR_TYPE_ODF", "The error value whose identifying number you want to find. Can be the actual error value or a reference to a cell that you want to test.")
3459 // -=*# Resource for function STYLE #*=-
3460 const char* SC_OPCODE_STYLE_ARY[] =
3462 NC_("SC_OPCODE_STYLE", "Applies a Style to the formula cell."),
3463 NC_("SC_OPCODE_STYLE", "Style"),
3464 NC_("SC_OPCODE_STYLE", "The name of the Style to be applied."),
3465 NC_("SC_OPCODE_STYLE", "Time"),
3466 NC_("SC_OPCODE_STYLE", "The time (in seconds) that the Style is to remain valid."),
3467 NC_("SC_OPCODE_STYLE", "Style 2"),
3468 NC_("SC_OPCODE_STYLE", "The style to be applied after time expires.")
3471 // -=*# Resource for function DDE #*=-
3472 const char* SC_OPCODE_DDE_ARY[] =
3474 NC_("SC_OPCODE_DDE", "Result of a DDE link."),
3475 NC_("SC_OPCODE_DDE", "Server"),
3476 NC_("SC_OPCODE_DDE", "The name of the server application."),
3477 NC_("SC_OPCODE_DDE", "Topic/file"),
3478 NC_("SC_OPCODE_DDE", "The topic or name of the file."),
3479 NC_("SC_OPCODE_DDE", "Item/range"),
3480 NC_("SC_OPCODE_DDE", "The item or range from which data is to be taken."),
3481 NC_("SC_OPCODE_DDE", "Mode"),
3482 NC_("SC_OPCODE_DDE", "Defines how data is to be converted to numbers.")
3485 // -=*# Resource for function HYPERLINK #*=-
3486 const char* SC_OPCODE_HYPERLINK_ARY[] =
3488 NC_("SC_OPCODE_HYPERLINK", "Construct a Hyperlink."),
3489 NC_("SC_OPCODE_HYPERLINK", "URL"),
3490 NC_("SC_OPCODE_HYPERLINK", "The clickable URL."),
3491 NC_("SC_OPCODE_HYPERLINK", "Cell text"),
3492 NC_("SC_OPCODE_HYPERLINK", "The cell text to be displayed.")
3495 // -=*# Resource for function GETPIVOTDATA #*=-
3496 const char* SC_OPCODE_GET_PIVOT_DATA_ARY[] =
3498 NC_("SC_OPCODE_GET_PIVOT_DATA", "Extracts value(s) from a pivot table."),
3499 NC_("SC_OPCODE_GET_PIVOT_DATA", "Data field"),
3500 NC_("SC_OPCODE_GET_PIVOT_DATA", "The name of the pivot table field to extract."),
3501 NC_("SC_OPCODE_GET_PIVOT_DATA", "Pivot table"),
3502 NC_("SC_OPCODE_GET_PIVOT_DATA", "A reference to a cell or range in the pivot table."),
3503 NC_("SC_OPCODE_GET_PIVOT_DATA", "Field name / item"),
3504 NC_("SC_OPCODE_GET_PIVOT_DATA", "Field name/value pair to filter the target data.")
3507 // -=*# Resource for function BAHTTEXT #*=-
3508 const char* SC_OPCODE_BAHTTEXT_ARY[] =
3510 NC_("SC_OPCODE_BAHTTEXT", "Converts a number to text (Baht)."),
3511 NC_("SC_OPCODE_BAHTTEXT", "Number"),
3512 NC_("SC_OPCODE_BAHTTEXT", "The number to convert.")
3515 // -=*# Resource for function JIS #*=-
3516 const char* SC_OPCODE_JIS_ARY[] =
3518 NC_("SC_OPCODE_JIS", "Converts half-width ASCII and katakana characters to full-width."),
3519 NC_("SC_OPCODE_JIS", "Text"),
3520 NC_("SC_OPCODE_JIS", "The text to convert.")
3523 // -=*# Resource for function ASC #*=-
3524 const char* SC_OPCODE_ASC_ARY[] =
3526 NC_("SC_OPCODE_ASC", "Converts full-width ASCII and katakana characters to half-width."),
3527 NC_("SC_OPCODE_ASC", "Text"),
3528 NC_("SC_OPCODE_ASC", "The text to convert.")
3531 // -=*# Resource for function CODE #*=-
3532 const char* SC_OPCODE_CODE_ARY[] =
3534 NC_("SC_OPCODE_CODE", "Returns a numeric code for the first character in a text string."),
3535 NC_("SC_OPCODE_CODE", "Text"),
3536 NC_("SC_OPCODE_CODE", "This is the text for which the code of the first character is to be found.")
3539 // -=*# Resource for function DOLLAR #*=-
3540 const char* SC_OPCODE_CURRENCY_ARY[] =
3542 NC_("SC_OPCODE_CURRENCY", "Converts a number to text in currency format."),
3543 NC_("SC_OPCODE_CURRENCY", "Value"),
3544 NC_("SC_OPCODE_CURRENCY", "Value is a number, a reference to a cell containing a number or a formula that results in a number."),
3545 NC_("SC_OPCODE_CURRENCY", "Decimals"),
3546 NC_("SC_OPCODE_CURRENCY", "Decimal places. Denotes the number of digits to the right of the decimal point.")
3549 // -=*# Resource for function CHAR #*=-
3550 const char* SC_OPCODE_CHAR_ARY[] =
3552 NC_("SC_OPCODE_CHAR", "Converts a code number into a character or letter."),
3553 NC_("SC_OPCODE_CHAR", "Number"),
3554 NC_("SC_OPCODE_CHAR", "The code value for the character.")
3557 // -=*# Resource for function CLEAN #*=-
3558 const char* SC_OPCODE_CLEAN_ARY[] =
3560 NC_("SC_OPCODE_CLEAN", "Removes all nonprintable characters from text."),
3561 NC_("SC_OPCODE_CLEAN", "Text"),
3562 NC_("SC_OPCODE_CLEAN", "The text from which nonprintable characters are to be removed.")
3565 // -=*# Resource for function CONCATENATE #*=-
3566 const char* SC_OPCODE_CONCAT_ARY[] =
3568 NC_("SC_OPCODE_CONCAT", "Combines several text items into one."),
3569 NC_("SC_OPCODE_CONCAT", "Text"),
3570 NC_("SC_OPCODE_CONCAT", "Text for the concatenation.")
3573 // -=*# Resource for function CONCAT #*=-
3574 const char* SC_OPCODE_CONCAT_MS_ARY[] =
3576 NC_("SC_OPCODE_CONCAT_MS", "Combines several text items into one, accepts cell ranges as arguments."),
3577 NC_("SC_OPCODE_CONCAT_MS", "Text"),
3578 NC_("SC_OPCODE_CONCAT_MS", "Text and/or cell ranges for the concatenation.")
3581 // -=*# Resource for function TEXTJOIN #*=-
3582 const char* SC_OPCODE_TEXTJOIN_MS_ARY[] =
3584 NC_("SC_OPCODE_TEXTJOIN_MS", "Combines several text items into one, accepts cell ranges as arguments. Uses delimiter between items."),
3585 NC_("SC_OPCODE_TEXTJOIN_MS", "Delimiter"),
3586 NC_("SC_OPCODE_TEXTJOIN_MS", "Text string to be used as delimiter."),
3587 NC_("SC_OPCODE_TEXTJOIN_MS", "Skip empty cells"),
3588 NC_("SC_OPCODE_TEXTJOIN_MS", "If TRUE, empty cells will be ignored."),
3589 NC_("SC_OPCODE_TEXTJOIN_MS", "Text"),
3590 NC_("SC_OPCODE_TEXTJOIN_MS", "Text and/or cell ranges for the concatenation.")
3593 // -=*# Resource for function IFS #*=-
3594 const char* SC_OPCODE_IFS_MS_ARY[] =
3596 NC_("SC_OPCODE_IFS_MS", "Checks 1 or more conditions and returns a value corresponding to the first true condition."),
3597 NC_("SC_OPCODE_IFS_MS", "Test"),
3598 NC_("SC_OPCODE_IFS_MS", "Any value or expression which can be either TRUE or FALSE."),
3599 NC_("SC_OPCODE_IFS_MS", "Result"),
3600 NC_("SC_OPCODE_IFS_MS", "The result of the function if test is TRUE.")
3603 // -=*# Resource for function SWITCH #*=-
3604 const char* SC_OPCODE_SWITCH_MS_ARY[] =
3606 NC_("SC_OPCODE_SWITCH_MS", "Checks 1 or more values and returns a result corresponding to the first value equal to the given expression."),
3607 NC_("SC_OPCODE_SWITCH_MS", "Expression"),
3608 NC_("SC_OPCODE_SWITCH_MS", "Value that will be compared against value1-valueN."),
3609 NC_("SC_OPCODE_SWITCH_MS", "Value"),
3610 NC_("SC_OPCODE_SWITCH_MS", "Value that will be compared against expression."),
3611 NC_("SC_OPCODE_SWITCH_MS", "Result"),
3612 NC_("SC_OPCODE_SWITCH_MS", "Value to return when corresponding value argument matches expression.")
3615 const char* SC_OPCODE_MINIFS_MS_ARY[] =
3617 NC_("SC_OPCODE_MINIFS_MS", "Returns the minimum value in a range that meet multiple criteria in multiple ranges."),
3618 NC_("SC_OPCODE_MINIFS_MS", "Min range"),
3619 NC_("SC_OPCODE_MINIFS_MS", "The range from which the minimum will be determined."),
3620 NC_("SC_OPCODE_MINIFS_MS", "Range "),
3621 NC_("SC_OPCODE_MINIFS_MS", "Range 1, range 2,... are the ranges to be evaluated by the criteria given."),
3622 NC_("SC_OPCODE_MINIFS_MS", "Criteria "),
3623 NC_("SC_OPCODE_MINIFS_MS", "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given.")
3626 const char* SC_OPCODE_MAXIFS_MS_ARY[] =
3628 NC_("SC_OPCODE_MAXIFS_MS", "Returns the maximum value in a range that meet multiple criteria in multiple ranges."),
3629 NC_("SC_OPCODE_MAXIFS_MS", "Max range"),
3630 NC_("SC_OPCODE_MAXIFS_MS", "The range from which the maximum will be determined."),
3631 NC_("SC_OPCODE_MAXIFS_MS", "Range "),
3632 NC_("SC_OPCODE_MAXIFS_MS", "Range 1, range 2,... are the ranges to be evaluated by the criteria given."),
3633 NC_("SC_OPCODE_MAXIFS_MS", "Criteria "),
3634 NC_("SC_OPCODE_MAXIFS_MS", "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given.")
3637 // -=*# Resource for function EXACT #*=-
3638 const char* SC_OPCODE_EXACT_ARY[] =
3640 NC_("SC_OPCODE_EXACT", "Specifies whether two texts are identical."),
3641 NC_("SC_OPCODE_EXACT", "Text 1"),
3642 NC_("SC_OPCODE_EXACT", "The first text to be used for comparing texts."),
3643 NC_("SC_OPCODE_EXACT", "Text 2"),
3644 NC_("SC_OPCODE_EXACT", "The second text for comparing texts.")
3647 // -=*# Resource for function FIND #*=-
3648 const char* SC_OPCODE_FIND_ARY[] =
3650 NC_("SC_OPCODE_FIND", "Looks for a string of text within another (case sensitive)"),
3651 NC_("SC_OPCODE_FIND", "Find text"),
3652 NC_("SC_OPCODE_FIND", "The text to be found."),
3653 NC_("SC_OPCODE_FIND", "Text"),
3654 NC_("SC_OPCODE_FIND", "The text in which a search is to be made."),
3655 NC_("SC_OPCODE_FIND", "Position"),
3656 NC_("SC_OPCODE_FIND", "The position in the text from which the search starts.")
3659 // -=*# Resource for function SEARCH #*=-
3660 const char* SC_OPCODE_SEARCH_ARY[] =
3662 NC_("SC_OPCODE_SEARCH", "Looks for one text value within another (not case-sensitive)."),
3663 NC_("SC_OPCODE_SEARCH", "Find text"),
3664 NC_("SC_OPCODE_SEARCH", "The text to be found."),
3665 NC_("SC_OPCODE_SEARCH", "Text"),
3666 NC_("SC_OPCODE_SEARCH", "The text in which a search is to be made."),
3667 NC_("SC_OPCODE_SEARCH", "Position"),
3668 NC_("SC_OPCODE_SEARCH", "The position in the text where the search is started.")
3671 // -=*# Resource for function TRIM #*=-
3672 const char* SC_OPCODE_TRIM_ARY[] =
3674 NC_("SC_OPCODE_TRIM", "Removes extra spaces from text."),
3675 NC_("SC_OPCODE_TRIM", "Text"),
3676 NC_("SC_OPCODE_TRIM", "The text in which extra spaces between words are to be deleted.")
3679 // -=*# Resource for function PROPER #*=-
3680 const char* SC_OPCODE_PROPER_ARY[] =
3682 NC_("SC_OPCODE_PROPER", "Capitalizes the first letter in all words."),
3683 NC_("SC_OPCODE_PROPER", "Text"),
3684 NC_("SC_OPCODE_PROPER", "The text in which the beginning of words are to be replaced by capital letters.")
3687 // -=*# Resource for function UPPER #*=-
3688 const char* SC_OPCODE_UPPER_ARY[] =
3690 NC_("SC_OPCODE_UPPER", "Converts text to uppercase."),
3691 NC_("SC_OPCODE_UPPER", "Text"),
3692 NC_("SC_OPCODE_UPPER", "The text in which lower case letters are to be converted to capitals.")
3695 // -=*# Resource for function LOWER #*=-
3696 const char* SC_OPCODE_LOWER_ARY[] =
3698 NC_("SC_OPCODE_LOWER", "Converts text to lowercase."),
3699 NC_("SC_OPCODE_LOWER", "Text"),
3700 NC_("SC_OPCODE_LOWER", "The text in which capitals are converted to lower case letters.")
3703 // -=*# Resource for function VALUE #*=-
3704 const char* SC_OPCODE_VALUE_ARY[] =
3706 NC_("SC_OPCODE_VALUE", "Converts text to a number."),
3707 NC_("SC_OPCODE_VALUE", "Text"),
3708 NC_("SC_OPCODE_VALUE", "The text to be converted to a number.")
3711 // -=*# Resource for function TEXT #*=-
3712 const char* SC_OPCODE_TEXT_ARY[] =
3714 NC_("SC_OPCODE_TEXT", "Converts a number to text according to a given format."),
3715 NC_("SC_OPCODE_TEXT", "Number"),
3716 NC_("SC_OPCODE_TEXT", "The numeric value to be converted."),
3717 NC_("SC_OPCODE_TEXT", "Format"),
3718 NC_("SC_OPCODE_TEXT", "The text that describes the format.")
3721 // -=*# Resource for function T #*=-
3722 const char* SC_OPCODE_T_ARY[] =
3724 NC_("SC_OPCODE_T", "Returns a value if it is text, otherwise an empty string."),
3725 NC_("SC_OPCODE_T", "Value"),
3726 NC_("SC_OPCODE_T", "The value to be checked and returned if it is text.")
3729 // -=*# Resource for function REPLACE #*=-
3730 const char* SC_OPCODE_REPLACE_ARY[] =
3732 NC_("SC_OPCODE_REPLACE", "Replaces characters within a text string with a different text string."),
3733 NC_("SC_OPCODE_REPLACE", "Text"),
3734 NC_("SC_OPCODE_REPLACE", "The text in which some characters are to be replaced."),
3735 NC_("SC_OPCODE_REPLACE", "Position"),
3736 NC_("SC_OPCODE_REPLACE", "The character position from which text is to be replaced."),
3737 NC_("SC_OPCODE_REPLACE", "Length"),
3738 NC_("SC_OPCODE_REPLACE", "The number of characters to be replaced."),
3739 NC_("SC_OPCODE_REPLACE", "New text"),
3740 NC_("SC_OPCODE_REPLACE", "The text to be inserted.")
3743 // -=*# Resource for function FIXED #*=-
3744 const char* SC_OPCODE_FIXED_ARY[] =
3746 NC_("SC_OPCODE_FIXED", "Formats a number with a fixed number of places after the decimal point and thousands separator."),
3747 NC_("SC_OPCODE_FIXED", "Number"),
3748 NC_("SC_OPCODE_FIXED", "The number to be formatted."),
3749 NC_("SC_OPCODE_FIXED", "Decimals"),
3750 NC_("SC_OPCODE_FIXED", "Decimal places. The number of fixed decimal places that are to be displayed."),
3751 NC_("SC_OPCODE_FIXED", "No thousands separators"),
3752 NC_("SC_OPCODE_FIXED", "Thousands separator. If 0 or omitted the locale group separator is used else the separator is suppressed.")
3755 // -=*# Resource for function LEN #*=-
3756 const char* SC_OPCODE_LEN_ARY[] =
3758 NC_("SC_OPCODE_LEN", "Calculates length of a text string."),
3759 NC_("SC_OPCODE_LEN", "Text"),
3760 NC_("SC_OPCODE_LEN", "The text in which the length is to be determined.")
3763 // -=*# Resource for function LEFT #*=-
3764 const char* SC_OPCODE_LEFT_ARY[] =
3766 NC_("SC_OPCODE_LEFT", "Returns the first character or characters of a text."),
3767 NC_("SC_OPCODE_LEFT", "Text"),
3768 NC_("SC_OPCODE_LEFT", "The text where the initial partial words are to be determined."),
3769 NC_("SC_OPCODE_LEFT", "Number"),
3770 NC_("SC_OPCODE_LEFT", "The number of characters for the start text.")
3773 // -=*# Resource for function RIGHT #*=-
3774 const char* SC_OPCODE_RIGHT_ARY[] =
3776 NC_("SC_OPCODE_RIGHT", "Returns the last character or characters of a text."),
3777 NC_("SC_OPCODE_RIGHT", "Text"),
3778 NC_("SC_OPCODE_RIGHT", "The text in which the end partial words are to be determined."),
3779 NC_("SC_OPCODE_RIGHT", "Number"),
3780 NC_("SC_OPCODE_RIGHT", "The number of characters for the end text.")
3783 // -=*# Resource for function MID #*=-
3784 const char* SC_OPCODE_MID_ARY[] =
3786 NC_("SC_OPCODE_MID", "Returns a partial text string of a text."),
3787 NC_("SC_OPCODE_MID", "Text"),
3788 NC_("SC_OPCODE_MID", "The text in which partial words are to be determined."),
3789 NC_("SC_OPCODE_MID", "Start"),
3790 NC_("SC_OPCODE_MID", "The position from which the part word is to be determined."),
3791 NC_("SC_OPCODE_MID", "Number"),
3792 NC_("SC_OPCODE_MID", "The number of characters for the text.")
3795 // -=*# Resource for function REPT #*=-
3796 const char* SC_OPCODE_REPT_ARY[] =
3798 NC_("SC_OPCODE_REPT", "Repeats text a given number of times."),
3799 NC_("SC_OPCODE_REPT", "Text"),
3800 NC_("SC_OPCODE_REPT", "The text to be repeated."),
3801 NC_("SC_OPCODE_REPT", "Number"),
3802 NC_("SC_OPCODE_REPT", "The number of times the text is to be repeated.")
3805 // -=*# Resource for function SUBSTITUTE #*=-
3806 const char* SC_OPCODE_SUBSTITUTE_ARY[] =
3808 NC_("SC_OPCODE_SUBSTITUTE", "Substitutes new text for old text in a string."),
3809 NC_("SC_OPCODE_SUBSTITUTE", "Text"),
3810 NC_("SC_OPCODE_SUBSTITUTE", "The text in which partial words are to be replaced."),
3811 NC_("SC_OPCODE_SUBSTITUTE", "Search text"),
3812 NC_("SC_OPCODE_SUBSTITUTE", "The partial string to be (repeatedly) replaced."),
3813 NC_("SC_OPCODE_SUBSTITUTE", "New text"),
3814 NC_("SC_OPCODE_SUBSTITUTE", "The text which is to replace the text string."),
3815 NC_("SC_OPCODE_SUBSTITUTE", "Occurrence"),
3816 NC_("SC_OPCODE_SUBSTITUTE", "Which occurrence of the old text is to be replaced.")
3819 // -=*# Resource for function REGEX #*=-
3820 const char* SC_OPCODE_REGEX_ARY[] =
3822 NC_("SC_OPCODE_REGEX", "Matches and extracts or optionally replaces text using regular expressions."),
3823 NC_("SC_OPCODE_REGEX", "Text"),
3824 NC_("SC_OPCODE_REGEX", "The text to be operated on."),
3825 NC_("SC_OPCODE_REGEX", "Expression"),
3826 NC_("SC_OPCODE_REGEX", "The regular expression pattern to be matched."),
3827 NC_("SC_OPCODE_REGEX", "Replacement"),
3828 NC_("SC_OPCODE_REGEX", "The replacement text and references to capture groups."),
3829 NC_("SC_OPCODE_REGEX", "Flags or Occurrence"),
3830 NC_("SC_OPCODE_REGEX", "Text specifying option flags, \"g\" for global replacement. Or number of occurrence to match or replace.")
3833 // -=*# Resource for function BASE #*=-
3834 const char* SC_OPCODE_BASE_ARY[] =
3836 NC_("SC_OPCODE_BASE", "Converts a positive integer to text from a number system to the base defined."),
3837 NC_("SC_OPCODE_BASE", "Number"),
3838 NC_("SC_OPCODE_BASE", "The number to be converted."),
3839 NC_("SC_OPCODE_BASE", "Radix"),
3840 NC_("SC_OPCODE_BASE", "The base number for conversion must be in the range 2 - 36."),
3841 NC_("SC_OPCODE_BASE", "Minimum length"),
3842 NC_("SC_OPCODE_BASE", "If the text is shorter than the specified length, zeros are added to the left of the string.")
3845 // -=*# Resource for function DECIMAL #*=-
3846 const char* SC_OPCODE_DECIMAL_ARY[] =
3848 NC_("SC_OPCODE_DECIMAL", "Converts a text of a specified number system to a positive integer in the base given."),
3849 NC_("SC_OPCODE_DECIMAL", "Text"),
3850 NC_("SC_OPCODE_DECIMAL", "The text to be converted."),
3851 NC_("SC_OPCODE_DECIMAL", "Radix"),
3852 NC_("SC_OPCODE_DECIMAL", "The base number for conversion must be in the range 2 - 36.")
3855 // -=*# Resource for function CONVERT_OOO #*=-
3856 const char* SC_OPCODE_CONVERT_OOO_ARY[] =
3858 NC_("SC_OPCODE_CONVERT_OOO", "Converts a value according to a conversion table in the configuration (main.xcd)."),
3859 NC_("SC_OPCODE_CONVERT_OOO", "Value"),
3860 NC_("SC_OPCODE_CONVERT_OOO", "The value to be converted."),
3861 NC_("SC_OPCODE_CONVERT_OOO", "Text"),
3862 NC_("SC_OPCODE_CONVERT_OOO", "Unit from which something is converted, case-sensitive."),
3863 NC_("SC_OPCODE_CONVERT_OOO", "Text"),
3864 NC_("SC_OPCODE_CONVERT_OOO", "Unit into which something is converted, case-sensitive.")
3867 // -=*# Resource for function ROMAN #*=-
3868 const char* SC_OPCODE_ROMAN_ARY[] =
3870 NC_("SC_OPCODE_ROMAN", "Converts a number to a Roman numeral."),
3871 NC_("SC_OPCODE_ROMAN", "Number"),
3872 NC_("SC_OPCODE_ROMAN", "The number to be converted to a Roman numeral must be in the 0 - 3999 range."),
3873 NC_("SC_OPCODE_ROMAN", "Mode"),
3874 NC_("SC_OPCODE_ROMAN", "The more this value increases, the more the Roman numeral is simplified. The value must be in the 0 - 4 range.")
3877 // -=*# Resource for function ARABIC #*=-
3878 const char* SC_OPCODE_ARABIC_ARY[] =
3880 NC_("SC_OPCODE_ARABIC", "Calculates the value of a Roman numeral."),
3881 NC_("SC_OPCODE_ARABIC", "Text"),
3882 NC_("SC_OPCODE_ARABIC", "The text that represents a Roman numeral.")
3885 const char* SC_OPCODE_INFO_ARY[] =
3887 NC_("SC_OPCODE_INFO", "Returns information about the environment."),
3888 NC_("SC_OPCODE_INFO", "Text"),
3889 NC_("SC_OPCODE_INFO", "Can be \"osversion\", \"system\", \"release\", \"numfile\", and \"recalc\".")
3892 const char* SC_OPCODE_UNICODE_ARY[] =
3894 NC_("SC_OPCODE_UNICODE", "Returns the numeric code for the first Unicode character in a text string."),
3895 NC_("SC_OPCODE_UNICODE", "Text"),
3896 NC_("SC_OPCODE_UNICODE", "This is the text for which the code of the first character is to be found.")
3899 const char* SC_OPCODE_UNICHAR_ARY[] =
3901 NC_("SC_OPCODE_UNICHAR", "Converts a code number into a Unicode character or letter."),
3902 NC_("SC_OPCODE_UNICHAR", "Number"),
3903 NC_("SC_OPCODE_UNICHAR", "The code value for the character.")
3906 const char* SC_OPCODE_EUROCONVERT_ARY[] =
3908 NC_("SC_OPCODE_EUROCONVERT", "Converts a value from one to another Euro currency."),
3909 NC_("SC_OPCODE_EUROCONVERT", "Value"),
3910 NC_("SC_OPCODE_EUROCONVERT", "The value to be converted."),
3911 NC_("SC_OPCODE_EUROCONVERT", "From currency"),
3912 NC_("SC_OPCODE_EUROCONVERT", "ISO 4217 code of the currency from which is converted."),
3913 NC_("SC_OPCODE_EUROCONVERT", "To currency"),
3914 NC_("SC_OPCODE_EUROCONVERT", "ISO 4217 code of the currency into which is converted."),
3915 NC_("SC_OPCODE_EUROCONVERT", "Full precision"),
3916 NC_("SC_OPCODE_EUROCONVERT", "If omitted or 0 or FALSE, the result is rounded to the decimals of To_currency. Else the result is not rounded."),
3917 NC_("SC_OPCODE_EUROCONVERT", "Triangulation precision"),
3918 /* This description uses almost all available space in the dialog, make sure translations fit in size */
3919 NC_("SC_OPCODE_EUROCONVERT", "If given and >=3, the intermediate result of a triangular conversion is rounded to that precision. If omitted, the result is not rounded.")
3922 const char* SC_OPCODE_NUMBERVALUE_ARY[] =
3924 NC_("SC_OPCODE_NUMBERVALUE", "Converts text to a number, in a locale-independent way."),
3925 NC_("SC_OPCODE_NUMBERVALUE", "Text"),
3926 NC_("SC_OPCODE_NUMBERVALUE", "The text to be converted to a number."),
3927 NC_("SC_OPCODE_NUMBERVALUE", "Decimal separator"),
3928 NC_("SC_OPCODE_NUMBERVALUE", "Defines the character used as the decimal separator."),
3929 NC_("SC_OPCODE_NUMBERVALUE", "Group separator"),
3930 NC_("SC_OPCODE_NUMBERVALUE", "Defines the character(s) used as the group separator.")
3934 const char* SC_OPCODE_BITAND_ARY[] =
3936 NC_("SC_OPCODE_BITAND", "Bitwise \"AND\" of two integers."),
3937 NC_("SC_OPCODE_BITAND", "Number1"),
3938 NC_("SC_OPCODE_BITAND", "Positive integer less than 2^48."),
3939 NC_("SC_OPCODE_BITAND", "Number2"),
3940 NC_("SC_OPCODE_BITAND", "Positive integer less than 2^48.")
3943 const char* SC_OPCODE_BITOR_ARY[] =
3945 NC_("SC_OPCODE_BITOR", "Bitwise \"OR\" of two integers."),
3946 NC_("SC_OPCODE_BITOR", "Number1"),
3947 NC_("SC_OPCODE_BITOR", "Positive integer less than 2^48."),
3948 NC_("SC_OPCODE_BITOR", "Number2"),
3949 NC_("SC_OPCODE_BITOR", "Positive integer less than 2^48.")
3952 const char* SC_OPCODE_BITXOR_ARY[] =
3954 NC_("SC_OPCODE_BITXOR", "Bitwise \"exclusive OR\" of two integers."),
3955 NC_("SC_OPCODE_BITXOR", "Number1"),
3956 NC_("SC_OPCODE_BITXOR", "Positive integer less than 2^48."),
3957 NC_("SC_OPCODE_BITXOR", "Number2"),
3958 NC_("SC_OPCODE_BITXOR", "Positive integer less than 2^48.")
3961 const char* SC_OPCODE_BITRSHIFT_ARY[] =
3963 NC_("SC_OPCODE_BITRSHIFT", "Bitwise right shift of an integer value."),
3964 NC_("SC_OPCODE_BITRSHIFT", "Number"),
3965 NC_("SC_OPCODE_BITRSHIFT", "The value to be shifted. Positive integer less than 2^48."),
3966 NC_("SC_OPCODE_BITRSHIFT", "Shift"),
3967 NC_("SC_OPCODE_BITRSHIFT", "The integer number of bits the value is to be shifted.")
3970 const char* SC_OPCODE_BITLSHIFT_ARY[] =
3972 NC_("SC_OPCODE_BITLSHIFT", "Bitwise left shift of an integer value."),
3973 NC_("SC_OPCODE_BITLSHIFT", "Number"),
3974 NC_("SC_OPCODE_BITLSHIFT", "The value to be shifted. Positive integer less than 2^48."),
3975 NC_("SC_OPCODE_BITLSHIFT", "Shift"),
3976 NC_("SC_OPCODE_BITLSHIFT", "The integer number of bits the value is to be shifted.")
3979 const char* SC_OPCODE_LENB_ARY[] =
3981 NC_("SC_OPCODE_LENB", "Calculates length of a text string, with DBCS"),
3982 NC_("SC_OPCODE_LENB", "Text"),
3983 NC_("SC_OPCODE_LENB", "The text in which the length is to be determined.")
3986 const char* SC_OPCODE_RIGHTB_ARY[] =
3988 NC_("SC_OPCODE_RIGHTB", "Returns the last character or characters of a text,with DBCS"),
3989 NC_("SC_OPCODE_RIGHTB", "Text"),
3990 NC_("SC_OPCODE_RIGHTB", "The text in which the end partial words are to be determined."),
3991 NC_("SC_OPCODE_RIGHTB", "Number"),
3992 NC_("SC_OPCODE_RIGHTB", "The number of characters for the end text.")
3995 const char* SC_OPCODE_LEFTB_ARY[] =
3997 NC_("SC_OPCODE_LEFTB", "Returns the first character or characters of a text,with DBCS"),
3998 NC_("SC_OPCODE_LEFTB", "Text"),
3999 NC_("SC_OPCODE_LEFTB", "The text where the initial partial words are to be determined."),
4000 NC_("SC_OPCODE_LEFTB", "Number"),
4001 NC_("SC_OPCODE_LEFTB", "The number of characters for the start text.")
4004 const char* SC_OPCODE_MIDB_ARY[] =
4006 NC_("SC_OPCODE_MIDB", "Returns a partial text string of a text, with DBCS"),
4007 NC_("SC_OPCODE_MIDB", "Text"),
4008 NC_("SC_OPCODE_MIDB", "The text in which partial words are to be determined."),
4009 NC_("SC_OPCODE_MIDB", "Start"),
4010 NC_("SC_OPCODE_MIDB", "The position from which the part word is to be determined."),
4011 NC_("SC_OPCODE_MIDB", "Number"),
4012 NC_("SC_OPCODE_MIDB", "The number of characters for the text.")
4015 const char* SC_OPCODE_FILTERXML_ARY[] =
4017 NC_("SC_OPCODE_FILTERXML", "Apply an XPath expression to an XML document"),
4018 NC_("SC_OPCODE_FILTERXML", "XML Document"),
4019 NC_("SC_OPCODE_FILTERXML", "String containing a valid XML stream"),
4020 NC_("SC_OPCODE_FILTERXML", "XPath expression"),
4021 NC_("SC_OPCODE_FILTERXML", "String containing a valid XPath expression")
4024 const char* SC_OPCODE_COLOR_ARY[] =
4026 NC_("SC_OPCODE_COLOR", "Returns an implementation defined value representing a RGBA color"),
4027 NC_("SC_OPCODE_COLOR", "Red"),
4028 NC_("SC_OPCODE_COLOR", "Value of red"),
4029 NC_("SC_OPCODE_COLOR", "Green"),
4030 NC_("SC_OPCODE_COLOR", "Value of green"),
4031 NC_("SC_OPCODE_COLOR", "Blue"),
4032 NC_("SC_OPCODE_COLOR", "Value of blue"),
4033 NC_("SC_OPCODE_COLOR", "Alpha"),
4034 NC_("SC_OPCODE_COLOR", "Value of alpha")
4037 const char* SC_OPCODE_WEBSERVICE_ARY[] =
4039 NC_("SC_OPCODE_WEBSERVICE", "Get some web-content from a URI."),
4040 NC_("SC_OPCODE_WEBSERVICE", "URI"),
4041 NC_("SC_OPCODE_WEBSERVICE", "URI of the webservice")
4044 const char* SC_OPCODE_ENCODEURL_ARY[] =
4046 NC_("SC_OPCODE_ENCODEURL", "Return a URL-encoded string."),
4047 NC_("SC_OPCODE_ENCODEURL", "Text"),
4048 NC_("SC_OPCODE_ENCODEURL", "A string to be URL-encoded")
4051 const char* SC_OPCODE_ERF_MS_ARY[] =
4053 NC_("SC_OPCODE_ERF_MS", "Returns the error function."),
4054 NC_("SC_OPCODE_ERF_MS", "Lower limit"),
4055 NC_("SC_OPCODE_ERF_MS", "The lower limit for integration")
4058 const char* SC_OPCODE_ERFC_MS_ARY[] =
4060 NC_("SC_OPCODE_ERFC_MS", "Returns the complementary error function."),
4061 NC_("SC_OPCODE_ERFC_MS", "Lower limit"),
4062 NC_("SC_OPCODE_ERFC_MS", "The lower limit for integration")
4065 const char* SC_OPCODE_RAWSUBTRACT_ARY[] =
4067 NC_("SC_OPCODE_RAWSUBTRACT", "Returns the subtraction of numbers. Like a-b-c but without eliminating small roundoff errors."),
4068 NC_("SC_OPCODE_RAWSUBTRACT", "Minuend"),
4069 NC_("SC_OPCODE_RAWSUBTRACT", "Number from which following arguments are subtracted."),
4070 NC_("SC_OPCODE_RAWSUBTRACT", "Subtrahend "),
4071 NC_("SC_OPCODE_RAWSUBTRACT", "Subtrahend 1, subtrahend 2, ... are numerical arguments subtracted from the minuend.")
4074 // -=*# Resource for function ROUNDSIG #*=-
4075 const char* SC_OPCODE_ROUNDSIG_ARY[] =
4077 NC_("SC_OPCODE_ROUNDSIG", "Rounds a number to predefined significant digits."),
4078 NC_("SC_OPCODE_ROUNDSIG", "Value"),
4079 NC_("SC_OPCODE_ROUNDSIG", "The number to be rounded."),
4080 NC_("SC_OPCODE_ROUNDSIG", "Digits"),
4081 NC_("SC_OPCODE_ROUNDSIG", "The number of significant digits to which value is to be rounded.")
4084 const char* SC_OPCODE_REPLACEB_ARY[] =
4086 NC_("SC_OPCODE_REPLACEB", "Replaces characters within a text string with a different text string, with DBCS."),
4087 NC_("SC_OPCODE_REPLACEB", "Text"),
4088 NC_("SC_OPCODE_REPLACEB", "The text in which some characters are to be replaced."),
4089 NC_("SC_OPCODE_REPLACEB", "Position"),
4090 NC_("SC_OPCODE_REPLACEB", "The character position from which text is to be replaced."),
4091 NC_("SC_OPCODE_REPLACEB", "Length"),
4092 NC_("SC_OPCODE_REPLACEB", "The number of characters to be replaced."),
4093 NC_("SC_OPCODE_REPLACEB", "New text"),
4094 NC_("SC_OPCODE_REPLACEB", "The text to be inserted.")
4097 // -=*# Resource for function FINDB #*=-
4098 const char* SC_OPCODE_FINDB_ARY[] =
4100 NC_("SC_OPCODE_FINDB", "Looks for a string of text within another (case sensitive), using byte positions."),
4101 NC_("SC_OPCODE_FINDB", "Find text"),
4102 NC_("SC_OPCODE_FINDB", "The text to be found."),
4103 NC_("SC_OPCODE_FINDB", "Text"),
4104 NC_("SC_OPCODE_FINDB", "The text in which a search is to be made."),
4105 NC_("SC_OPCODE_FINDB", "Position"),
4106 NC_("SC_OPCODE_FINDB", "The position in the text from which the search starts.")
4109 // -=*# Resource for function SEARCHB #*=-
4110 const char* SC_OPCODE_SEARCHB_ARY[] =
4112 NC_("SC_OPCODE_SEARCHB", "Looks for a string of text within another (not case sensitive), using byte positions."),
4113 NC_("SC_OPCODE_SEARCHB", "Find text"),
4114 NC_("SC_OPCODE_SEARCHB", "The text to be found."),
4115 NC_("SC_OPCODE_SEARCHB", "Text"),
4116 NC_("SC_OPCODE_SEARCHB", "The text in which a search is to be made."),
4117 NC_("SC_OPCODE_SEARCHB", "Position"),
4118 NC_("SC_OPCODE_SEARCHB", "The position in the text from which the search starts.")
4121 // -=*# Resource for function FOURIER #*=-
4122 const char* SC_OPCODE_FOURIER_ARY[] =
4124 NC_("SC_OPCODE_FOURIER", "Computes the Discrete Fourier Transform (DFT) of an array"),
4125 NC_("SC_OPCODE_FOURIER", "Array"),
4126 NC_("SC_OPCODE_FOURIER", "The array whose DFT needs to be computed. The dimensions of this array can be Nx1 or Nx2 or 1xN or 2xN."),
4127 NC_("SC_OPCODE_FOURIER", "GroupedByColumns"),
4128 NC_("SC_OPCODE_FOURIER", "Flag to indicate whether the array is grouped by columns or not (default TRUE)."),
4129 NC_("SC_OPCODE_FOURIER", "Inverse"),
4130 NC_("SC_OPCODE_FOURIER", "Flag to indicate whether an inverse DFT is to be computed (default FALSE)."),
4131 NC_("SC_OPCODE_FOURIER", "Polar"),
4132 NC_("SC_OPCODE_FOURIER", "Flag to indicate whether to return the results in polar form (default FALSE)."),
4133 NC_("SC_OPCODE_FOURIER", "MinimumMagnitude"),
4134 NC_("SC_OPCODE_FOURIER", "In case of Polar=TRUE, the frequency components below this magnitude are clipped out (default 0.0).")
4139 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */