@ace-grid/mcp 1.0.6

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.
@@ -0,0 +1,1137 @@
1
+ {
2
+ "generatedAt": "2026-05-20T00:24:07.079Z",
3
+ "exportedConstant": "FORMULA_FUNCTIONS",
4
+ "functionCount": 152,
5
+ "categoryCount": 9,
6
+ "categories": [
7
+ {
8
+ "key": "array",
9
+ "label": "Array",
10
+ "anchorId": "formula-category-array",
11
+ "functionCount": 31,
12
+ "volatileCount": 0
13
+ },
14
+ {
15
+ "key": "database",
16
+ "label": "Database",
17
+ "anchorId": "formula-category-database",
18
+ "functionCount": 12,
19
+ "volatileCount": 0
20
+ },
21
+ {
22
+ "key": "date",
23
+ "label": "Date",
24
+ "anchorId": "formula-category-date",
25
+ "functionCount": 16,
26
+ "volatileCount": 2
27
+ },
28
+ {
29
+ "key": "filter",
30
+ "label": "Filter",
31
+ "anchorId": "formula-category-filter",
32
+ "functionCount": 4,
33
+ "volatileCount": 0
34
+ },
35
+ {
36
+ "key": "info",
37
+ "label": "Info",
38
+ "anchorId": "formula-category-info",
39
+ "functionCount": 10,
40
+ "volatileCount": 0
41
+ },
42
+ {
43
+ "key": "logical",
44
+ "label": "Logical",
45
+ "anchorId": "formula-category-logical",
46
+ "functionCount": 13,
47
+ "volatileCount": 0
48
+ },
49
+ {
50
+ "key": "math",
51
+ "label": "Math",
52
+ "anchorId": "formula-category-math",
53
+ "functionCount": 33,
54
+ "volatileCount": 2
55
+ },
56
+ {
57
+ "key": "statistical",
58
+ "label": "Statistical",
59
+ "anchorId": "formula-category-statistical",
60
+ "functionCount": 15,
61
+ "volatileCount": 0
62
+ },
63
+ {
64
+ "key": "text",
65
+ "label": "Text",
66
+ "anchorId": "formula-category-text",
67
+ "functionCount": 18,
68
+ "volatileCount": 0
69
+ }
70
+ ],
71
+ "functions": [
72
+ {
73
+ "name": "SUM",
74
+ "category": "Math",
75
+ "description": "Returns the sum of a series of numbers.",
76
+ "volatile": false,
77
+ "anchorId": "formula-fn-sum"
78
+ },
79
+ {
80
+ "name": "AVERAGE",
81
+ "category": "Statistical",
82
+ "description": "Returns the arithmetic mean of a set of values.",
83
+ "volatile": false,
84
+ "anchorId": "formula-fn-average"
85
+ },
86
+ {
87
+ "name": "MIN",
88
+ "category": "Statistical",
89
+ "description": "Returns the smallest value in a list.",
90
+ "volatile": false,
91
+ "anchorId": "formula-fn-min"
92
+ },
93
+ {
94
+ "name": "MAX",
95
+ "category": "Statistical",
96
+ "description": "Returns the largest value in a list.",
97
+ "volatile": false,
98
+ "anchorId": "formula-fn-max"
99
+ },
100
+ {
101
+ "name": "COUNT",
102
+ "category": "Statistical",
103
+ "description": "Counts numeric values in a list.",
104
+ "volatile": false,
105
+ "anchorId": "formula-fn-count"
106
+ },
107
+ {
108
+ "name": "COUNTA",
109
+ "category": "Statistical",
110
+ "description": "Counts non-empty values in a list.",
111
+ "volatile": false,
112
+ "anchorId": "formula-fn-counta"
113
+ },
114
+ {
115
+ "name": "PRODUCT",
116
+ "category": "Math",
117
+ "description": "Multiplies numbers together.",
118
+ "volatile": false,
119
+ "anchorId": "formula-fn-product"
120
+ },
121
+ {
122
+ "name": "SUMPRODUCT",
123
+ "category": "Array",
124
+ "description": "Sum of products of corresponding array values.",
125
+ "volatile": false,
126
+ "anchorId": "formula-fn-sumproduct"
127
+ },
128
+ {
129
+ "name": "SUMX2MY2",
130
+ "category": "Array",
131
+ "description": "Sum of differences of squares of corresponding values.",
132
+ "volatile": false,
133
+ "anchorId": "formula-fn-sumx2my2"
134
+ },
135
+ {
136
+ "name": "SUMX2PY2",
137
+ "category": "Array",
138
+ "description": "Sum of sums of squares of corresponding values.",
139
+ "volatile": false,
140
+ "anchorId": "formula-fn-sumx2py2"
141
+ },
142
+ {
143
+ "name": "SUMXMY2",
144
+ "category": "Array",
145
+ "description": "Sum of squares of differences of corresponding values.",
146
+ "volatile": false,
147
+ "anchorId": "formula-fn-sumxmy2"
148
+ },
149
+ {
150
+ "name": "IF",
151
+ "category": "Logical",
152
+ "description": "Returns one value if condition is true, another if false.",
153
+ "volatile": false,
154
+ "anchorId": "formula-fn-if"
155
+ },
156
+ {
157
+ "name": "AND",
158
+ "category": "Logical",
159
+ "description": "Returns TRUE if all arguments are TRUE.",
160
+ "volatile": false,
161
+ "anchorId": "formula-fn-and"
162
+ },
163
+ {
164
+ "name": "OR",
165
+ "category": "Logical",
166
+ "description": "Returns TRUE if any argument is TRUE.",
167
+ "volatile": false,
168
+ "anchorId": "formula-fn-or"
169
+ },
170
+ {
171
+ "name": "NOT",
172
+ "category": "Logical",
173
+ "description": "Returns the opposite of a logical value.",
174
+ "volatile": false,
175
+ "anchorId": "formula-fn-not"
176
+ },
177
+ {
178
+ "name": "IFERROR",
179
+ "category": "Logical",
180
+ "description": "Returns value if no error, otherwise fallback.",
181
+ "volatile": false,
182
+ "anchorId": "formula-fn-iferror"
183
+ },
184
+ {
185
+ "name": "TRUE",
186
+ "category": "Logical",
187
+ "description": "Returns the logical value TRUE.",
188
+ "volatile": false,
189
+ "anchorId": "formula-fn-true"
190
+ },
191
+ {
192
+ "name": "FALSE",
193
+ "category": "Logical",
194
+ "description": "Returns the logical value FALSE.",
195
+ "volatile": false,
196
+ "anchorId": "formula-fn-false"
197
+ },
198
+ {
199
+ "name": "ABS",
200
+ "category": "Math",
201
+ "description": "Returns the absolute value of a number.",
202
+ "volatile": false,
203
+ "anchorId": "formula-fn-abs"
204
+ },
205
+ {
206
+ "name": "ROUND",
207
+ "category": "Math",
208
+ "description": "Rounds a number to specified digits.",
209
+ "volatile": false,
210
+ "anchorId": "formula-fn-round"
211
+ },
212
+ {
213
+ "name": "ROUNDUP",
214
+ "category": "Math",
215
+ "description": "Rounds a number up, away from zero.",
216
+ "volatile": false,
217
+ "anchorId": "formula-fn-roundup"
218
+ },
219
+ {
220
+ "name": "ROUNDDOWN",
221
+ "category": "Math",
222
+ "description": "Rounds a number down, toward zero.",
223
+ "volatile": false,
224
+ "anchorId": "formula-fn-rounddown"
225
+ },
226
+ {
227
+ "name": "INT",
228
+ "category": "Math",
229
+ "description": "Rounds a number down to the nearest integer.",
230
+ "volatile": false,
231
+ "anchorId": "formula-fn-int"
232
+ },
233
+ {
234
+ "name": "MOD",
235
+ "category": "Math",
236
+ "description": "Returns the remainder after division.",
237
+ "volatile": false,
238
+ "anchorId": "formula-fn-mod"
239
+ },
240
+ {
241
+ "name": "POWER",
242
+ "category": "Math",
243
+ "description": "Raises a number to a power.",
244
+ "volatile": false,
245
+ "anchorId": "formula-fn-power"
246
+ },
247
+ {
248
+ "name": "SQRT",
249
+ "category": "Math",
250
+ "description": "Returns the square root of a number.",
251
+ "volatile": false,
252
+ "anchorId": "formula-fn-sqrt"
253
+ },
254
+ {
255
+ "name": "SIGN",
256
+ "category": "Math",
257
+ "description": "Returns the sign of a number.",
258
+ "volatile": false,
259
+ "anchorId": "formula-fn-sign"
260
+ },
261
+ {
262
+ "name": "CEILING",
263
+ "category": "Math",
264
+ "description": "Rounds a number up to the nearest multiple.",
265
+ "volatile": false,
266
+ "anchorId": "formula-fn-ceiling"
267
+ },
268
+ {
269
+ "name": "FLOOR",
270
+ "category": "Math",
271
+ "description": "Rounds a number down to the nearest multiple.",
272
+ "volatile": false,
273
+ "anchorId": "formula-fn-floor"
274
+ },
275
+ {
276
+ "name": "CONCAT",
277
+ "category": "Text",
278
+ "description": "Joins text values together.",
279
+ "volatile": false,
280
+ "anchorId": "formula-fn-concat"
281
+ },
282
+ {
283
+ "name": "CONCATENATE",
284
+ "category": "Text",
285
+ "description": "Joins text values together.",
286
+ "volatile": false,
287
+ "anchorId": "formula-fn-concatenate"
288
+ },
289
+ {
290
+ "name": "LEFT",
291
+ "category": "Text",
292
+ "description": "Returns the leftmost characters from a string.",
293
+ "volatile": false,
294
+ "anchorId": "formula-fn-left"
295
+ },
296
+ {
297
+ "name": "RIGHT",
298
+ "category": "Text",
299
+ "description": "Returns the rightmost characters from a string.",
300
+ "volatile": false,
301
+ "anchorId": "formula-fn-right"
302
+ },
303
+ {
304
+ "name": "MID",
305
+ "category": "Text",
306
+ "description": "Returns a segment of a string.",
307
+ "volatile": false,
308
+ "anchorId": "formula-fn-mid"
309
+ },
310
+ {
311
+ "name": "LEN",
312
+ "category": "Text",
313
+ "description": "Returns the length of a string.",
314
+ "volatile": false,
315
+ "anchorId": "formula-fn-len"
316
+ },
317
+ {
318
+ "name": "TRIM",
319
+ "category": "Text",
320
+ "description": "Removes leading and trailing whitespace.",
321
+ "volatile": false,
322
+ "anchorId": "formula-fn-trim"
323
+ },
324
+ {
325
+ "name": "SUBSTITUTE",
326
+ "category": "Text",
327
+ "description": "Replaces occurrences of text within a string.",
328
+ "volatile": false,
329
+ "anchorId": "formula-fn-substitute"
330
+ },
331
+ {
332
+ "name": "TEXT",
333
+ "category": "Text",
334
+ "description": "Formats a value as text.",
335
+ "volatile": false,
336
+ "anchorId": "formula-fn-text"
337
+ },
338
+ {
339
+ "name": "UPPER",
340
+ "category": "Text",
341
+ "description": "Converts text to uppercase.",
342
+ "volatile": false,
343
+ "anchorId": "formula-fn-upper"
344
+ },
345
+ {
346
+ "name": "LOWER",
347
+ "category": "Text",
348
+ "description": "Converts text to lowercase.",
349
+ "volatile": false,
350
+ "anchorId": "formula-fn-lower"
351
+ },
352
+ {
353
+ "name": "REPT",
354
+ "category": "Text",
355
+ "description": "Repeats text a specified number of times.",
356
+ "volatile": false,
357
+ "anchorId": "formula-fn-rept"
358
+ },
359
+ {
360
+ "name": "TEXTJOIN",
361
+ "category": "Text",
362
+ "description": "Joins text with a delimiter, optionally ignoring empty cells.",
363
+ "volatile": false,
364
+ "anchorId": "formula-fn-textjoin"
365
+ },
366
+ {
367
+ "name": "JOIN",
368
+ "category": "Text",
369
+ "description": "Joins text with a delimiter.",
370
+ "volatile": false,
371
+ "anchorId": "formula-fn-join"
372
+ },
373
+ {
374
+ "name": "VALUE",
375
+ "category": "Text",
376
+ "description": "Converts a text value to a number.",
377
+ "volatile": false,
378
+ "anchorId": "formula-fn-value"
379
+ },
380
+ {
381
+ "name": "DATE",
382
+ "category": "Date",
383
+ "description": "Creates a date from year, month, day.",
384
+ "volatile": false,
385
+ "anchorId": "formula-fn-date"
386
+ },
387
+ {
388
+ "name": "TODAY",
389
+ "category": "Date",
390
+ "description": "Returns the current date.",
391
+ "volatile": true,
392
+ "anchorId": "formula-fn-today"
393
+ },
394
+ {
395
+ "name": "NOW",
396
+ "category": "Date",
397
+ "description": "Returns the current date and time.",
398
+ "volatile": true,
399
+ "anchorId": "formula-fn-now"
400
+ },
401
+ {
402
+ "name": "YEAR",
403
+ "category": "Date",
404
+ "description": "Returns the year from a date.",
405
+ "volatile": false,
406
+ "anchorId": "formula-fn-year"
407
+ },
408
+ {
409
+ "name": "MONTH",
410
+ "category": "Date",
411
+ "description": "Returns the month from a date.",
412
+ "volatile": false,
413
+ "anchorId": "formula-fn-month"
414
+ },
415
+ {
416
+ "name": "DAY",
417
+ "category": "Date",
418
+ "description": "Returns the day of the month from a date.",
419
+ "volatile": false,
420
+ "anchorId": "formula-fn-day"
421
+ },
422
+ {
423
+ "name": "HOUR",
424
+ "category": "Date",
425
+ "description": "Returns the hour from a time.",
426
+ "volatile": false,
427
+ "anchorId": "formula-fn-hour"
428
+ },
429
+ {
430
+ "name": "MINUTE",
431
+ "category": "Date",
432
+ "description": "Returns the minute from a time.",
433
+ "volatile": false,
434
+ "anchorId": "formula-fn-minute"
435
+ },
436
+ {
437
+ "name": "SECOND",
438
+ "category": "Date",
439
+ "description": "Returns the second from a time.",
440
+ "volatile": false,
441
+ "anchorId": "formula-fn-second"
442
+ },
443
+ {
444
+ "name": "COUNTIF",
445
+ "category": "Statistical",
446
+ "description": "Counts values matching a criterion.",
447
+ "volatile": false,
448
+ "anchorId": "formula-fn-countif"
449
+ },
450
+ {
451
+ "name": "SUMIF",
452
+ "category": "Math",
453
+ "description": "Sums values matching a criterion.",
454
+ "volatile": false,
455
+ "anchorId": "formula-fn-sumif"
456
+ },
457
+ {
458
+ "name": "AVERAGEIF",
459
+ "category": "Statistical",
460
+ "description": "Returns the average of values matching a criterion.",
461
+ "volatile": false,
462
+ "anchorId": "formula-fn-averageif"
463
+ },
464
+ {
465
+ "name": "COUNTIFS",
466
+ "category": "Statistical",
467
+ "description": "Counts values matching multiple criteria.",
468
+ "volatile": false,
469
+ "anchorId": "formula-fn-countifs"
470
+ },
471
+ {
472
+ "name": "SUMIFS",
473
+ "category": "Math",
474
+ "description": "Sums values matching multiple criteria.",
475
+ "volatile": false,
476
+ "anchorId": "formula-fn-sumifs"
477
+ },
478
+ {
479
+ "name": "AVERAGEIFS",
480
+ "category": "Statistical",
481
+ "description": "Returns the average of values matching multiple criteria.",
482
+ "volatile": false,
483
+ "anchorId": "formula-fn-averageifs"
484
+ },
485
+ {
486
+ "name": "MAXIFS",
487
+ "category": "Statistical",
488
+ "description": "Returns the maximum value matching multiple criteria.",
489
+ "volatile": false,
490
+ "anchorId": "formula-fn-maxifs"
491
+ },
492
+ {
493
+ "name": "MINIFS",
494
+ "category": "Statistical",
495
+ "description": "Returns the minimum value matching multiple criteria.",
496
+ "volatile": false,
497
+ "anchorId": "formula-fn-minifs"
498
+ },
499
+ {
500
+ "name": "COUNTBLANK",
501
+ "category": "Statistical",
502
+ "description": "Counts empty cells in a range.",
503
+ "volatile": false,
504
+ "anchorId": "formula-fn-countblank"
505
+ },
506
+ {
507
+ "name": "AVERAGEA",
508
+ "category": "Statistical",
509
+ "description": "Average including text and logical values.",
510
+ "volatile": false,
511
+ "anchorId": "formula-fn-averagea"
512
+ },
513
+ {
514
+ "name": "MAXA",
515
+ "category": "Statistical",
516
+ "description": "Maximum including text and logical values.",
517
+ "volatile": false,
518
+ "anchorId": "formula-fn-maxa"
519
+ },
520
+ {
521
+ "name": "MINA",
522
+ "category": "Statistical",
523
+ "description": "Minimum including text and logical values.",
524
+ "volatile": false,
525
+ "anchorId": "formula-fn-mina"
526
+ },
527
+ {
528
+ "name": "PI",
529
+ "category": "Math",
530
+ "description": "Returns the value of Pi.",
531
+ "volatile": false,
532
+ "anchorId": "formula-fn-pi"
533
+ },
534
+ {
535
+ "name": "RAND",
536
+ "category": "Math",
537
+ "description": "Returns a random number between 0 and 1.",
538
+ "volatile": true,
539
+ "anchorId": "formula-fn-rand"
540
+ },
541
+ {
542
+ "name": "RANDBETWEEN",
543
+ "category": "Math",
544
+ "description": "Returns a random integer between two values.",
545
+ "volatile": true,
546
+ "anchorId": "formula-fn-randbetween"
547
+ },
548
+ {
549
+ "name": "LOG",
550
+ "category": "Math",
551
+ "description": "Returns the logarithm with specified base.",
552
+ "volatile": false,
553
+ "anchorId": "formula-fn-log"
554
+ },
555
+ {
556
+ "name": "LOG10",
557
+ "category": "Math",
558
+ "description": "Returns the base-10 logarithm.",
559
+ "volatile": false,
560
+ "anchorId": "formula-fn-log10"
561
+ },
562
+ {
563
+ "name": "LN",
564
+ "category": "Math",
565
+ "description": "Returns the natural logarithm.",
566
+ "volatile": false,
567
+ "anchorId": "formula-fn-ln"
568
+ },
569
+ {
570
+ "name": "EXP",
571
+ "category": "Math",
572
+ "description": "Returns e raised to the power of a number.",
573
+ "volatile": false,
574
+ "anchorId": "formula-fn-exp"
575
+ },
576
+ {
577
+ "name": "SIN",
578
+ "category": "Math",
579
+ "description": "Returns the sine of an angle in radians.",
580
+ "volatile": false,
581
+ "anchorId": "formula-fn-sin"
582
+ },
583
+ {
584
+ "name": "COS",
585
+ "category": "Math",
586
+ "description": "Returns the cosine of an angle in radians.",
587
+ "volatile": false,
588
+ "anchorId": "formula-fn-cos"
589
+ },
590
+ {
591
+ "name": "TAN",
592
+ "category": "Math",
593
+ "description": "Returns the tangent of an angle in radians.",
594
+ "volatile": false,
595
+ "anchorId": "formula-fn-tan"
596
+ },
597
+ {
598
+ "name": "RADIANS",
599
+ "category": "Math",
600
+ "description": "Converts degrees to radians.",
601
+ "volatile": false,
602
+ "anchorId": "formula-fn-radians"
603
+ },
604
+ {
605
+ "name": "DEGREES",
606
+ "category": "Math",
607
+ "description": "Converts radians to degrees.",
608
+ "volatile": false,
609
+ "anchorId": "formula-fn-degrees"
610
+ },
611
+ {
612
+ "name": "EXACT",
613
+ "category": "Text",
614
+ "description": "Checks whether two strings are identical.",
615
+ "volatile": false,
616
+ "anchorId": "formula-fn-exact"
617
+ },
618
+ {
619
+ "name": "FIND",
620
+ "category": "Text",
621
+ "description": "Finds a substring position (case-sensitive).",
622
+ "volatile": false,
623
+ "anchorId": "formula-fn-find"
624
+ },
625
+ {
626
+ "name": "SEARCH",
627
+ "category": "Text",
628
+ "description": "Finds a substring position (case-insensitive).",
629
+ "volatile": false,
630
+ "anchorId": "formula-fn-search"
631
+ },
632
+ {
633
+ "name": "ISBLANK",
634
+ "category": "Info",
635
+ "description": "Checks whether a value is blank.",
636
+ "volatile": false,
637
+ "anchorId": "formula-fn-isblank"
638
+ },
639
+ {
640
+ "name": "ISNUMBER",
641
+ "category": "Info",
642
+ "description": "Checks whether a value is a number.",
643
+ "volatile": false,
644
+ "anchorId": "formula-fn-isnumber"
645
+ },
646
+ {
647
+ "name": "ISTEXT",
648
+ "category": "Info",
649
+ "description": "Checks whether a value is text.",
650
+ "volatile": false,
651
+ "anchorId": "formula-fn-istext"
652
+ },
653
+ {
654
+ "name": "ISERROR",
655
+ "category": "Info",
656
+ "description": "Checks whether a value is an error.",
657
+ "volatile": false,
658
+ "anchorId": "formula-fn-iserror"
659
+ },
660
+ {
661
+ "name": "DATEVALUE",
662
+ "category": "Date",
663
+ "description": "Converts a date string into a date value.",
664
+ "volatile": false,
665
+ "anchorId": "formula-fn-datevalue"
666
+ },
667
+ {
668
+ "name": "TIME",
669
+ "category": "Date",
670
+ "description": "Creates a time from hour, minute, second.",
671
+ "volatile": false,
672
+ "anchorId": "formula-fn-time"
673
+ },
674
+ {
675
+ "name": "DAYS",
676
+ "category": "Date",
677
+ "description": "Returns the number of days between two dates.",
678
+ "volatile": false,
679
+ "anchorId": "formula-fn-days"
680
+ },
681
+ {
682
+ "name": "EDATE",
683
+ "category": "Date",
684
+ "description": "Returns a date offset by a number of months.",
685
+ "volatile": false,
686
+ "anchorId": "formula-fn-edate"
687
+ },
688
+ {
689
+ "name": "EOMONTH",
690
+ "category": "Date",
691
+ "description": "Returns the last day of the month offset by months.",
692
+ "volatile": false,
693
+ "anchorId": "formula-fn-eomonth"
694
+ },
695
+ {
696
+ "name": "WEEKDAY",
697
+ "category": "Date",
698
+ "description": "Returns the day of the week for a date.",
699
+ "volatile": false,
700
+ "anchorId": "formula-fn-weekday"
701
+ },
702
+ {
703
+ "name": "WEEKNUM",
704
+ "category": "Date",
705
+ "description": "Returns the week number of the year.",
706
+ "volatile": false,
707
+ "anchorId": "formula-fn-weeknum"
708
+ },
709
+ {
710
+ "name": "TRUNC",
711
+ "category": "Math",
712
+ "description": "Truncates a number to a specified number of digits.",
713
+ "volatile": false,
714
+ "anchorId": "formula-fn-trunc"
715
+ },
716
+ {
717
+ "name": "SUMSQ",
718
+ "category": "Math",
719
+ "description": "Returns the sum of the squares of numbers.",
720
+ "volatile": false,
721
+ "anchorId": "formula-fn-sumsq"
722
+ },
723
+ {
724
+ "name": "QUOTIENT",
725
+ "category": "Math",
726
+ "description": "Returns the integer portion of a division.",
727
+ "volatile": false,
728
+ "anchorId": "formula-fn-quotient"
729
+ },
730
+ {
731
+ "name": "MROUND",
732
+ "category": "Math",
733
+ "description": "Rounds a number to the nearest multiple.",
734
+ "volatile": false,
735
+ "anchorId": "formula-fn-mround"
736
+ },
737
+ {
738
+ "name": "EVEN",
739
+ "category": "Math",
740
+ "description": "Rounds a number up to the nearest even integer.",
741
+ "volatile": false,
742
+ "anchorId": "formula-fn-even"
743
+ },
744
+ {
745
+ "name": "ODD",
746
+ "category": "Math",
747
+ "description": "Rounds a number up to the nearest odd integer.",
748
+ "volatile": false,
749
+ "anchorId": "formula-fn-odd"
750
+ },
751
+ {
752
+ "name": "ISEVEN",
753
+ "category": "Info",
754
+ "description": "Checks whether a number is even.",
755
+ "volatile": false,
756
+ "anchorId": "formula-fn-iseven"
757
+ },
758
+ {
759
+ "name": "ISODD",
760
+ "category": "Info",
761
+ "description": "Checks whether a number is odd.",
762
+ "volatile": false,
763
+ "anchorId": "formula-fn-isodd"
764
+ },
765
+ {
766
+ "name": "ISLOGICAL",
767
+ "category": "Info",
768
+ "description": "Checks whether a value is logical (TRUE/FALSE).",
769
+ "volatile": false,
770
+ "anchorId": "formula-fn-islogical"
771
+ },
772
+ {
773
+ "name": "NA",
774
+ "category": "Info",
775
+ "description": "Returns the #N/A error value.",
776
+ "volatile": false,
777
+ "anchorId": "formula-fn-na"
778
+ },
779
+ {
780
+ "name": "ISNA",
781
+ "category": "Info",
782
+ "description": "Checks whether a value is #N/A.",
783
+ "volatile": false,
784
+ "anchorId": "formula-fn-isna"
785
+ },
786
+ {
787
+ "name": "TYPE",
788
+ "category": "Info",
789
+ "description": "Returns a number identifying the type of a value.",
790
+ "volatile": false,
791
+ "anchorId": "formula-fn-type"
792
+ },
793
+ {
794
+ "name": "IFNA",
795
+ "category": "Logical",
796
+ "description": "Returns fallback if value is #N/A.",
797
+ "volatile": false,
798
+ "anchorId": "formula-fn-ifna"
799
+ },
800
+ {
801
+ "name": "IFS",
802
+ "category": "Logical",
803
+ "description": "Evaluates multiple conditions in order.",
804
+ "volatile": false,
805
+ "anchorId": "formula-fn-ifs"
806
+ },
807
+ {
808
+ "name": "XOR",
809
+ "category": "Logical",
810
+ "description": "Returns TRUE if an odd number of arguments are TRUE.",
811
+ "volatile": false,
812
+ "anchorId": "formula-fn-xor"
813
+ },
814
+ {
815
+ "name": "SWITCH",
816
+ "category": "Logical",
817
+ "description": "Matches an expression against cases.",
818
+ "volatile": false,
819
+ "anchorId": "formula-fn-switch"
820
+ },
821
+ {
822
+ "name": "LAMBDA",
823
+ "category": "Logical",
824
+ "description": "Creates a reusable lambda function.",
825
+ "volatile": false,
826
+ "anchorId": "formula-fn-lambda"
827
+ },
828
+ {
829
+ "name": "LET",
830
+ "category": "Logical",
831
+ "description": "Assigns names to values and returns the final expression.",
832
+ "volatile": false,
833
+ "anchorId": "formula-fn-let"
834
+ },
835
+ {
836
+ "name": "ARRAYFORMULA",
837
+ "category": "Array",
838
+ "description": "Enables array outputs from a formula expression.",
839
+ "volatile": false,
840
+ "anchorId": "formula-fn-arrayformula"
841
+ },
842
+ {
843
+ "name": "ARRAY_CONSTRAIN",
844
+ "category": "Array",
845
+ "description": "Constrains an array to a specified size.",
846
+ "volatile": false,
847
+ "anchorId": "formula-fn-array-constrain"
848
+ },
849
+ {
850
+ "name": "CHOOSECOLS",
851
+ "category": "Array",
852
+ "description": "Selects specific columns from an array.",
853
+ "volatile": false,
854
+ "anchorId": "formula-fn-choosecols"
855
+ },
856
+ {
857
+ "name": "CHOOSEROWS",
858
+ "category": "Array",
859
+ "description": "Selects specific rows from an array.",
860
+ "volatile": false,
861
+ "anchorId": "formula-fn-chooserows"
862
+ },
863
+ {
864
+ "name": "WRAPROWS",
865
+ "category": "Array",
866
+ "description": "Wraps values into rows.",
867
+ "volatile": false,
868
+ "anchorId": "formula-fn-wraprows"
869
+ },
870
+ {
871
+ "name": "WRAPCOLS",
872
+ "category": "Array",
873
+ "description": "Wraps values into columns.",
874
+ "volatile": false,
875
+ "anchorId": "formula-fn-wrapcols"
876
+ },
877
+ {
878
+ "name": "FILTER",
879
+ "category": "Filter",
880
+ "description": "Filters a range based on conditions.",
881
+ "volatile": false,
882
+ "anchorId": "formula-fn-filter"
883
+ },
884
+ {
885
+ "name": "SORT",
886
+ "category": "Filter",
887
+ "description": "Sorts rows in a range by one or more columns.",
888
+ "volatile": false,
889
+ "anchorId": "formula-fn-sort"
890
+ },
891
+ {
892
+ "name": "SORTN",
893
+ "category": "Filter",
894
+ "description": "Returns the first n rows after sorting.",
895
+ "volatile": false,
896
+ "anchorId": "formula-fn-sortn"
897
+ },
898
+ {
899
+ "name": "UNIQUE",
900
+ "category": "Filter",
901
+ "description": "Returns unique rows or columns from a range.",
902
+ "volatile": false,
903
+ "anchorId": "formula-fn-unique"
904
+ },
905
+ {
906
+ "name": "MAP",
907
+ "category": "Array",
908
+ "description": "Maps a lambda across arrays.",
909
+ "volatile": false,
910
+ "anchorId": "formula-fn-map"
911
+ },
912
+ {
913
+ "name": "BYROW",
914
+ "category": "Array",
915
+ "description": "Applies a lambda to each row.",
916
+ "volatile": false,
917
+ "anchorId": "formula-fn-byrow"
918
+ },
919
+ {
920
+ "name": "BYCOL",
921
+ "category": "Array",
922
+ "description": "Applies a lambda to each column.",
923
+ "volatile": false,
924
+ "anchorId": "formula-fn-bycol"
925
+ },
926
+ {
927
+ "name": "REDUCE",
928
+ "category": "Array",
929
+ "description": "Reduces an array into a single value.",
930
+ "volatile": false,
931
+ "anchorId": "formula-fn-reduce"
932
+ },
933
+ {
934
+ "name": "SCAN",
935
+ "category": "Array",
936
+ "description": "Returns intermediate results while reducing an array.",
937
+ "volatile": false,
938
+ "anchorId": "formula-fn-scan"
939
+ },
940
+ {
941
+ "name": "MAKEARRAY",
942
+ "category": "Array",
943
+ "description": "Creates an array by applying a lambda to coordinates.",
944
+ "volatile": false,
945
+ "anchorId": "formula-fn-makearray"
946
+ },
947
+ {
948
+ "name": "SEQUENCE",
949
+ "category": "Array",
950
+ "description": "Generates a sequence of numbers.",
951
+ "volatile": false,
952
+ "anchorId": "formula-fn-sequence"
953
+ },
954
+ {
955
+ "name": "TRANSPOSE",
956
+ "category": "Array",
957
+ "description": "Transposes rows and columns of an array.",
958
+ "volatile": false,
959
+ "anchorId": "formula-fn-transpose"
960
+ },
961
+ {
962
+ "name": "FLATTEN",
963
+ "category": "Array",
964
+ "description": "Flattens ranges into a single column.",
965
+ "volatile": false,
966
+ "anchorId": "formula-fn-flatten"
967
+ },
968
+ {
969
+ "name": "TOCOL",
970
+ "category": "Array",
971
+ "description": "Transforms a range into a single column.",
972
+ "volatile": false,
973
+ "anchorId": "formula-fn-tocol"
974
+ },
975
+ {
976
+ "name": "TOROW",
977
+ "category": "Array",
978
+ "description": "Transforms a range into a single row.",
979
+ "volatile": false,
980
+ "anchorId": "formula-fn-torow"
981
+ },
982
+ {
983
+ "name": "HSTACK",
984
+ "category": "Array",
985
+ "description": "Stacks arrays horizontally.",
986
+ "volatile": false,
987
+ "anchorId": "formula-fn-hstack"
988
+ },
989
+ {
990
+ "name": "VSTACK",
991
+ "category": "Array",
992
+ "description": "Stacks arrays vertically.",
993
+ "volatile": false,
994
+ "anchorId": "formula-fn-vstack"
995
+ },
996
+ {
997
+ "name": "FREQUENCY",
998
+ "category": "Array",
999
+ "description": "Calculates a frequency distribution for values.",
1000
+ "volatile": false,
1001
+ "anchorId": "formula-fn-frequency"
1002
+ },
1003
+ {
1004
+ "name": "MMULT",
1005
+ "category": "Array",
1006
+ "description": "Calculates matrix multiplication.",
1007
+ "volatile": false,
1008
+ "anchorId": "formula-fn-mmult"
1009
+ },
1010
+ {
1011
+ "name": "MDETERM",
1012
+ "category": "Array",
1013
+ "description": "Returns the determinant of a matrix.",
1014
+ "volatile": false,
1015
+ "anchorId": "formula-fn-mdeterm"
1016
+ },
1017
+ {
1018
+ "name": "MINVERSE",
1019
+ "category": "Array",
1020
+ "description": "Returns the inverse of a matrix.",
1021
+ "volatile": false,
1022
+ "anchorId": "formula-fn-minverse"
1023
+ },
1024
+ {
1025
+ "name": "LINEST",
1026
+ "category": "Array",
1027
+ "description": "Returns linear regression coefficients.",
1028
+ "volatile": false,
1029
+ "anchorId": "formula-fn-linest"
1030
+ },
1031
+ {
1032
+ "name": "LOGEST",
1033
+ "category": "Array",
1034
+ "description": "Returns exponential regression coefficients.",
1035
+ "volatile": false,
1036
+ "anchorId": "formula-fn-logest"
1037
+ },
1038
+ {
1039
+ "name": "TREND",
1040
+ "category": "Array",
1041
+ "description": "Returns values along a linear trend.",
1042
+ "volatile": false,
1043
+ "anchorId": "formula-fn-trend"
1044
+ },
1045
+ {
1046
+ "name": "GROWTH",
1047
+ "category": "Array",
1048
+ "description": "Returns values along an exponential trend.",
1049
+ "volatile": false,
1050
+ "anchorId": "formula-fn-growth"
1051
+ },
1052
+ {
1053
+ "name": "DAVERAGE",
1054
+ "category": "Database",
1055
+ "description": "Returns the average of matching values in a table.",
1056
+ "volatile": false,
1057
+ "anchorId": "formula-fn-daverage"
1058
+ },
1059
+ {
1060
+ "name": "DCOUNT",
1061
+ "category": "Database",
1062
+ "description": "Counts numeric values in a table matching criteria.",
1063
+ "volatile": false,
1064
+ "anchorId": "formula-fn-dcount"
1065
+ },
1066
+ {
1067
+ "name": "DCOUNTA",
1068
+ "category": "Database",
1069
+ "description": "Counts non-empty values in a table matching criteria.",
1070
+ "volatile": false,
1071
+ "anchorId": "formula-fn-dcounta"
1072
+ },
1073
+ {
1074
+ "name": "DGET",
1075
+ "category": "Database",
1076
+ "description": "Returns a single matching value from a table.",
1077
+ "volatile": false,
1078
+ "anchorId": "formula-fn-dget"
1079
+ },
1080
+ {
1081
+ "name": "DMAX",
1082
+ "category": "Database",
1083
+ "description": "Returns the maximum numeric value from a table.",
1084
+ "volatile": false,
1085
+ "anchorId": "formula-fn-dmax"
1086
+ },
1087
+ {
1088
+ "name": "DMIN",
1089
+ "category": "Database",
1090
+ "description": "Returns the minimum numeric value from a table.",
1091
+ "volatile": false,
1092
+ "anchorId": "formula-fn-dmin"
1093
+ },
1094
+ {
1095
+ "name": "DPRODUCT",
1096
+ "category": "Database",
1097
+ "description": "Returns the product of matching numeric values.",
1098
+ "volatile": false,
1099
+ "anchorId": "formula-fn-dproduct"
1100
+ },
1101
+ {
1102
+ "name": "DSTDEV",
1103
+ "category": "Database",
1104
+ "description": "Returns the sample standard deviation of matching values.",
1105
+ "volatile": false,
1106
+ "anchorId": "formula-fn-dstdev"
1107
+ },
1108
+ {
1109
+ "name": "DSTDEVP",
1110
+ "category": "Database",
1111
+ "description": "Returns the population standard deviation of matching values.",
1112
+ "volatile": false,
1113
+ "anchorId": "formula-fn-dstdevp"
1114
+ },
1115
+ {
1116
+ "name": "DSUM",
1117
+ "category": "Database",
1118
+ "description": "Returns the sum of matching numeric values.",
1119
+ "volatile": false,
1120
+ "anchorId": "formula-fn-dsum"
1121
+ },
1122
+ {
1123
+ "name": "DVAR",
1124
+ "category": "Database",
1125
+ "description": "Returns the sample variance of matching values.",
1126
+ "volatile": false,
1127
+ "anchorId": "formula-fn-dvar"
1128
+ },
1129
+ {
1130
+ "name": "DVARP",
1131
+ "category": "Database",
1132
+ "description": "Returns the population variance of matching values.",
1133
+ "volatile": false,
1134
+ "anchorId": "formula-fn-dvarp"
1135
+ }
1136
+ ]
1137
+ }