@univerjs/sheets-formula 0.1.16 → 0.2.0

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 (38) hide show
  1. package/lib/cjs/index.js +4 -4
  2. package/lib/es/index.js +3097 -3017
  3. package/lib/locale/en-US.json +175 -180
  4. package/lib/locale/ru-RU.json +174 -179
  5. package/lib/locale/zh-CN.json +179 -184
  6. package/lib/types/commands/commands/formula-clipboard.command.d.ts +0 -1
  7. package/lib/types/commands/operations/__tests__/create-command-test-bed.d.ts +6 -6
  8. package/lib/types/controllers/formula-alert-render.controller.d.ts +13 -0
  9. package/lib/types/controllers/formula-clipboard.controller.d.ts +5 -4
  10. package/lib/types/controllers/formula-editor-show.controller.d.ts +2 -6
  11. package/lib/types/controllers/formula-ui.controller.d.ts +1 -1
  12. package/lib/types/controllers/prompt.controller.d.ts +2 -3
  13. package/lib/types/controllers/trigger-calculation.controller.d.ts +5 -1
  14. package/lib/types/controllers/update-formula.controller.d.ts +3 -1
  15. package/lib/types/formula-ui-plugin.d.ts +15 -3
  16. package/lib/types/index.d.ts +10 -2
  17. package/lib/types/locale/en-US.d.ts +79 -84
  18. package/lib/types/locale/function-list/date/en-US.d.ts +9 -22
  19. package/lib/types/locale/function-list/date/ja-JP.d.ts +9 -22
  20. package/lib/types/locale/function-list/date/zh-CN.d.ts +9 -22
  21. package/lib/types/locale/function-list/lookup/en-US.d.ts +6 -2
  22. package/lib/types/locale/function-list/lookup/ja-JP.d.ts +6 -2
  23. package/lib/types/locale/function-list/lookup/zh-CN.d.ts +6 -2
  24. package/lib/types/locale/function-list/math/en-US.d.ts +9 -37
  25. package/lib/types/locale/function-list/math/ja-JP.d.ts +9 -37
  26. package/lib/types/locale/function-list/math/zh-CN.d.ts +9 -37
  27. package/lib/types/locale/function-list/statistical/en-US.d.ts +53 -21
  28. package/lib/types/locale/function-list/statistical/ja-JP.d.ts +55 -23
  29. package/lib/types/locale/function-list/statistical/zh-CN.d.ts +53 -21
  30. package/lib/types/locale/function-list/text/en-US.d.ts +2 -2
  31. package/lib/types/locale/function-list/text/ja-JP.d.ts +2 -2
  32. package/lib/types/locale/function-list/text/ru-RU.d.ts +2 -2
  33. package/lib/types/locale/function-list/text/zh-CN.d.ts +2 -2
  34. package/lib/types/locale/ru-RU.d.ts +79 -84
  35. package/lib/types/locale/zh-CN.d.ts +79 -84
  36. package/lib/umd/index.js +4 -4
  37. package/package.json +24 -24
  38. package/lib/types/controllers/formula-alert.controller.d.ts +0 -12
@@ -1155,7 +1155,7 @@
1155
1155
  }
1156
1156
  },
1157
1157
  "DATEVALUE": {
1158
- "description": "Converts a date in the form of text to a serial number",
1158
+ "description": "Converts a date in the form of text to a serial number.",
1159
1159
  "abstract": "Converts a date in the form of text to a serial number",
1160
1160
  "links": [
1161
1161
  {
@@ -1164,13 +1164,9 @@
1164
1164
  }
1165
1165
  ],
1166
1166
  "functionParameter": {
1167
- "number1": {
1168
- "name": "number1",
1169
- "detail": "first"
1170
- },
1171
- "number2": {
1172
- "name": "number2",
1173
- "detail": "second"
1167
+ "dateText": {
1168
+ "name": "date_text",
1169
+ "detail": "Text that represents a date in an Excel date format, or a reference to a cell that contains text that represents a date in an Excel date format. For example, \"1/30/2008\" or \"30-Jan-2008\" are text strings within quotation marks that represent dates.\nUsing the default date system in Microsoft Excel for Windows, the date_text argument must represent a date between January 1, 1900 and December 31, 9999. The DATEVALUE function returns the #VALUE! error value if the value of the date_text argument falls outside of this range.\nIf the year portion of the date_text argument is omitted, the DATEVALUE function uses the current year from your computer's built-in clock. Time information in the date_text argument is ignored."
1174
1170
  }
1175
1171
  }
1176
1172
  },
@@ -1387,7 +1383,7 @@
1387
1383
  }
1388
1384
  },
1389
1385
  "NOW": {
1390
- "description": "Returns the serial number of the current date and time",
1386
+ "description": "Returns the serial number of the current date and time.",
1391
1387
  "abstract": "Returns the serial number of the current date and time",
1392
1388
  "links": [
1393
1389
  {
@@ -1395,16 +1391,7 @@
1395
1391
  "url": "https://support.microsoft.com/en-us/office/now-function-3337fd29-145a-4347-b2e6-20c904739c46"
1396
1392
  }
1397
1393
  ],
1398
- "functionParameter": {
1399
- "number1": {
1400
- "name": "number1",
1401
- "detail": "first"
1402
- },
1403
- "number2": {
1404
- "name": "number2",
1405
- "detail": "second"
1406
- }
1407
- }
1394
+ "functionParameter": {}
1408
1395
  },
1409
1396
  "SECOND": {
1410
1397
  "description": "Converts a serial number to a second",
@@ -1427,7 +1414,7 @@
1427
1414
  }
1428
1415
  },
1429
1416
  "TIME": {
1430
- "description": "Returns the serial number of a particular time",
1417
+ "description": "Returns the serial number of a particular time.",
1431
1418
  "abstract": "Returns the serial number of a particular time",
1432
1419
  "links": [
1433
1420
  {
@@ -1436,18 +1423,22 @@
1436
1423
  }
1437
1424
  ],
1438
1425
  "functionParameter": {
1439
- "number1": {
1440
- "name": "number1",
1441
- "detail": "first"
1426
+ "hour": {
1427
+ "name": "hour",
1428
+ "detail": "A number from 0 (zero) to 32767 representing the hour. Any value greater than 23 will be divided by 24 and the remainder will be treated as the hour value. For example, TIME(27,0,0) = TIME(3,0,0) = .125 or 3:00 AM."
1442
1429
  },
1443
- "number2": {
1444
- "name": "number2",
1445
- "detail": "second"
1430
+ "minute": {
1431
+ "name": "minute",
1432
+ "detail": "A number from 0 to 32767 representing the minute. Any value greater than 59 will be converted to hours and minutes. For example, TIME(0,750,0) = TIME(12,30,0) = .520833 or 12:30 PM."
1433
+ },
1434
+ "second": {
1435
+ "name": "second",
1436
+ "detail": "A number from 0 to 32767 representing the second. Any value greater than 59 will be converted to hours, minutes, and seconds. For example, TIME(0,0,2000) = TIME(0,33,22) = .023148 or 12:33:20 AM."
1446
1437
  }
1447
1438
  }
1448
1439
  },
1449
1440
  "TIMEVALUE": {
1450
- "description": "Converts a time in the form of text to a serial number",
1441
+ "description": "Converts a time in the form of text to a serial number.",
1451
1442
  "abstract": "Converts a time in the form of text to a serial number",
1452
1443
  "links": [
1453
1444
  {
@@ -1456,13 +1447,9 @@
1456
1447
  }
1457
1448
  ],
1458
1449
  "functionParameter": {
1459
- "number1": {
1460
- "name": "number1",
1461
- "detail": "first"
1462
- },
1463
- "number2": {
1464
- "name": "number2",
1465
- "detail": "second"
1450
+ "timeText": {
1451
+ "name": "time_text",
1452
+ "detail": "A text string that represents a time in any one of the Microsoft Excel time formats; for example, \"6:45 PM\" and \"18:45\" text strings within quotation marks that represent time."
1466
1453
  }
1467
1454
  }
1468
1455
  },
@@ -1718,7 +1705,7 @@
1718
1705
  }
1719
1706
  },
1720
1707
  "ASIN": {
1721
- "description": "Returns the arcsine of a number",
1708
+ "description": "Returns the arcsine of a number.",
1722
1709
  "abstract": "Returns the arcsine of a number",
1723
1710
  "links": [
1724
1711
  {
@@ -1727,18 +1714,14 @@
1727
1714
  }
1728
1715
  ],
1729
1716
  "functionParameter": {
1730
- "number1": {
1731
- "name": "number1",
1732
- "detail": "first"
1733
- },
1734
- "number2": {
1735
- "name": "number2",
1736
- "detail": "second"
1717
+ "number": {
1718
+ "name": "number",
1719
+ "detail": "The sine of the angle you want and must be from -1 to 1."
1737
1720
  }
1738
1721
  }
1739
1722
  },
1740
1723
  "ASINH": {
1741
- "description": "Returns the inverse hyperbolic sine of a number",
1724
+ "description": "Returns the inverse hyperbolic sine of a number.",
1742
1725
  "abstract": "Returns the inverse hyperbolic sine of a number",
1743
1726
  "links": [
1744
1727
  {
@@ -1747,18 +1730,14 @@
1747
1730
  }
1748
1731
  ],
1749
1732
  "functionParameter": {
1750
- "number1": {
1751
- "name": "number1",
1752
- "detail": "first"
1753
- },
1754
- "number2": {
1755
- "name": "number2",
1756
- "detail": "second"
1733
+ "number": {
1734
+ "name": "number",
1735
+ "detail": "Any real number."
1757
1736
  }
1758
1737
  }
1759
1738
  },
1760
1739
  "ATAN": {
1761
- "description": "Returns the arctangent of a number",
1740
+ "description": "Returns the arctangent of a number.",
1762
1741
  "abstract": "Returns the arctangent of a number",
1763
1742
  "links": [
1764
1743
  {
@@ -1767,18 +1746,14 @@
1767
1746
  }
1768
1747
  ],
1769
1748
  "functionParameter": {
1770
- "number1": {
1771
- "name": "number1",
1772
- "detail": "first"
1773
- },
1774
- "number2": {
1775
- "name": "number2",
1776
- "detail": "second"
1749
+ "number": {
1750
+ "name": "number",
1751
+ "detail": "The tangent of the angle you want."
1777
1752
  }
1778
1753
  }
1779
1754
  },
1780
1755
  "ATAN2": {
1781
- "description": "Returns the arctangent from x- and y-coordinates",
1756
+ "description": "Returns the arctangent from x- and y-coordinates.",
1782
1757
  "abstract": "Returns the arctangent from x- and y-coordinates",
1783
1758
  "links": [
1784
1759
  {
@@ -1787,18 +1762,18 @@
1787
1762
  }
1788
1763
  ],
1789
1764
  "functionParameter": {
1790
- "number1": {
1791
- "name": "number1",
1792
- "detail": "first"
1765
+ "xNum": {
1766
+ "name": "x_num",
1767
+ "detail": "The x-coordinate of the point."
1793
1768
  },
1794
- "number2": {
1795
- "name": "number2",
1796
- "detail": "second"
1769
+ "yNum": {
1770
+ "name": "y_num",
1771
+ "detail": "The y-coordinate of the point."
1797
1772
  }
1798
1773
  }
1799
1774
  },
1800
1775
  "ATANH": {
1801
- "description": "Returns the inverse hyperbolic tangent of a number",
1776
+ "description": "Returns the inverse hyperbolic tangent of a number.",
1802
1777
  "abstract": "Returns the inverse hyperbolic tangent of a number",
1803
1778
  "links": [
1804
1779
  {
@@ -1807,13 +1782,9 @@
1807
1782
  }
1808
1783
  ],
1809
1784
  "functionParameter": {
1810
- "number1": {
1811
- "name": "number1",
1812
- "detail": "first"
1813
- },
1814
- "number2": {
1815
- "name": "number2",
1816
- "detail": "second"
1785
+ "number": {
1786
+ "name": "number",
1787
+ "detail": "Any real number between 1 and -1."
1817
1788
  }
1818
1789
  }
1819
1790
  },
@@ -1938,7 +1909,7 @@
1938
1909
  }
1939
1910
  },
1940
1911
  "COS": {
1941
- "description": "Returns the cosine of a number",
1912
+ "description": "Returns the cosine of a number.",
1942
1913
  "abstract": "Returns the cosine of a number",
1943
1914
  "links": [
1944
1915
  {
@@ -1947,13 +1918,9 @@
1947
1918
  }
1948
1919
  ],
1949
1920
  "functionParameter": {
1950
- "number1": {
1951
- "name": "number1",
1952
- "detail": "first"
1953
- },
1954
- "number2": {
1955
- "name": "number2",
1956
- "detail": "second"
1921
+ "number": {
1922
+ "name": "number",
1923
+ "detail": "The angle in radians for which you want the cosine."
1957
1924
  }
1958
1925
  }
1959
1926
  },
@@ -3178,7 +3145,7 @@
3178
3145
  }
3179
3146
  },
3180
3147
  "TAN": {
3181
- "description": "Returns the tangent of a number",
3148
+ "description": "Returns the tangent of a number.",
3182
3149
  "abstract": "Returns the tangent of a number",
3183
3150
  "links": [
3184
3151
  {
@@ -3187,18 +3154,14 @@
3187
3154
  }
3188
3155
  ],
3189
3156
  "functionParameter": {
3190
- "number1": {
3191
- "name": "number1",
3192
- "detail": "first"
3193
- },
3194
- "number2": {
3195
- "name": "number2",
3196
- "detail": "second"
3157
+ "number": {
3158
+ "name": "number",
3159
+ "detail": "The angle in radians for which you want the tangent."
3197
3160
  }
3198
3161
  }
3199
3162
  },
3200
3163
  "TANH": {
3201
- "description": "Returns the hyperbolic tangent of a number",
3164
+ "description": "Returns the hyperbolic tangent of a number.",
3202
3165
  "abstract": "Returns the hyperbolic tangent of a number",
3203
3166
  "links": [
3204
3167
  {
@@ -3207,13 +3170,9 @@
3207
3170
  }
3208
3171
  ],
3209
3172
  "functionParameter": {
3210
- "number1": {
3211
- "name": "number1",
3212
- "detail": "first"
3213
- },
3214
- "number2": {
3215
- "name": "number2",
3216
- "detail": "second"
3173
+ "number": {
3174
+ "name": "number",
3175
+ "detail": "Any real number."
3217
3176
  }
3218
3177
  }
3219
3178
  },
@@ -3238,7 +3197,7 @@
3238
3197
  }
3239
3198
  },
3240
3199
  "AVEDEV": {
3241
- "description": "Returns the average of the absolute deviations of data points from their mean",
3200
+ "description": "Returns the average of the absolute deviations of data points from their mean.",
3242
3201
  "abstract": "Returns the average of the absolute deviations of data points from their mean",
3243
3202
  "links": [
3244
3203
  {
@@ -3249,11 +3208,11 @@
3249
3208
  "functionParameter": {
3250
3209
  "number1": {
3251
3210
  "name": "number1",
3252
- "detail": "first"
3211
+ "detail": "The first number, cell reference, or range for which you want the average."
3253
3212
  },
3254
3213
  "number2": {
3255
3214
  "name": "number2",
3256
- "detail": "second"
3215
+ "detail": "Additional numbers, cell references or ranges for which you want the average, up to a maximum of 255."
3257
3216
  }
3258
3217
  }
3259
3218
  },
@@ -3278,7 +3237,7 @@
3278
3237
  }
3279
3238
  },
3280
3239
  "AVERAGEA": {
3281
- "description": "Returns the average of its arguments, including numbers, text, and logical values",
3240
+ "description": "Returns the average of its arguments, including numbers, text, and logical values.",
3282
3241
  "abstract": "Returns the average of its arguments, including numbers, text, and logical values",
3283
3242
  "links": [
3284
3243
  {
@@ -3287,18 +3246,18 @@
3287
3246
  }
3288
3247
  ],
3289
3248
  "functionParameter": {
3290
- "number1": {
3291
- "name": "number1",
3292
- "detail": "first"
3249
+ "value1": {
3250
+ "name": "value1",
3251
+ "detail": "The first number, cell reference, or range for which you want the average."
3293
3252
  },
3294
- "number2": {
3295
- "name": "number2",
3296
- "detail": "second"
3253
+ "value2": {
3254
+ "name": "value2",
3255
+ "detail": "Additional numbers, cell references or ranges for which you want the average, up to a maximum of 255."
3297
3256
  }
3298
3257
  }
3299
3258
  },
3300
3259
  "AVERAGEIF": {
3301
- "description": "Returns the average (arithmetic mean) of all the cells in a range that meet a given criteria",
3260
+ "description": "Returns the average (arithmetic mean) of all the cells in a range that meet a given criteria.",
3302
3261
  "abstract": "Returns the average (arithmetic mean) of all the cells in a range that meet a given criteria",
3303
3262
  "links": [
3304
3263
  {
@@ -3307,18 +3266,22 @@
3307
3266
  }
3308
3267
  ],
3309
3268
  "functionParameter": {
3310
- "number1": {
3311
- "name": "number1",
3312
- "detail": "first"
3269
+ "range": {
3270
+ "name": "range",
3271
+ "detail": "One or more cells to average, including numbers or names, arrays, or references that contain numbers."
3313
3272
  },
3314
- "number2": {
3315
- "name": "number2",
3316
- "detail": "second"
3273
+ "criteria": {
3274
+ "name": "criteria",
3275
+ "detail": "The criteria in the form of a number, expression, cell reference, or text that defines which cells are averaged. For example, criteria can be expressed as 32, \"32\", \">32\", \"apples\", or B4."
3276
+ },
3277
+ "averageRange": {
3278
+ "name": "average_range",
3279
+ "detail": "The actual set of cells to average. If omitted, range is used."
3317
3280
  }
3318
3281
  }
3319
3282
  },
3320
3283
  "AVERAGEIFS": {
3321
- "description": "Returns the average (arithmetic mean) of all cells that meet multiple criteria",
3284
+ "description": "Returns the average (arithmetic mean) of all cells that meet multiple criteria.",
3322
3285
  "abstract": "Returns the average (arithmetic mean) of all cells that meet multiple criteria",
3323
3286
  "links": [
3324
3287
  {
@@ -3327,13 +3290,25 @@
3327
3290
  }
3328
3291
  ],
3329
3292
  "functionParameter": {
3330
- "number1": {
3331
- "name": "number1",
3332
- "detail": "first"
3293
+ "averageRange": {
3294
+ "name": "average_range",
3295
+ "detail": "One or more cells to average, including numbers or names, arrays, or references that contain numbers."
3333
3296
  },
3334
- "number2": {
3335
- "name": "number2",
3336
- "detail": "second"
3297
+ "criteriaRange1": {
3298
+ "name": "criteria_range1",
3299
+ "detail": "Is the set of cells to evaluate with the criteria."
3300
+ },
3301
+ "criteria1": {
3302
+ "name": "criteria1",
3303
+ "detail": "Used to define the cells for which the average will be calculated. For example, the criteria can be expressed as 32, \"32\", \">32\", \"apple\", or B4"
3304
+ },
3305
+ "criteriaRange2": {
3306
+ "name": "criteria_range2",
3307
+ "detail": "Additional ranges. You can enter up to 127 range."
3308
+ },
3309
+ "criteria2": {
3310
+ "name": "criteria2",
3311
+ "detail": "Additional associated criteria. You can enter up to 127 criteria."
3337
3312
  }
3338
3313
  }
3339
3314
  },
@@ -3638,7 +3613,7 @@
3638
3613
  }
3639
3614
  },
3640
3615
  "COUNTBLANK": {
3641
- "description": "Counts the number of blank cells within a range",
3616
+ "description": "Counts the number of blank cells within a range.",
3642
3617
  "abstract": "Counts the number of blank cells within a range",
3643
3618
  "links": [
3644
3619
  {
@@ -3647,18 +3622,14 @@
3647
3622
  }
3648
3623
  ],
3649
3624
  "functionParameter": {
3650
- "number1": {
3651
- "name": "number1",
3652
- "detail": "first"
3653
- },
3654
- "number2": {
3655
- "name": "number2",
3656
- "detail": "second"
3625
+ "range": {
3626
+ "name": "range",
3627
+ "detail": "The range from which you want to count the blank cells."
3657
3628
  }
3658
3629
  }
3659
3630
  },
3660
3631
  "COUNTIF": {
3661
- "description": "Counts the number of cells within a range that meet the given criteria",
3632
+ "description": "Counts the number of cells within a range that meet the given criteria.",
3662
3633
  "abstract": "Counts the number of cells within a range that meet the given criteria",
3663
3634
  "links": [
3664
3635
  {
@@ -3667,18 +3638,18 @@
3667
3638
  }
3668
3639
  ],
3669
3640
  "functionParameter": {
3670
- "number1": {
3671
- "name": "number1",
3672
- "detail": "first"
3641
+ "range": {
3642
+ "name": "range",
3643
+ "detail": "The group of cells you want to count. Range can contain numbers, arrays, a named range, or references that contain numbers. Blank and text values are ignored."
3673
3644
  },
3674
- "number2": {
3675
- "name": "number2",
3676
- "detail": "second"
3645
+ "criteria": {
3646
+ "name": "criteria",
3647
+ "detail": "A number, expression, cell reference, or text string that determines which cells will be counted.\nFor example, you can use a number like 32, a comparison like \">32\", a cell like B4, or a word like \"apples\".\nCOUNTIF uses only a single criteria. Use COUNTIFS if you want to use multiple criteria."
3677
3648
  }
3678
3649
  }
3679
3650
  },
3680
3651
  "COUNTIFS": {
3681
- "description": "Counts the number of cells within a range that meet multiple criteria",
3652
+ "description": "Counts the number of cells within a range that meet multiple criteria.",
3682
3653
  "abstract": "Counts the number of cells within a range that meet multiple criteria",
3683
3654
  "links": [
3684
3655
  {
@@ -3687,13 +3658,21 @@
3687
3658
  }
3688
3659
  ],
3689
3660
  "functionParameter": {
3690
- "number1": {
3691
- "name": "number1",
3692
- "detail": "first"
3661
+ "criteriaRange1": {
3662
+ "name": "criteria_range1",
3663
+ "detail": "The first range in which to evaluate the associated criteria."
3693
3664
  },
3694
- "number2": {
3695
- "name": "number2",
3696
- "detail": "second"
3665
+ "criteria1": {
3666
+ "name": "criteria1",
3667
+ "detail": "The criteria in the form of a number, expression, cell reference, or text that define which cells will be counted. For example, criteria can be expressed as 32, \">32\", B4, \"apples\", or \"32\"."
3668
+ },
3669
+ "criteriaRange2": {
3670
+ "name": "criteria_range2",
3671
+ "detail": "Additional ranges. You can enter up to 127 range."
3672
+ },
3673
+ "criteria2": {
3674
+ "name": "criteria2",
3675
+ "detail": "Additional associated criteria. You can enter up to 127 criteria."
3697
3676
  }
3698
3677
  }
3699
3678
  },
@@ -4418,7 +4397,7 @@
4418
4397
  }
4419
4398
  },
4420
4399
  "MAXA": {
4421
- "description": "Returns the maximum value in a list of arguments, including numbers, text, and logical values",
4400
+ "description": "Returns the maximum value in a list of arguments, including numbers, text, and logical values.",
4422
4401
  "abstract": "Returns the maximum value in a list of arguments, including numbers, text, and logical values",
4423
4402
  "links": [
4424
4403
  {
@@ -4427,18 +4406,18 @@
4427
4406
  }
4428
4407
  ],
4429
4408
  "functionParameter": {
4430
- "number1": {
4431
- "name": "number1",
4432
- "detail": "first"
4409
+ "value1": {
4410
+ "name": "value1",
4411
+ "detail": "The first number argument for which you want to find the largest value."
4433
4412
  },
4434
- "number2": {
4435
- "name": "number2",
4436
- "detail": "second"
4413
+ "value2": {
4414
+ "name": "value2",
4415
+ "detail": "Number arguments 2 to 255 for which you want to find the largest value."
4437
4416
  }
4438
4417
  }
4439
4418
  },
4440
4419
  "MAXIFS": {
4441
- "description": "Returns the maximum value among cells specified by a given set of conditions or criteria",
4420
+ "description": "Returns the maximum value among cells specified by a given set of conditions or criteria.",
4442
4421
  "abstract": "Returns the maximum value among cells specified by a given set of conditions or criteria",
4443
4422
  "links": [
4444
4423
  {
@@ -4461,11 +4440,11 @@
4461
4440
  },
4462
4441
  "criteriaRange2": {
4463
4442
  "name": "criteriaRange2",
4464
- "detail": "Additional ranges. You can enter up to 127 range pairs."
4443
+ "detail": "Additional ranges. You can enter up to 127 ranges."
4465
4444
  },
4466
4445
  "criteria2": {
4467
4446
  "name": "criteria2",
4468
- "detail": "Additional associated criteria. You can enter up to 127 criteria pairs."
4447
+ "detail": "Additional associated criteria. You can enter up to 127 criteria."
4469
4448
  }
4470
4449
  }
4471
4450
  },
@@ -4519,19 +4498,19 @@
4519
4498
  }
4520
4499
  ],
4521
4500
  "functionParameter": {
4522
- "number1": {
4523
- "name": "number1",
4524
- "detail": "first"
4501
+ "value1": {
4502
+ "name": "value1",
4503
+ "detail": "The first number, cell reference, or range to calculate the minimum value from."
4525
4504
  },
4526
- "number2": {
4527
- "name": "number2",
4528
- "detail": "second"
4505
+ "value2": {
4506
+ "name": "value2",
4507
+ "detail": "Additional numbers, cell references or ranges to calculate the minimum value from, up to a maximum of 255."
4529
4508
  }
4530
4509
  }
4531
4510
  },
4532
4511
  "MINIFS": {
4533
4512
  "description": "Returns the minimum value among cells specified by a given set of conditions or criteria.",
4534
- "abstract": "Returns the minimum value among cells specified by a given set of conditions or criteria.",
4513
+ "abstract": "Returns the minimum value among cells specified by a given set of conditions or criteria",
4535
4514
  "links": [
4536
4515
  {
4537
4516
  "title": "Instruction",
@@ -4539,13 +4518,25 @@
4539
4518
  }
4540
4519
  ],
4541
4520
  "functionParameter": {
4542
- "number1": {
4543
- "name": "number1",
4544
- "detail": "first"
4521
+ "minRange": {
4522
+ "name": "min_range",
4523
+ "detail": "The actual range of cells in which the minimum value will be determined."
4545
4524
  },
4546
- "number2": {
4547
- "name": "number2",
4548
- "detail": "second"
4525
+ "criteriaRange1": {
4526
+ "name": "criteria_range1",
4527
+ "detail": "Is the set of cells to evaluate with the criteria."
4528
+ },
4529
+ "criteria1": {
4530
+ "name": "criteria1",
4531
+ "detail": "Is the criteria in the form of a number, expression, or text that defines which cells will be evaluated as minimum. The same set of criteria works for the MAXIFS, SUMIFS and AVERAGEIFS functions."
4532
+ },
4533
+ "criteriaRange2": {
4534
+ "name": "criteria_range2",
4535
+ "detail": "Additional ranges. You can enter up to 127 range."
4536
+ },
4537
+ "criteria2": {
4538
+ "name": "criteria2",
4539
+ "detail": "Additional associated criteria. You can enter up to 127 criteria."
4549
4540
  }
4550
4541
  }
4551
4542
  },
@@ -5522,7 +5513,7 @@
5522
5513
  }
5523
5514
  },
5524
5515
  "CHOOSE": {
5525
- "description": "Chooses a value from a list of values",
5516
+ "description": "Chooses a value from a list of values.",
5526
5517
  "abstract": "Chooses a value from a list of values",
5527
5518
  "links": [
5528
5519
  {
@@ -5531,13 +5522,17 @@
5531
5522
  }
5532
5523
  ],
5533
5524
  "functionParameter": {
5534
- "number1": {
5535
- "name": "number1",
5536
- "detail": "first"
5525
+ "indexNum": {
5526
+ "name": "index_num",
5527
+ "detail": "Specifies which value argument is selected. Index_num must be a number between 1 and 254, or a formula or reference to a cell containing a number between 1 and 254.\nIf index_num is 1, CHOOSE returns value1; if it is 2, CHOOSE returns value2; and so on.\nIf index_num is less than 1 or greater than the number of the last value in the list, CHOOSE returns the #VALUE! error value.\nIf index_num is a fraction, it is truncated to the lowest integer before being used."
5537
5528
  },
5538
- "number2": {
5539
- "name": "number2",
5540
- "detail": "second"
5529
+ "value1": {
5530
+ "name": "value1",
5531
+ "detail": "CHOOSE selects a value or an action to perform based on index_num. The arguments can be numbers, cell references, defined names, formulas, functions, or text."
5532
+ },
5533
+ "value2": {
5534
+ "name": "value2",
5535
+ "detail": "1 to 254 value arguments."
5541
5536
  }
5542
5537
  }
5543
5538
  },
@@ -6635,7 +6630,7 @@
6635
6630
  },
6636
6631
  "CONCAT": {
6637
6632
  "description": "Combines the text from multiple ranges and/or strings, but it doesn't provide the delimiter or IgnoreEmpty arguments.",
6638
- "abstract": "Combines the text from multiple ranges and/or strings, but it doesn't provide the delimiter or IgnoreEmpty arguments.",
6633
+ "abstract": "Combines the text from multiple ranges and/or strings, but it doesn't provide the delimiter or IgnoreEmpty arguments",
6639
6634
  "links": [
6640
6635
  {
6641
6636
  "title": "Instruction",
@@ -6643,13 +6638,13 @@
6643
6638
  }
6644
6639
  ],
6645
6640
  "functionParameter": {
6646
- "number1": {
6647
- "name": "number1",
6648
- "detail": "first"
6641
+ "text1": {
6642
+ "name": "text1",
6643
+ "detail": "Text item to be joined. A string, or array of strings, such as a range of cells."
6649
6644
  },
6650
- "number2": {
6651
- "name": "number2",
6652
- "detail": "second"
6645
+ "text2": {
6646
+ "name": "text2",
6647
+ "detail": "Additional text items to be joined. There can be a maximum of 253 text arguments for the text items. Each can be a string, or array of strings, such as a range of cells."
6653
6648
  }
6654
6649
  }
6655
6650
  },