@univerjs/sheets-formula 0.2.6 → 0.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (117) hide show
  1. package/lib/cjs/index.js +4 -4
  2. package/lib/es/index.js +1185 -724
  3. package/lib/locale/en-US.json +706 -428
  4. package/lib/locale/ru-RU.json +703 -425
  5. package/lib/locale/vi-VN.json +2644 -1855
  6. package/lib/locale/zh-CN.json +750 -472
  7. package/lib/locale/zh-TW.json +834 -588
  8. package/lib/types/commands/commands/formula-clipboard.command.d.ts +0 -1
  9. package/lib/types/commands/commands/insert-function.command.d.ts +0 -1
  10. package/lib/types/commands/mutations/formula.mutation.d.ts +0 -1
  11. package/lib/types/commands/operations/__tests__/create-command-test-bed.d.ts +0 -1
  12. package/lib/types/commands/operations/editor-formula.operation.d.ts +0 -1
  13. package/lib/types/commands/operations/help-function.operation.d.ts +0 -1
  14. package/lib/types/commands/operations/insert-function.operation.d.ts +0 -1
  15. package/lib/types/commands/operations/more-functions.operation.d.ts +0 -1
  16. package/lib/types/commands/operations/reference-absolute.operation.d.ts +0 -1
  17. package/lib/types/commands/operations/search-function.operation.d.ts +0 -1
  18. package/lib/types/common/selection.d.ts +0 -1
  19. package/lib/types/controllers/__tests__/create-command-test-bed.d.ts +0 -1
  20. package/lib/types/controllers/active-dirty.controller.d.ts +0 -1
  21. package/lib/types/controllers/array-formula-display.controller.d.ts +0 -1
  22. package/lib/types/controllers/defined-name.controller.d.ts +0 -1
  23. package/lib/types/controllers/formula-alert-render.controller.d.ts +0 -1
  24. package/lib/types/controllers/formula-auto-fill.controller.d.ts +0 -1
  25. package/lib/types/controllers/formula-clipboard.controller.d.ts +0 -1
  26. package/lib/types/controllers/formula-editor-show.controller.d.ts +0 -1
  27. package/lib/types/controllers/formula-render.controller.d.ts +0 -1
  28. package/lib/types/controllers/formula-ui.controller.d.ts +0 -1
  29. package/lib/types/controllers/menu.d.ts +0 -1
  30. package/lib/types/controllers/prompt.controller.d.ts +3 -2
  31. package/lib/types/controllers/shortcuts/prompt.shortcut.d.ts +0 -1
  32. package/lib/types/controllers/trigger-calculation.controller.d.ts +0 -1
  33. package/lib/types/controllers/update-formula.controller.d.ts +0 -1
  34. package/lib/types/controllers/utils/offset-formula-data.d.ts +0 -1
  35. package/lib/types/controllers/utils/ref-range-formula.d.ts +0 -1
  36. package/lib/types/controllers/utils/utils.d.ts +0 -1
  37. package/lib/types/formula-ui-plugin.d.ts +0 -1
  38. package/lib/types/index.d.ts +1 -0
  39. package/lib/types/locale/en-US.d.ts +440 -162
  40. package/lib/types/locale/function-list/array/ru-RU.d.ts +0 -1
  41. package/lib/types/locale/function-list/compatibility/ru-RU.d.ts +0 -1
  42. package/lib/types/locale/function-list/date/ru-RU.d.ts +0 -1
  43. package/lib/types/locale/function-list/date/vi-VN.d.ts +105 -26
  44. package/lib/types/locale/function-list/date/zh-TW.d.ts +32 -8
  45. package/lib/types/locale/function-list/engineering/en-US.d.ts +50 -66
  46. package/lib/types/locale/function-list/engineering/ja-JP.d.ts +50 -66
  47. package/lib/types/locale/function-list/engineering/ru-RU.d.ts +0 -1
  48. package/lib/types/locale/function-list/engineering/vi-VN.d.ts +50 -66
  49. package/lib/types/locale/function-list/engineering/zh-CN.d.ts +50 -66
  50. package/lib/types/locale/function-list/engineering/zh-TW.d.ts +50 -66
  51. package/lib/types/locale/function-list/financial/en-US.d.ts +344 -56
  52. package/lib/types/locale/function-list/financial/ja-JP.d.ts +344 -56
  53. package/lib/types/locale/function-list/financial/ru-RU.d.ts +0 -1
  54. package/lib/types/locale/function-list/financial/vi-VN.d.ts +344 -56
  55. package/lib/types/locale/function-list/financial/zh-CN.d.ts +344 -56
  56. package/lib/types/locale/function-list/financial/zh-TW.d.ts +344 -56
  57. package/lib/types/locale/function-list/information/ja-JP.d.ts +8 -40
  58. package/lib/types/locale/function-list/information/ru-RU.d.ts +0 -1
  59. package/lib/types/locale/function-list/information/vi-VN.d.ts +218 -3
  60. package/lib/types/locale/function-list/logical/en-US.d.ts +45 -35
  61. package/lib/types/locale/function-list/logical/ja-JP.d.ts +45 -35
  62. package/lib/types/locale/function-list/logical/ru-RU.d.ts +0 -1
  63. package/lib/types/locale/function-list/logical/vi-VN.d.ts +45 -35
  64. package/lib/types/locale/function-list/logical/zh-CN.d.ts +45 -35
  65. package/lib/types/locale/function-list/logical/zh-TW.d.ts +45 -35
  66. package/lib/types/locale/function-list/lookup/en-US.d.ts +1 -5
  67. package/lib/types/locale/function-list/lookup/ja-JP.d.ts +1 -5
  68. package/lib/types/locale/function-list/lookup/ru-RU.d.ts +0 -1
  69. package/lib/types/locale/function-list/lookup/vi-VN.d.ts +421 -9
  70. package/lib/types/locale/function-list/lookup/zh-CN.d.ts +1 -5
  71. package/lib/types/locale/function-list/lookup/zh-TW.d.ts +1 -5
  72. package/lib/types/locale/function-list/math/ru-RU.d.ts +0 -1
  73. package/lib/types/locale/function-list/math/vi-VN.d.ts +1022 -3
  74. package/lib/types/locale/function-list/math/zh-TW.d.ts +21 -77
  75. package/lib/types/locale/function-list/statistical/ru-RU.d.ts +0 -1
  76. package/lib/types/locale/function-list/statistical/vi-VN.d.ts +334 -0
  77. package/lib/types/locale/function-list/text/vi-VN.d.ts +135 -1
  78. package/lib/types/locale/function-list/web/vi-VN.d.ts +0 -1
  79. package/lib/types/locale/ru-RU.d.ts +440 -162
  80. package/lib/types/locale/vi-VN.d.ts +1378 -623
  81. package/lib/types/locale/zh-CN.d.ts +440 -162
  82. package/lib/types/locale/zh-TW.d.ts +493 -247
  83. package/lib/types/services/description.service.d.ts +0 -1
  84. package/lib/types/services/formula-common.d.ts +0 -1
  85. package/lib/types/services/formula-ref-range.service.d.ts +0 -1
  86. package/lib/types/services/function-list/array.d.ts +0 -1
  87. package/lib/types/services/function-list/compatibility.d.ts +0 -1
  88. package/lib/types/services/function-list/cube.d.ts +0 -1
  89. package/lib/types/services/function-list/database.d.ts +0 -1
  90. package/lib/types/services/function-list/date.d.ts +0 -1
  91. package/lib/types/services/function-list/engineering.d.ts +0 -1
  92. package/lib/types/services/function-list/financial.d.ts +0 -1
  93. package/lib/types/services/function-list/function-list.d.ts +0 -1
  94. package/lib/types/services/function-list/information.d.ts +0 -1
  95. package/lib/types/services/function-list/logical.d.ts +0 -1
  96. package/lib/types/services/function-list/lookup.d.ts +0 -1
  97. package/lib/types/services/function-list/math.d.ts +0 -1
  98. package/lib/types/services/function-list/statistical.d.ts +0 -1
  99. package/lib/types/services/function-list/text.d.ts +0 -1
  100. package/lib/types/services/function-list/univer.d.ts +0 -1
  101. package/lib/types/services/function-list/web.d.ts +0 -1
  102. package/lib/types/services/prompt.service.d.ts +5 -2
  103. package/lib/types/services/register-function.service.d.ts +0 -1
  104. package/lib/types/services/register-other-formula.service.d.ts +0 -1
  105. package/lib/types/services/remote/remote-register-function.service.d.ts +0 -1
  106. package/lib/types/services/render-services/ref-selections.render-service.d.ts +0 -1
  107. package/lib/types/services/utils.d.ts +0 -1
  108. package/lib/types/views/FormulaPromptContainer.d.ts +0 -1
  109. package/lib/types/views/more-functions/MoreFunctions.d.ts +0 -1
  110. package/lib/types/views/more-functions/function-help/FunctionHelp.d.ts +0 -1
  111. package/lib/types/views/more-functions/function-params/FunctionParams.d.ts +0 -1
  112. package/lib/types/views/more-functions/input-params/InputParams.d.ts +0 -1
  113. package/lib/types/views/more-functions/select-function/SelectFunction.d.ts +0 -1
  114. package/lib/types/views/prompt/help-function/HelpFunction.d.ts +0 -1
  115. package/lib/types/views/prompt/search-function/SearchFunction.d.ts +0 -1
  116. package/lib/umd/index.js +4 -4
  117. package/package.json +24 -24
@@ -20,13 +20,37 @@
20
20
  }
21
21
  ],
22
22
  "functionParameter": {
23
- "number1": {
24
- "name": "number1",
25
- "detail": "first"
23
+ "issue": {
24
+ "name": "issue",
25
+ "detail": "The security's issue date."
26
26
  },
27
- "number2": {
28
- "name": "number2",
29
- "detail": "second"
27
+ "firstInterest": {
28
+ "name": "first_interest",
29
+ "detail": "The security's first interest date."
30
+ },
31
+ "settlement": {
32
+ "name": "settlement",
33
+ "detail": "The security's maturity date."
34
+ },
35
+ "rate": {
36
+ "name": "rate",
37
+ "detail": "The security's annual coupon rate."
38
+ },
39
+ "par": {
40
+ "name": "par",
41
+ "detail": "The security's par value."
42
+ },
43
+ "frequency": {
44
+ "name": "frequency",
45
+ "detail": "The number of coupon payments per year."
46
+ },
47
+ "basis": {
48
+ "name": "basis",
49
+ "detail": "The type of day count basis to use."
50
+ },
51
+ "calcMethod": {
52
+ "name": "calc_method",
53
+ "detail": "Is a logical value: interest accrues from the issue date = TRUE or ignored; interest accrues from the last coupon payment date = FALSE."
30
54
  }
31
55
  }
32
56
  },
@@ -40,13 +64,25 @@
40
64
  }
41
65
  ],
42
66
  "functionParameter": {
43
- "number1": {
44
- "name": "number1",
45
- "detail": "first"
67
+ "issue": {
68
+ "name": "issue",
69
+ "detail": "The security's issue date."
46
70
  },
47
- "number2": {
48
- "name": "number2",
49
- "detail": "second"
71
+ "settlement": {
72
+ "name": "settlement",
73
+ "detail": "The security's maturity date."
74
+ },
75
+ "rate": {
76
+ "name": "rate",
77
+ "detail": "The security's annual coupon rate."
78
+ },
79
+ "par": {
80
+ "name": "par",
81
+ "detail": "The security's par value."
82
+ },
83
+ "basis": {
84
+ "name": "basis",
85
+ "detail": "The type of day count basis to use."
50
86
  }
51
87
  }
52
88
  },
@@ -80,13 +116,33 @@
80
116
  }
81
117
  ],
82
118
  "functionParameter": {
83
- "number1": {
84
- "name": "number1",
85
- "detail": "first"
119
+ "cost": {
120
+ "name": "cost",
121
+ "detail": "The cost of the asset."
86
122
  },
87
- "number2": {
88
- "name": "number2",
89
- "detail": "second"
123
+ "datePurchased": {
124
+ "name": "date_purchased",
125
+ "detail": "The date of the purchase of the asset."
126
+ },
127
+ "firstPeriod": {
128
+ "name": "first_period",
129
+ "detail": "The date of the end of the first period."
130
+ },
131
+ "salvage": {
132
+ "name": "salvage",
133
+ "detail": "The salvage value at the end of the life of the asset."
134
+ },
135
+ "period": {
136
+ "name": "period",
137
+ "detail": "The period."
138
+ },
139
+ "rate": {
140
+ "name": "rate",
141
+ "detail": "The rate of depreciation."
142
+ },
143
+ "basis": {
144
+ "name": "basis",
145
+ "detail": "The year basis to be used."
90
146
  }
91
147
  }
92
148
  },
@@ -100,13 +156,21 @@
100
156
  }
101
157
  ],
102
158
  "functionParameter": {
103
- "number1": {
104
- "name": "number1",
105
- "detail": "first"
159
+ "settlement": {
160
+ "name": "settlement",
161
+ "detail": "The security's settlement date."
106
162
  },
107
- "number2": {
108
- "name": "number2",
109
- "detail": "second"
163
+ "maturity": {
164
+ "name": "maturity",
165
+ "detail": "The security's maturity date."
166
+ },
167
+ "frequency": {
168
+ "name": "frequency",
169
+ "detail": "The number of coupon payments per year."
170
+ },
171
+ "basis": {
172
+ "name": "basis",
173
+ "detail": "The type of day count basis to use."
110
174
  }
111
175
  }
112
176
  },
@@ -120,13 +184,21 @@
120
184
  }
121
185
  ],
122
186
  "functionParameter": {
123
- "number1": {
124
- "name": "number1",
125
- "detail": "first"
187
+ "settlement": {
188
+ "name": "settlement",
189
+ "detail": "The security's settlement date."
126
190
  },
127
- "number2": {
128
- "name": "number2",
129
- "detail": "second"
191
+ "maturity": {
192
+ "name": "maturity",
193
+ "detail": "The security's maturity date."
194
+ },
195
+ "frequency": {
196
+ "name": "frequency",
197
+ "detail": "The number of coupon payments per year."
198
+ },
199
+ "basis": {
200
+ "name": "basis",
201
+ "detail": "The type of day count basis to use."
130
202
  }
131
203
  }
132
204
  },
@@ -140,13 +212,21 @@
140
212
  }
141
213
  ],
142
214
  "functionParameter": {
143
- "number1": {
144
- "name": "number1",
145
- "detail": "first"
215
+ "settlement": {
216
+ "name": "settlement",
217
+ "detail": "The security's settlement date."
146
218
  },
147
- "number2": {
148
- "name": "number2",
149
- "detail": "second"
219
+ "maturity": {
220
+ "name": "maturity",
221
+ "detail": "The security's maturity date."
222
+ },
223
+ "frequency": {
224
+ "name": "frequency",
225
+ "detail": "The number of coupon payments per year."
226
+ },
227
+ "basis": {
228
+ "name": "basis",
229
+ "detail": "The type of day count basis to use."
150
230
  }
151
231
  }
152
232
  },
@@ -160,13 +240,21 @@
160
240
  }
161
241
  ],
162
242
  "functionParameter": {
163
- "number1": {
164
- "name": "number1",
165
- "detail": "first"
243
+ "settlement": {
244
+ "name": "settlement",
245
+ "detail": "The security's settlement date."
166
246
  },
167
- "number2": {
168
- "name": "number2",
169
- "detail": "second"
247
+ "maturity": {
248
+ "name": "maturity",
249
+ "detail": "The security's maturity date."
250
+ },
251
+ "frequency": {
252
+ "name": "frequency",
253
+ "detail": "The number of coupon payments per year."
254
+ },
255
+ "basis": {
256
+ "name": "basis",
257
+ "detail": "The type of day count basis to use."
170
258
  }
171
259
  }
172
260
  },
@@ -180,13 +268,21 @@
180
268
  }
181
269
  ],
182
270
  "functionParameter": {
183
- "number1": {
184
- "name": "number1",
185
- "detail": "first"
271
+ "settlement": {
272
+ "name": "settlement",
273
+ "detail": "The security's settlement date."
186
274
  },
187
- "number2": {
188
- "name": "number2",
189
- "detail": "second"
275
+ "maturity": {
276
+ "name": "maturity",
277
+ "detail": "The security's maturity date."
278
+ },
279
+ "frequency": {
280
+ "name": "frequency",
281
+ "detail": "The number of coupon payments per year."
282
+ },
283
+ "basis": {
284
+ "name": "basis",
285
+ "detail": "The type of day count basis to use."
190
286
  }
191
287
  }
192
288
  },
@@ -200,13 +296,21 @@
200
296
  }
201
297
  ],
202
298
  "functionParameter": {
203
- "number1": {
204
- "name": "number1",
205
- "detail": "first"
299
+ "settlement": {
300
+ "name": "settlement",
301
+ "detail": "The security's settlement date."
206
302
  },
207
- "number2": {
208
- "name": "number2",
209
- "detail": "second"
303
+ "maturity": {
304
+ "name": "maturity",
305
+ "detail": "The security's maturity date."
306
+ },
307
+ "frequency": {
308
+ "name": "frequency",
309
+ "detail": "The number of coupon payments per year."
310
+ },
311
+ "basis": {
312
+ "name": "basis",
313
+ "detail": "The type of day count basis to use."
210
314
  }
211
315
  }
212
316
  },
@@ -220,13 +324,29 @@
220
324
  }
221
325
  ],
222
326
  "functionParameter": {
223
- "number1": {
224
- "name": "number1",
225
- "detail": "first"
327
+ "rate": {
328
+ "name": "rate",
329
+ "detail": "The interest rate."
226
330
  },
227
- "number2": {
228
- "name": "number2",
229
- "detail": "second"
331
+ "nper": {
332
+ "name": "nper",
333
+ "detail": "The total number of payment periods."
334
+ },
335
+ "pv": {
336
+ "name": "pv",
337
+ "detail": "The present value."
338
+ },
339
+ "startPeriod": {
340
+ "name": "start_period",
341
+ "detail": "The first period in the calculation. Payment periods are numbered beginning with 1."
342
+ },
343
+ "endPeriod": {
344
+ "name": "end_period",
345
+ "detail": "The last period in the calculation."
346
+ },
347
+ "type": {
348
+ "name": "type",
349
+ "detail": "The timing of the payment."
230
350
  }
231
351
  }
232
352
  },
@@ -240,13 +360,29 @@
240
360
  }
241
361
  ],
242
362
  "functionParameter": {
243
- "number1": {
244
- "name": "number1",
245
- "detail": "first"
363
+ "rate": {
364
+ "name": "rate",
365
+ "detail": "The interest rate."
246
366
  },
247
- "number2": {
248
- "name": "number2",
249
- "detail": "second"
367
+ "nper": {
368
+ "name": "nper",
369
+ "detail": "The total number of payment periods."
370
+ },
371
+ "pv": {
372
+ "name": "pv",
373
+ "detail": "The present value."
374
+ },
375
+ "startPeriod": {
376
+ "name": "start_period",
377
+ "detail": "The first period in the calculation. Payment periods are numbered beginning with 1."
378
+ },
379
+ "endPeriod": {
380
+ "name": "end_period",
381
+ "detail": "The last period in the calculation."
382
+ },
383
+ "type": {
384
+ "name": "type",
385
+ "detail": "The timing of the payment."
250
386
  }
251
387
  }
252
388
  },
@@ -260,13 +396,25 @@
260
396
  }
261
397
  ],
262
398
  "functionParameter": {
263
- "number1": {
264
- "name": "number1",
265
- "detail": "first"
399
+ "cost": {
400
+ "name": "cost",
401
+ "detail": "The initial cost of the asset."
266
402
  },
267
- "number2": {
268
- "name": "number2",
269
- "detail": "second"
403
+ "salvage": {
404
+ "name": "salvage",
405
+ "detail": "The value at the end of the depreciation (sometimes called the salvage value of the asset)."
406
+ },
407
+ "life": {
408
+ "name": "life",
409
+ "detail": "The number of periods over which the asset is being depreciated (sometimes called the useful life of the asset)."
410
+ },
411
+ "period": {
412
+ "name": "period",
413
+ "detail": "The period for which you want to calculate the depreciation."
414
+ },
415
+ "month": {
416
+ "name": "month",
417
+ "detail": "The number of months in the first year. If month is omitted, it is assumed to be 12."
270
418
  }
271
419
  }
272
420
  },
@@ -280,13 +428,25 @@
280
428
  }
281
429
  ],
282
430
  "functionParameter": {
283
- "number1": {
284
- "name": "number1",
285
- "detail": "first"
431
+ "cost": {
432
+ "name": "cost",
433
+ "detail": "The initial cost of the asset."
286
434
  },
287
- "number2": {
288
- "name": "number2",
289
- "detail": "second"
435
+ "salvage": {
436
+ "name": "salvage",
437
+ "detail": "The value at the end of the depreciation (sometimes called the salvage value of the asset)."
438
+ },
439
+ "life": {
440
+ "name": "life",
441
+ "detail": "The number of periods over which the asset is being depreciated (sometimes called the useful life of the asset)."
442
+ },
443
+ "period": {
444
+ "name": "period",
445
+ "detail": "The period for which you want to calculate the depreciation."
446
+ },
447
+ "factor": {
448
+ "name": "factor",
449
+ "detail": "The rate at which the balance declines. If factor is omitted, it is assumed to be 2 (the double-declining balance method)."
290
450
  }
291
451
  }
292
452
  },
@@ -300,13 +460,25 @@
300
460
  }
301
461
  ],
302
462
  "functionParameter": {
303
- "number1": {
304
- "name": "number1",
305
- "detail": "first"
463
+ "settlement": {
464
+ "name": "settlement",
465
+ "detail": "The security's settlement date."
306
466
  },
307
- "number2": {
308
- "name": "number2",
309
- "detail": "second"
467
+ "maturity": {
468
+ "name": "maturity",
469
+ "detail": "The security's maturity date."
470
+ },
471
+ "pr": {
472
+ "name": "pr",
473
+ "detail": "The security's price per $100 face value."
474
+ },
475
+ "redemption": {
476
+ "name": "redemption",
477
+ "detail": "The security's redemption value per $100 face value."
478
+ },
479
+ "basis": {
480
+ "name": "basis",
481
+ "detail": "The type of day count basis to use."
310
482
  }
311
483
  }
312
484
  },
@@ -320,13 +492,13 @@
320
492
  }
321
493
  ],
322
494
  "functionParameter": {
323
- "number1": {
324
- "name": "number1",
325
- "detail": "first"
495
+ "fractionalDollar": {
496
+ "name": "fractional_dollar",
497
+ "detail": "A number expressed as an integer part and a fraction part, separated by a decimal symbol."
326
498
  },
327
- "number2": {
328
- "name": "number2",
329
- "detail": "second"
499
+ "fraction": {
500
+ "name": "fraction",
501
+ "detail": "The integer to use in the denominator of the fraction."
330
502
  }
331
503
  }
332
504
  },
@@ -340,13 +512,13 @@
340
512
  }
341
513
  ],
342
514
  "functionParameter": {
343
- "number1": {
344
- "name": "number1",
345
- "detail": "first"
515
+ "decimalDollar": {
516
+ "name": "decimal_dollar",
517
+ "detail": "A decimal number."
346
518
  },
347
- "number2": {
348
- "name": "number2",
349
- "detail": "second"
519
+ "fraction": {
520
+ "name": "fraction",
521
+ "detail": "The integer to use in the denominator of the fraction."
350
522
  }
351
523
  }
352
524
  },
@@ -380,13 +552,13 @@
380
552
  }
381
553
  ],
382
554
  "functionParameter": {
383
- "number1": {
384
- "name": "number1",
385
- "detail": "first"
555
+ "nominalRate": {
556
+ "name": "nominal_rate",
557
+ "detail": "The nominal interest rate."
386
558
  },
387
- "number2": {
388
- "name": "number2",
389
- "detail": "second"
559
+ "npery": {
560
+ "name": "npery",
561
+ "detail": "The number of compounding periods per year."
390
562
  }
391
563
  }
392
564
  },
@@ -400,13 +572,25 @@
400
572
  }
401
573
  ],
402
574
  "functionParameter": {
403
- "number1": {
404
- "name": "number1",
405
- "detail": "first"
575
+ "rate": {
576
+ "name": "rate",
577
+ "detail": "The interest rate per period."
406
578
  },
407
- "number2": {
408
- "name": "number2",
409
- "detail": "second"
579
+ "nper": {
580
+ "name": "nper",
581
+ "detail": "The total number of payment periods in an annuity."
582
+ },
583
+ "pmt": {
584
+ "name": "pmt",
585
+ "detail": "The payment made each period; it cannot change over the life of the annuity."
586
+ },
587
+ "pv": {
588
+ "name": "pv",
589
+ "detail": "The present value, or the lump-sum amount that a series of future payments is worth right now."
590
+ },
591
+ "type": {
592
+ "name": "type",
593
+ "detail": "The number 0 or 1 and indicates when payments are due."
410
594
  }
411
595
  }
412
596
  },
@@ -420,13 +604,13 @@
420
604
  }
421
605
  ],
422
606
  "functionParameter": {
423
- "number1": {
424
- "name": "number1",
425
- "detail": "first"
607
+ "principal": {
608
+ "name": "principal",
609
+ "detail": "The present value."
426
610
  },
427
- "number2": {
428
- "name": "number2",
429
- "detail": "second"
611
+ "schedule": {
612
+ "name": "schedule",
613
+ "detail": "An array of interest rates to apply."
430
614
  }
431
615
  }
432
616
  },
@@ -440,13 +624,25 @@
440
624
  }
441
625
  ],
442
626
  "functionParameter": {
443
- "number1": {
444
- "name": "number1",
445
- "detail": "first"
627
+ "settlement": {
628
+ "name": "settlement",
629
+ "detail": "The security's settlement date."
446
630
  },
447
- "number2": {
448
- "name": "number2",
449
- "detail": "second"
631
+ "maturity": {
632
+ "name": "maturity",
633
+ "detail": "The security's maturity date."
634
+ },
635
+ "investment": {
636
+ "name": "investment",
637
+ "detail": "The amount invested in the security."
638
+ },
639
+ "redemption": {
640
+ "name": "redemption",
641
+ "detail": "The amount to be received at maturity."
642
+ },
643
+ "basis": {
644
+ "name": "basis",
645
+ "detail": "The type of day count basis to use."
450
646
  }
451
647
  }
452
648
  },
@@ -460,13 +656,29 @@
460
656
  }
461
657
  ],
462
658
  "functionParameter": {
463
- "number1": {
464
- "name": "number1",
465
- "detail": "first"
659
+ "rate": {
660
+ "name": "rate",
661
+ "detail": "The interest rate per period."
466
662
  },
467
- "number2": {
468
- "name": "number2",
469
- "detail": "second"
663
+ "per": {
664
+ "name": "per",
665
+ "detail": "The period for which you want to find the interest and must be in the range 1 to nper."
666
+ },
667
+ "nper": {
668
+ "name": "nper",
669
+ "detail": "The total number of payment periods in an annuity."
670
+ },
671
+ "pv": {
672
+ "name": "pv",
673
+ "detail": "The present value, or the lump-sum amount that a series of future payments is worth right now."
674
+ },
675
+ "fv": {
676
+ "name": "fv",
677
+ "detail": "The future value, or a cash balance you want to attain after the last payment is made."
678
+ },
679
+ "type": {
680
+ "name": "type",
681
+ "detail": "The number 0 or 1 and indicates when payments are due."
470
682
  }
471
683
  }
472
684
  },
@@ -500,13 +712,21 @@
500
712
  }
501
713
  ],
502
714
  "functionParameter": {
503
- "number1": {
504
- "name": "number1",
505
- "detail": "first"
715
+ "rate": {
716
+ "name": "rate",
717
+ "detail": "The interest rate for the investment."
506
718
  },
507
- "number2": {
508
- "name": "number2",
509
- "detail": "second"
719
+ "per": {
720
+ "name": "per",
721
+ "detail": "The period for which you want to find the interest, and must be between 1 and Nper."
722
+ },
723
+ "nper": {
724
+ "name": "nper",
725
+ "detail": "The total number of payment periods for the investment."
726
+ },
727
+ "pv": {
728
+ "name": "pv",
729
+ "detail": "The present value of the investment. For a loan, Pv is the loan amount."
510
730
  }
511
731
  }
512
732
  },
@@ -560,13 +780,13 @@
560
780
  }
561
781
  ],
562
782
  "functionParameter": {
563
- "number1": {
564
- "name": "number1",
565
- "detail": "first"
783
+ "effectRate": {
784
+ "name": "effect_rate",
785
+ "detail": "The effective interest rate."
566
786
  },
567
- "number2": {
568
- "name": "number2",
569
- "detail": "second"
787
+ "npery": {
788
+ "name": "npery",
789
+ "detail": "The number of compounding periods per year."
570
790
  }
571
791
  }
572
792
  },
@@ -580,13 +800,25 @@
580
800
  }
581
801
  ],
582
802
  "functionParameter": {
583
- "number1": {
584
- "name": "number1",
585
- "detail": "first"
803
+ "rate": {
804
+ "name": "rate",
805
+ "detail": "The interest rate per period."
586
806
  },
587
- "number2": {
588
- "name": "number2",
589
- "detail": "second"
807
+ "pmt": {
808
+ "name": "pmt",
809
+ "detail": "The payment made each period; it cannot change over the life of the annuity."
810
+ },
811
+ "pv": {
812
+ "name": "pv",
813
+ "detail": "The present value, or the lump-sum amount that a series of future payments is worth right now."
814
+ },
815
+ "fv": {
816
+ "name": "fv",
817
+ "detail": "The future value, or a cash balance you want to attain after the last payment is made."
818
+ },
819
+ "type": {
820
+ "name": "type",
821
+ "detail": "The number 0 or 1 and indicates when payments are due."
590
822
  }
591
823
  }
592
824
  },
@@ -720,13 +952,25 @@
720
952
  }
721
953
  ],
722
954
  "functionParameter": {
723
- "number1": {
724
- "name": "number1",
725
- "detail": "first"
955
+ "rate": {
956
+ "name": "rate",
957
+ "detail": "The interest rate per period."
726
958
  },
727
- "number2": {
728
- "name": "number2",
729
- "detail": "second"
959
+ "nper": {
960
+ "name": "nper",
961
+ "detail": "The total number of payment periods in an annuity."
962
+ },
963
+ "pv": {
964
+ "name": "pv",
965
+ "detail": "The present value, or the lump-sum amount that a series of future payments is worth right now."
966
+ },
967
+ "fv": {
968
+ "name": "fv",
969
+ "detail": "The future value, or a cash balance you want to attain after the last payment is made."
970
+ },
971
+ "type": {
972
+ "name": "type",
973
+ "detail": "The number 0 or 1 and indicates when payments are due."
730
974
  }
731
975
  }
732
976
  },
@@ -740,13 +984,29 @@
740
984
  }
741
985
  ],
742
986
  "functionParameter": {
743
- "number1": {
744
- "name": "number1",
745
- "detail": "first"
987
+ "rate": {
988
+ "name": "rate",
989
+ "detail": "The interest rate per period."
746
990
  },
747
- "number2": {
748
- "name": "number2",
749
- "detail": "second"
991
+ "per": {
992
+ "name": "per",
993
+ "detail": "The period for which you want to find the interest and must be in the range 1 to nper."
994
+ },
995
+ "nper": {
996
+ "name": "nper",
997
+ "detail": "The total number of payment periods in an annuity."
998
+ },
999
+ "pv": {
1000
+ "name": "pv",
1001
+ "detail": "The present value, or the lump-sum amount that a series of future payments is worth right now."
1002
+ },
1003
+ "fv": {
1004
+ "name": "fv",
1005
+ "detail": "The future value, or a cash balance you want to attain after the last payment is made."
1006
+ },
1007
+ "type": {
1008
+ "name": "type",
1009
+ "detail": "The number 0 or 1 and indicates when payments are due."
750
1010
  }
751
1011
  }
752
1012
  },
@@ -820,13 +1080,25 @@
820
1080
  }
821
1081
  ],
822
1082
  "functionParameter": {
823
- "number1": {
824
- "name": "number1",
825
- "detail": "first"
1083
+ "rate": {
1084
+ "name": "rate",
1085
+ "detail": "The interest rate per period."
826
1086
  },
827
- "number2": {
828
- "name": "number2",
829
- "detail": "second"
1087
+ "nper": {
1088
+ "name": "nper",
1089
+ "detail": "The total number of payment periods in an annuity."
1090
+ },
1091
+ "pmt": {
1092
+ "name": "pmt",
1093
+ "detail": "The payment made each period; it cannot change over the life of the annuity."
1094
+ },
1095
+ "fv": {
1096
+ "name": "fv",
1097
+ "detail": "The future value, or a cash balance you want to attain after the last payment is made."
1098
+ },
1099
+ "type": {
1100
+ "name": "type",
1101
+ "detail": "The number 0 or 1 and indicates when payments are due."
830
1102
  }
831
1103
  }
832
1104
  },
@@ -840,13 +1112,29 @@
840
1112
  }
841
1113
  ],
842
1114
  "functionParameter": {
843
- "number1": {
844
- "name": "number1",
845
- "detail": "first"
1115
+ "nper": {
1116
+ "name": "nper",
1117
+ "detail": "The total number of payment periods in an annuity."
846
1118
  },
847
- "number2": {
848
- "name": "number2",
849
- "detail": "second"
1119
+ "pmt": {
1120
+ "name": "pmt",
1121
+ "detail": "The payment made each period; it cannot change over the life of the annuity."
1122
+ },
1123
+ "pv": {
1124
+ "name": "pv",
1125
+ "detail": "The present value, or the lump-sum amount that a series of future payments is worth right now."
1126
+ },
1127
+ "fv": {
1128
+ "name": "fv",
1129
+ "detail": "The future value, or a cash balance you want to attain after the last payment is made."
1130
+ },
1131
+ "type": {
1132
+ "name": "type",
1133
+ "detail": "The number 0 or 1 and indicates when payments are due."
1134
+ },
1135
+ "guess": {
1136
+ "name": "guess",
1137
+ "detail": "Your guess for what the rate will be."
850
1138
  }
851
1139
  }
852
1140
  },
@@ -2182,7 +2470,7 @@
2182
2470
  },
2183
2471
  "FLOOR_PRECISE": {
2184
2472
  "description": "Rounds a number down to the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded down.",
2185
- "abstract": "Rounds a number down to the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded down.",
2473
+ "abstract": "Rounds a number down to the nearest integer or to the nearest multiple of significance.",
2186
2474
  "links": [
2187
2475
  {
2188
2476
  "title": "Instruction",
@@ -2290,13 +2578,25 @@
2290
2578
  }
2291
2579
  ],
2292
2580
  "functionParameter": {
2293
- "number1": {
2294
- "name": "number1",
2295
- "detail": "first"
2581
+ "name1": {
2582
+ "name": "name1",
2583
+ "detail": "The first name to assign. Must start with a letter. Cannot be the output of a formula or conflict with range syntax."
2296
2584
  },
2297
- "number2": {
2298
- "name": "number2",
2299
- "detail": "second"
2585
+ "nameValue1": {
2586
+ "name": "name_value1",
2587
+ "detail": "The value that is assigned to name1."
2588
+ },
2589
+ "calculationOrName2": {
2590
+ "name": "calculation_or_name2",
2591
+ "detail": "One of the following:\n1.A calculation that uses all names within the LET function. This must be the last argument in the LET function.\n2.A second name to assign to a second name_value. If a name is specified, name_value2 and calculation_or_name3 become required."
2592
+ },
2593
+ "nameValue2": {
2594
+ "name": "name_value2",
2595
+ "detail": "The value that is assigned to calculation_or_name2."
2596
+ },
2597
+ "calculationOrName3": {
2598
+ "name": "calculation_or_name3",
2599
+ "detail": "One of the following:\n1.A calculation that uses all names within the LET function. The last argument in the LET function must be a calculation.\n2.A third name to assign to a third name_value. If a name is specified, name_value3 and calculation_or_name4 become required."
2300
2600
  }
2301
2601
  }
2302
2602
  },
@@ -2608,7 +2908,7 @@
2608
2908
  },
2609
2909
  "RANDARRAY": {
2610
2910
  "description": "Returns an array of random numbers between 0 and 1. However, you can specify the number of rows and columns to fill, minimum and maximum values, and whether to return whole numbers or decimal values.",
2611
- "abstract": "Returns an array of random numbers between 0 and 1. However, you can specify the number of rows and columns to fill, minimum and maximum values, and whether to return whole numbers or decimal values.",
2911
+ "abstract": "Returns an array of random numbers between 0 and 1.",
2612
2912
  "links": [
2613
2913
  {
2614
2914
  "title": "Instruction",
@@ -2963,8 +3263,8 @@
2963
3263
  }
2964
3264
  },
2965
3265
  "SUMIFS": {
2966
- "description": "Adds the cells in a range that meet multiple criteria",
2967
- "abstract": "Adds the cells in a range that meet multiple criteria",
3266
+ "description": "Adds all of its arguments that meet multiple criteria.",
3267
+ "abstract": "Adds all of its arguments that meet multiple criteria.",
2968
3268
  "links": [
2969
3269
  {
2970
3270
  "title": "Instruction",
@@ -3533,11 +3833,11 @@
3533
3833
  ],
3534
3834
  "functionParameter": {
3535
3835
  "value1": {
3536
- "name": "Value 1",
3836
+ "name": "value 1",
3537
3837
  "detail": "The first item, cell reference, or range within which you want to count numbers."
3538
3838
  },
3539
3839
  "value2": {
3540
- "name": "Value 2",
3840
+ "name": "value 2",
3541
3841
  "detail": "Up to 255 additional items, cell references, or ranges within which you want to count numbers."
3542
3842
  }
3543
3843
  }
@@ -5452,13 +5752,9 @@
5452
5752
  }
5453
5753
  ],
5454
5754
  "functionParameter": {
5455
- "number1": {
5456
- "name": "number1",
5457
- "detail": "first"
5458
- },
5459
- "number2": {
5460
- "name": "number2",
5461
- "detail": "second"
5755
+ "reference": {
5756
+ "name": "reference",
5757
+ "detail": "A reference to a cell or range of cells and can refer to multiple areas."
5462
5758
  }
5463
5759
  }
5464
5760
  },
@@ -5770,7 +6066,7 @@
5770
6066
  "functionParameter": {
5771
6067
  "reference": {
5772
6068
  "name": "reference",
5773
- "detail": "A reference to one or more cell ranges.\nIf you are entering a non-adjacent range for the reference, enclose reference in parentheses.\nIf each area in reference contains only one row or column, the row_num or column_num argument, respectively, is optional. For example, for a single row reference, use INDEX(reference,,column_num).\nIf array has more than one row and more than one column, and only row_num or column_num is used, INDEX returns an array of the entire row or column in array."
6069
+ "detail": "A reference to one or more cell ranges."
5774
6070
  },
5775
6071
  "rowNum": {
5776
6072
  "name": "row_num",
@@ -5782,7 +6078,7 @@
5782
6078
  },
5783
6079
  "areaNum": {
5784
6080
  "name": "area_num",
5785
- "detail": "Selects a range in reference from which to return the intersection of row_num and column_num. The first area selected or entered is numbered 1, the second is 2, and so on. If area_num is omitted, INDEX uses area 1. The areas listed here must all be located on one sheet. If you specify areas that are not on the same sheet as each other, it will cause a #VALUE! error. If you need to use ranges that are located on different sheets from each other, it is recommended that you use the array form of the INDEX function, and use another function to calculate the range that makes up the array. For example, you could use the CHOOSE function to calculate which range will be used."
6081
+ "detail": "Selects a range in reference from which to return the intersection of row_num and column_num."
5786
6082
  }
5787
6083
  }
5788
6084
  },
@@ -5798,11 +6094,11 @@
5798
6094
  "functionParameter": {
5799
6095
  "refText": {
5800
6096
  "name": "ref_text",
5801
- "detail": "A reference to a cell that contains an A1-style reference, an R1C1-style reference, a name defined as a reference, or a reference to a cell as a text string. If ref_text is not a valid cell reference, INDIRECT returns the #REF! error value.\nIf ref_text refers to a cell range outside the row limit of 1,048,576 or the column limit of 16,384 (XFD), INDIRECT returns a #REF! error."
6097
+ "detail": "A reference to a cell that contains an A1-style reference, an R1C1-style reference, a name defined as a reference, or a reference to a cell as a text string. "
5802
6098
  },
5803
6099
  "a1": {
5804
6100
  "name": "a1",
5805
- "detail": "A logical value that specifies what type of reference is contained in the cell ref_text.\nIf a1 is TRUE or omitted, ref_text is interpreted as an A1-style reference.\nIf a1 is FALSE, ref_text is interpreted as an R1C1-style reference."
6101
+ "detail": "A logical value that specifies what type of reference is contained in the cell ref_text."
5806
6102
  }
5807
6103
  }
5808
6104
  },
@@ -5831,7 +6127,7 @@
5831
6127
  }
5832
6128
  },
5833
6129
  "MATCH": {
5834
- "description": "The MATCH function searches for a specified item in a range of cells, and then returns the relative position of that item in the range. For example, if the range A1:A3 contains the values 5, 25, and 38, then the formula =MATCH(25,A1:A3,0) returns the number 2, because 25 is the second item in the range.",
6130
+ "description": "The MATCH function searches for a specified item in a range of cells, and then returns the relative position of that item in the range.",
5835
6131
  "abstract": "Looks up values in a reference or array",
5836
6132
  "links": [
5837
6133
  {
@@ -5842,7 +6138,7 @@
5842
6138
  "functionParameter": {
5843
6139
  "lookupValue": {
5844
6140
  "name": "lookup_value",
5845
- "detail": "The value that you want to match in lookup_array. For example, when you look up someone's number in a telephone book, you are using the person's name as the lookup value, but the telephone number is the value you want. The lookup_value argument can be a value (number, text, or logical value) or a cell reference to a number, text, or logical value."
6141
+ "detail": "The value that you want to match in lookup_array."
5846
6142
  },
5847
6143
  "lookupArray": {
5848
6144
  "name": "lookup_array",
@@ -5850,7 +6146,7 @@
5850
6146
  },
5851
6147
  "matchType": {
5852
6148
  "name": "match_type",
5853
- "detail": "The number -1, 0, or 1. The match_type argument specifies how Excel matches lookup_value with values in lookup_array. The default value for this argument is 1."
6149
+ "detail": "The number -1, 0, or 1."
5854
6150
  }
5855
6151
  }
5856
6152
  },
@@ -5866,15 +6162,15 @@
5866
6162
  "functionParameter": {
5867
6163
  "reference": {
5868
6164
  "name": "reference",
5869
- "detail": "The reference from which you want to base the offset. Reference must refer to a cell or range of adjacent cells; otherwise, OFFSET returns the #VALUE! error value."
6165
+ "detail": "The reference from which you want to base the offset."
5870
6166
  },
5871
6167
  "rows": {
5872
6168
  "name": "rows",
5873
- "detail": "The number of rows, up or down, that you want the upper-left cell to refer to. Using 5 as the rows argument specifies that the upper-left cell in the reference is five rows below reference. Rows can be positive (which means below the starting reference) or negative (which means above the starting reference)."
6169
+ "detail": "The number of rows, up or down, that you want the upper-left cell to refer to."
5874
6170
  },
5875
6171
  "cols": {
5876
6172
  "name": "columns",
5877
- "detail": "The number of columns, to the left or right, that you want the upper-left cell of the result to refer to. Using 5 as the cols argument specifies that the upper-left cell in the reference is five columns to the right of reference. Cols can be positive (which means to the right of the starting reference) or negative (which means to the left of the starting reference)."
6173
+ "detail": "The number of columns, to the left or right, that you want the upper-left cell of the result to refer to."
5878
6174
  },
5879
6175
  "height": {
5880
6176
  "name": "height",
@@ -6209,15 +6505,15 @@
6209
6505
  "detail": "The array or range to return"
6210
6506
  },
6211
6507
  "ifNotFound": {
6212
- "name": "[if_not_found]",
6508
+ "name": "if_not_found",
6213
6509
  "detail": "Where a valid match is not found, return the [if_not_found] text you supply. If a valid match is not found, and [if_not_found] is missing, #N/A is returned."
6214
6510
  },
6215
6511
  "matchMode": {
6216
- "name": "[match_mode]",
6512
+ "name": "match_mode",
6217
6513
  "detail": "Specify the match type: 0 - Exact match. If none found, return #N/A. This is the default. -1 - Exact match. If none found, return the next smaller item. 1 - Exact match. If none found, return the next larger item. 2 - A wildcard match where *, ?, and ~ have special meaning."
6218
6514
  },
6219
6515
  "searchMode": {
6220
- "name": "[search_mode]",
6516
+ "name": "search_mode",
6221
6517
  "detail": "Specify the search mode to use: 1 - Perform a search starting at the first item. This is the default. -1 - Perform a reverse search starting at the last item. 2 - Perform a binary search that relies on lookup_array being sorted in ascending order. If not sorted, invalid results will be returned. -2 - Perform a binary search that relies on lookup_array being sorted in descending order. If not sorted, invalid results will be returned."
6222
6518
  }
6223
6519
  }
@@ -7478,26 +7774,17 @@
7478
7774
  }
7479
7775
  }
7480
7776
  },
7481
- "FALSE": {
7482
- "description": "Returns the logical value FALSE",
7483
- "abstract": "Returns the logical value FALSE",
7484
- "links": [
7485
- {
7486
- "title": "Instruction",
7487
- "url": "https://support.microsoft.com/en-us/office/false-function-2d58dfa5-9c03-4259-bf8f-f0ae14346904"
7488
- }
7489
- ],
7490
- "functionParameter": {
7491
- "number1": {
7492
- "name": "number1",
7493
- "detail": "first"
7494
- },
7495
- "number2": {
7496
- "name": "number2",
7497
- "detail": "second"
7498
- }
7499
- }
7500
- },
7777
+ "FALSE": {
7778
+ "description": "Returns the logical value FALSE.",
7779
+ "abstract": "Returns the logical value FALSE.",
7780
+ "links": [
7781
+ {
7782
+ "title": "Instruction",
7783
+ "url": "https://support.microsoft.com/en-us/office/false-function-2d58dfa5-9c03-4259-bf8f-f0ae14346904"
7784
+ }
7785
+ ],
7786
+ "functionParameter": {}
7787
+ },
7501
7788
  "IF": {
7502
7789
  "description": "Specifies a logical test to perform",
7503
7790
  "abstract": "Specifies a logical test to perform",
@@ -7552,13 +7839,13 @@
7552
7839
  }
7553
7840
  ],
7554
7841
  "functionParameter": {
7555
- "number1": {
7556
- "name": "number1",
7557
- "detail": "first"
7842
+ "value": {
7843
+ "name": "value",
7844
+ "detail": "The argument that is checked for the #N/A error value."
7558
7845
  },
7559
- "number2": {
7560
- "name": "number2",
7561
- "detail": "second"
7846
+ "valueIfNa": {
7847
+ "name": "value_if_na",
7848
+ "detail": "The value to return if the formula evaluates to the #N/A error value."
7562
7849
  }
7563
7850
  }
7564
7851
  },
@@ -7572,13 +7859,21 @@
7572
7859
  }
7573
7860
  ],
7574
7861
  "functionParameter": {
7575
- "number1": {
7576
- "name": "number1",
7577
- "detail": "first"
7862
+ "logicalTest1": {
7863
+ "name": "logical_test1",
7864
+ "detail": "Condition that evaluates to TRUE or FALSE."
7578
7865
  },
7579
- "number2": {
7580
- "name": "number2",
7581
- "detail": "second"
7866
+ "valueIfTrue1": {
7867
+ "name": "value_if_true1",
7868
+ "detail": "Result to be returned if logical_test1 evaluates to TRUE. Can be empty."
7869
+ },
7870
+ "logicalTest2": {
7871
+ "name": "logical_test2",
7872
+ "detail": "Condition that evaluates to TRUE or FALSE."
7873
+ },
7874
+ "valueIfTrue2": {
7875
+ "name": "value_if_true2",
7876
+ "detail": "Result to be returned if logical_testN evaluates to TRUE. Each value_if_trueN corresponds with a condition logical_testN. Can be empty."
7582
7877
  }
7583
7878
  }
7584
7879
  },
@@ -7647,8 +7942,8 @@
7647
7942
  }
7648
7943
  },
7649
7944
  "NOT": {
7650
- "description": "Reverses the logic of its argument",
7651
- "abstract": "Reverses the logic of its argument",
7945
+ "description": "Reverses the logic of its argument.",
7946
+ "abstract": "Reverses the logic of its argument.",
7652
7947
  "links": [
7653
7948
  {
7654
7949
  "title": "Instruction",
@@ -7656,13 +7951,9 @@
7656
7951
  }
7657
7952
  ],
7658
7953
  "functionParameter": {
7659
- "number1": {
7660
- "name": "number1",
7661
- "detail": "first"
7662
- },
7663
- "number2": {
7664
- "name": "number2",
7665
- "detail": "second"
7954
+ "logical": {
7955
+ "name": "logical",
7956
+ "detail": "The condition that you want to reverse the logic for, which can evaluate to either TRUE or FALSE."
7666
7957
  }
7667
7958
  }
7668
7959
  },
@@ -7736,39 +8027,42 @@
7736
8027
  }
7737
8028
  ],
7738
8029
  "functionParameter": {
7739
- "number1": {
7740
- "name": "number1",
7741
- "detail": "first"
8030
+ "expression": {
8031
+ "name": "expression",
8032
+ "detail": "Expression is the value (such as a number, date or some text) that will be compared against value1…value126."
7742
8033
  },
7743
- "number2": {
7744
- "name": "number2",
7745
- "detail": "second"
8034
+ "value1": {
8035
+ "name": "value1",
8036
+ "detail": "ValueN is a value that will be compared against expression."
8037
+ },
8038
+ "result1": {
8039
+ "name": "result1",
8040
+ "detail": "ResultN is the value to be returned when the corresponding valueN argument matches expression. ResultN and must be supplied for each corresponding valueN argument."
8041
+ },
8042
+ "defaultOrValue2": {
8043
+ "name": "default_or_value2",
8044
+ "detail": "Default is the value to return in case no matches are found in the valueN expressions. The Default argument is identified by having no corresponding resultN expression (see examples). Default must be the final argument in the function."
8045
+ },
8046
+ "result2": {
8047
+ "name": "result2",
8048
+ "detail": "ResultN is the value to be returned when the corresponding valueN argument matches expression. ResultN and must be supplied for each corresponding valueN argument."
7746
8049
  }
7747
8050
  }
7748
8051
  },
7749
8052
  "TRUE": {
7750
- "description": "Returns the logical value TRUE",
7751
- "abstract": "Returns the logical value TRUE",
8053
+ "description": "Returns the logical value TRUE.",
8054
+ "abstract": "Returns the logical value TRUE.",
7752
8055
  "links": [
7753
8056
  {
7754
8057
  "title": "Instruction",
7755
8058
  "url": "https://support.microsoft.com/en-us/office/true-function-7652c6e3-8987-48d0-97cd-ef223246b3fb"
7756
8059
  }
7757
8060
  ],
7758
- "functionParameter": {
7759
- "number1": {
7760
- "name": "number1",
7761
- "detail": "first"
7762
- },
7763
- "number2": {
7764
- "name": "number2",
7765
- "detail": "second"
7766
- }
7767
- }
8061
+ "functionParameter": {}
7768
8062
  },
7769
8063
  "XOR": {
7770
- "description": "Returns a logical exclusive OR of all arguments",
7771
- "abstract": "Returns a logical exclusive OR of all arguments",
8064
+ "description": "Returns TRUE if an odd number of its arguments evaluate to TRUE, and FALSE if an even number of its arguments evaluate to TRUE.",
8065
+ "abstract": "Returns TRUE if an odd number of arguments are TRUE",
7772
8066
  "links": [
7773
8067
  {
7774
8068
  "title": "Instruction",
@@ -7776,13 +8070,13 @@
7776
8070
  }
7777
8071
  ],
7778
8072
  "functionParameter": {
7779
- "number1": {
7780
- "name": "number1",
7781
- "detail": "first"
8073
+ "logical1": {
8074
+ "name": "logical1",
8075
+ "detail": "The first condition that you want to test that can evaluate to either TRUE or FALSE."
7782
8076
  },
7783
- "number2": {
7784
- "name": "number2",
7785
- "detail": "second"
8077
+ "logical2": {
8078
+ "name": "logical2",
8079
+ "detail": "Additional conditions that you want to test that can evaluate to either TRUE or FALSE, up to a maximum of 255 conditions."
7786
8080
  }
7787
8081
  }
7788
8082
  },
@@ -8164,13 +8458,13 @@
8164
8458
  }
8165
8459
  ],
8166
8460
  "functionParameter": {
8167
- "number1": {
8168
- "name": "number1",
8169
- "detail": "first"
8461
+ "x": {
8462
+ "name": "X",
8463
+ "detail": "The value at which to evaluate the function."
8170
8464
  },
8171
- "number2": {
8172
- "name": "number2",
8173
- "detail": "second"
8465
+ "n": {
8466
+ "name": "N",
8467
+ "detail": "The order of the Bessel function. If n is not an integer, it is truncated."
8174
8468
  }
8175
8469
  }
8176
8470
  },
@@ -8184,13 +8478,13 @@
8184
8478
  }
8185
8479
  ],
8186
8480
  "functionParameter": {
8187
- "number1": {
8188
- "name": "number1",
8189
- "detail": "first"
8481
+ "x": {
8482
+ "name": "X",
8483
+ "detail": "The value at which to evaluate the function."
8190
8484
  },
8191
- "number2": {
8192
- "name": "number2",
8193
- "detail": "second"
8485
+ "n": {
8486
+ "name": "N",
8487
+ "detail": "The order of the Bessel function. If n is not an integer, it is truncated."
8194
8488
  }
8195
8489
  }
8196
8490
  },
@@ -8204,13 +8498,13 @@
8204
8498
  }
8205
8499
  ],
8206
8500
  "functionParameter": {
8207
- "number1": {
8208
- "name": "number1",
8209
- "detail": "first"
8501
+ "x": {
8502
+ "name": "X",
8503
+ "detail": "The value at which to evaluate the function."
8210
8504
  },
8211
- "number2": {
8212
- "name": "number2",
8213
- "detail": "second"
8505
+ "n": {
8506
+ "name": "N",
8507
+ "detail": "The order of the Bessel function. If n is not an integer, it is truncated."
8214
8508
  }
8215
8509
  }
8216
8510
  },
@@ -8224,13 +8518,13 @@
8224
8518
  }
8225
8519
  ],
8226
8520
  "functionParameter": {
8227
- "number1": {
8228
- "name": "number1",
8229
- "detail": "first"
8521
+ "x": {
8522
+ "name": "X",
8523
+ "detail": "The value at which to evaluate the function."
8230
8524
  },
8231
- "number2": {
8232
- "name": "number2",
8233
- "detail": "second"
8525
+ "n": {
8526
+ "name": "N",
8527
+ "detail": "The order of the Bessel function. If n is not an integer, it is truncated."
8234
8528
  }
8235
8529
  }
8236
8530
  },
@@ -8244,13 +8538,9 @@
8244
8538
  }
8245
8539
  ],
8246
8540
  "functionParameter": {
8247
- "number1": {
8248
- "name": "number1",
8249
- "detail": "first"
8250
- },
8251
- "number2": {
8252
- "name": "number2",
8253
- "detail": "second"
8541
+ "number": {
8542
+ "name": "number",
8543
+ "detail": "The binary number you want to convert."
8254
8544
  }
8255
8545
  }
8256
8546
  },
@@ -8264,13 +8554,13 @@
8264
8554
  }
8265
8555
  ],
8266
8556
  "functionParameter": {
8267
- "number1": {
8268
- "name": "number1",
8269
- "detail": "first"
8557
+ "number": {
8558
+ "name": "number",
8559
+ "detail": "The binary number you want to convert."
8270
8560
  },
8271
- "number2": {
8272
- "name": "number2",
8273
- "detail": "second"
8561
+ "places": {
8562
+ "name": "places",
8563
+ "detail": "The number of characters to use."
8274
8564
  }
8275
8565
  }
8276
8566
  },
@@ -8284,13 +8574,13 @@
8284
8574
  }
8285
8575
  ],
8286
8576
  "functionParameter": {
8287
- "number1": {
8288
- "name": "number1",
8289
- "detail": "first"
8577
+ "number": {
8578
+ "name": "number",
8579
+ "detail": "The binary number you want to convert."
8290
8580
  },
8291
- "number2": {
8292
- "name": "number2",
8293
- "detail": "second"
8581
+ "places": {
8582
+ "name": "places",
8583
+ "detail": "The number of characters to use."
8294
8584
  }
8295
8585
  }
8296
8586
  },
@@ -8306,11 +8596,11 @@
8306
8596
  "functionParameter": {
8307
8597
  "number1": {
8308
8598
  "name": "number1",
8309
- "detail": "first"
8599
+ "detail": "Must be in decimal form and greater than or equal to 0."
8310
8600
  },
8311
8601
  "number2": {
8312
8602
  "name": "number2",
8313
- "detail": "second"
8603
+ "detail": "Must be in decimal form and greater than or equal to 0."
8314
8604
  }
8315
8605
  }
8316
8606
  },
@@ -8324,13 +8614,13 @@
8324
8614
  }
8325
8615
  ],
8326
8616
  "functionParameter": {
8327
- "number1": {
8328
- "name": "number1",
8329
- "detail": "first"
8617
+ "number": {
8618
+ "name": "number",
8619
+ "detail": "Number must be an integer greater than or equal to 0."
8330
8620
  },
8331
- "number2": {
8332
- "name": "number2",
8333
- "detail": "second"
8621
+ "shiftAmount": {
8622
+ "name": "shift_amount",
8623
+ "detail": "Shift_amount must be an integer."
8334
8624
  }
8335
8625
  }
8336
8626
  },
@@ -8346,11 +8636,11 @@
8346
8636
  "functionParameter": {
8347
8637
  "number1": {
8348
8638
  "name": "number1",
8349
- "detail": "first"
8639
+ "detail": "Must be in decimal form and greater than or equal to 0."
8350
8640
  },
8351
8641
  "number2": {
8352
8642
  "name": "number2",
8353
- "detail": "second"
8643
+ "detail": "Must be in decimal form and greater than or equal to 0."
8354
8644
  }
8355
8645
  }
8356
8646
  },
@@ -8364,13 +8654,13 @@
8364
8654
  }
8365
8655
  ],
8366
8656
  "functionParameter": {
8367
- "number1": {
8368
- "name": "number1",
8369
- "detail": "first"
8657
+ "number": {
8658
+ "name": "number",
8659
+ "detail": "Number must be an integer greater than or equal to 0."
8370
8660
  },
8371
- "number2": {
8372
- "name": "number2",
8373
- "detail": "second"
8661
+ "shiftAmount": {
8662
+ "name": "shift_amount",
8663
+ "detail": "Shift_amount must be an integer."
8374
8664
  }
8375
8665
  }
8376
8666
  },
@@ -8386,11 +8676,11 @@
8386
8676
  "functionParameter": {
8387
8677
  "number1": {
8388
8678
  "name": "number1",
8389
- "detail": "first"
8679
+ "detail": "Must be in decimal form and greater than or equal to 0."
8390
8680
  },
8391
8681
  "number2": {
8392
8682
  "name": "number2",
8393
- "detail": "second"
8683
+ "detail": "Must be in decimal form and greater than or equal to 0."
8394
8684
  }
8395
8685
  }
8396
8686
  },
@@ -8404,13 +8694,17 @@
8404
8694
  }
8405
8695
  ],
8406
8696
  "functionParameter": {
8407
- "number1": {
8408
- "name": "number1",
8409
- "detail": "first"
8697
+ "realNum": {
8698
+ "name": "real_num",
8699
+ "detail": "The real coefficient of the complex number."
8410
8700
  },
8411
- "number2": {
8412
- "name": "number2",
8413
- "detail": "second"
8701
+ "iNum": {
8702
+ "name": "i_num",
8703
+ "detail": "The imaginary coefficient of the complex number."
8704
+ },
8705
+ "suffix": {
8706
+ "name": "suffix",
8707
+ "detail": "The suffix for the imaginary component of the complex number. If omitted, suffix is assumed to be \"i\"."
8414
8708
  }
8415
8709
  }
8416
8710
  },
@@ -8424,13 +8718,17 @@
8424
8718
  }
8425
8719
  ],
8426
8720
  "functionParameter": {
8427
- "number1": {
8428
- "name": "number1",
8429
- "detail": "first"
8721
+ "number": {
8722
+ "name": "number",
8723
+ "detail": "is the value in from_units to convert."
8430
8724
  },
8431
- "number2": {
8432
- "name": "number2",
8433
- "detail": "second"
8725
+ "fromUnit": {
8726
+ "name": "from_unit",
8727
+ "detail": "is the units for number."
8728
+ },
8729
+ "toUnit": {
8730
+ "name": "to_unit",
8731
+ "detail": "is the units for the result."
8434
8732
  }
8435
8733
  }
8436
8734
  },
@@ -8444,13 +8742,13 @@
8444
8742
  }
8445
8743
  ],
8446
8744
  "functionParameter": {
8447
- "number1": {
8448
- "name": "number1",
8449
- "detail": "first"
8745
+ "number": {
8746
+ "name": "number",
8747
+ "detail": "The decimal number you want to convert."
8450
8748
  },
8451
- "number2": {
8452
- "name": "number2",
8453
- "detail": "second"
8749
+ "places": {
8750
+ "name": "places",
8751
+ "detail": "The number of characters to use."
8454
8752
  }
8455
8753
  }
8456
8754
  },
@@ -8464,13 +8762,13 @@
8464
8762
  }
8465
8763
  ],
8466
8764
  "functionParameter": {
8467
- "number1": {
8468
- "name": "number1",
8469
- "detail": "first"
8765
+ "number": {
8766
+ "name": "number",
8767
+ "detail": "The decimal number you want to convert."
8470
8768
  },
8471
- "number2": {
8472
- "name": "number2",
8473
- "detail": "second"
8769
+ "places": {
8770
+ "name": "places",
8771
+ "detail": "The number of characters to use."
8474
8772
  }
8475
8773
  }
8476
8774
  },
@@ -8484,13 +8782,13 @@
8484
8782
  }
8485
8783
  ],
8486
8784
  "functionParameter": {
8487
- "number1": {
8488
- "name": "number1",
8489
- "detail": "first"
8785
+ "number": {
8786
+ "name": "number",
8787
+ "detail": "The decimal number you want to convert."
8490
8788
  },
8491
- "number2": {
8492
- "name": "number2",
8493
- "detail": "second"
8789
+ "places": {
8790
+ "name": "places",
8791
+ "detail": "The number of characters to use."
8494
8792
  }
8495
8793
  }
8496
8794
  },
@@ -8506,11 +8804,11 @@
8506
8804
  "functionParameter": {
8507
8805
  "number1": {
8508
8806
  "name": "number1",
8509
- "detail": "first"
8807
+ "detail": "The first number."
8510
8808
  },
8511
8809
  "number2": {
8512
8810
  "name": "number2",
8513
- "detail": "second"
8811
+ "detail": "The second number. If omitted, number2 is assumed to be zero."
8514
8812
  }
8515
8813
  }
8516
8814
  },
@@ -8524,13 +8822,13 @@
8524
8822
  }
8525
8823
  ],
8526
8824
  "functionParameter": {
8527
- "number1": {
8528
- "name": "number1",
8529
- "detail": "first"
8825
+ "lowerLimit": {
8826
+ "name": "lower_limit",
8827
+ "detail": "The lower bound for integrating ERF."
8530
8828
  },
8531
- "number2": {
8532
- "name": "number2",
8533
- "detail": "second"
8829
+ "upperLimit": {
8830
+ "name": "upper_limit",
8831
+ "detail": "The upper bound for integrating ERF. If omitted, ERF integrates between zero and lower_limit."
8534
8832
  }
8535
8833
  }
8536
8834
  },
@@ -8544,13 +8842,9 @@
8544
8842
  }
8545
8843
  ],
8546
8844
  "functionParameter": {
8547
- "number1": {
8548
- "name": "number1",
8549
- "detail": "first"
8550
- },
8551
- "number2": {
8552
- "name": "number2",
8553
- "detail": "second"
8845
+ "x": {
8846
+ "name": "x",
8847
+ "detail": "The lower bound for integrating ERF.PRECISE."
8554
8848
  }
8555
8849
  }
8556
8850
  },
@@ -8564,13 +8858,9 @@
8564
8858
  }
8565
8859
  ],
8566
8860
  "functionParameter": {
8567
- "number1": {
8568
- "name": "number1",
8569
- "detail": "first"
8570
- },
8571
- "number2": {
8572
- "name": "number2",
8573
- "detail": "second"
8861
+ "x": {
8862
+ "name": "x",
8863
+ "detail": "The lower bound for integrating ERFC."
8574
8864
  }
8575
8865
  }
8576
8866
  },
@@ -8584,13 +8874,9 @@
8584
8874
  }
8585
8875
  ],
8586
8876
  "functionParameter": {
8587
- "number1": {
8588
- "name": "number1",
8589
- "detail": "first"
8590
- },
8591
- "number2": {
8592
- "name": "number2",
8593
- "detail": "second"
8877
+ "x": {
8878
+ "name": "x",
8879
+ "detail": "The lower bound for integrating ERFC.PRECISE."
8594
8880
  }
8595
8881
  }
8596
8882
  },
@@ -8624,13 +8910,13 @@
8624
8910
  }
8625
8911
  ],
8626
8912
  "functionParameter": {
8627
- "number1": {
8628
- "name": "number1",
8629
- "detail": "first"
8913
+ "number": {
8914
+ "name": "number",
8915
+ "detail": "The hexadecimal number you want to convert."
8630
8916
  },
8631
- "number2": {
8632
- "name": "number2",
8633
- "detail": "second"
8917
+ "places": {
8918
+ "name": "places",
8919
+ "detail": "The number of characters to use."
8634
8920
  }
8635
8921
  }
8636
8922
  },
@@ -8644,13 +8930,9 @@
8644
8930
  }
8645
8931
  ],
8646
8932
  "functionParameter": {
8647
- "number1": {
8648
- "name": "number1",
8649
- "detail": "first"
8650
- },
8651
- "number2": {
8652
- "name": "number2",
8653
- "detail": "second"
8933
+ "number": {
8934
+ "name": "number",
8935
+ "detail": "The hexadecimal number you want to convert."
8654
8936
  }
8655
8937
  }
8656
8938
  },
@@ -8664,13 +8946,13 @@
8664
8946
  }
8665
8947
  ],
8666
8948
  "functionParameter": {
8667
- "number1": {
8668
- "name": "number1",
8669
- "detail": "first"
8949
+ "number": {
8950
+ "name": "number",
8951
+ "detail": "The hexadecimal number you want to convert."
8670
8952
  },
8671
- "number2": {
8672
- "name": "number2",
8673
- "detail": "second"
8953
+ "places": {
8954
+ "name": "places",
8955
+ "detail": "The number of characters to use."
8674
8956
  }
8675
8957
  }
8676
8958
  },
@@ -9184,13 +9466,13 @@
9184
9466
  }
9185
9467
  ],
9186
9468
  "functionParameter": {
9187
- "number1": {
9188
- "name": "number1",
9189
- "detail": "first"
9469
+ "number": {
9470
+ "name": "number",
9471
+ "detail": "The octal number you want to convert."
9190
9472
  },
9191
- "number2": {
9192
- "name": "number2",
9193
- "detail": "second"
9473
+ "places": {
9474
+ "name": "places",
9475
+ "detail": "The number of characters to use."
9194
9476
  }
9195
9477
  }
9196
9478
  },
@@ -9204,13 +9486,9 @@
9204
9486
  }
9205
9487
  ],
9206
9488
  "functionParameter": {
9207
- "number1": {
9208
- "name": "number1",
9209
- "detail": "first"
9210
- },
9211
- "number2": {
9212
- "name": "number2",
9213
- "detail": "second"
9489
+ "number": {
9490
+ "name": "number",
9491
+ "detail": "The octal number you want to convert."
9214
9492
  }
9215
9493
  }
9216
9494
  },
@@ -9224,13 +9502,13 @@
9224
9502
  }
9225
9503
  ],
9226
9504
  "functionParameter": {
9227
- "number1": {
9228
- "name": "number1",
9229
- "detail": "first"
9505
+ "number": {
9506
+ "name": "number",
9507
+ "detail": "The octal number you want to convert."
9230
9508
  },
9231
- "number2": {
9232
- "name": "number2",
9233
- "detail": "second"
9509
+ "places": {
9510
+ "name": "places",
9511
+ "detail": "The number of characters to use."
9234
9512
  }
9235
9513
  }
9236
9514
  },