-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathcodafx.json
More file actions
2658 lines (2658 loc) · 79.5 KB
/
Copy pathcodafx.json
File metadata and controls
2658 lines (2658 loc) · 79.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"meta": {
"source": "https://coda.io/formulas",
"scraped": "2026-03-04T09:18:25.134Z",
"description": "Coda formula reference - base and action formulas",
"totalFormulas": 219,
"totalCategories": 17
},
"formulas": [
{
"name": "Count",
"signature": "Count(list)",
"description": "Counts the size of a list",
"parameters": [
"list"
],
"output": "Outputs the count of non-blank values in list(s).",
"category": "Collections",
"type": "formula"
},
{
"name": "CountUnique",
"signature": "CountUnique(value)",
"description": "Counts number of unique values",
"parameters": [
"value"
],
"output": "Outputs a count of all of the unique value(s) ignoring duplicates and blank values. Counts each unique item in a value if it is a list.",
"category": "Collections",
"type": "formula"
},
{
"name": "Find",
"signature": "Find(needle, haystack, startAt, ignoreCase, ignoreAccents)",
"description": "Get the position of a value",
"parameters": [
"needle",
"haystack",
"startAt",
"ignoreCase",
"ignoreAccents"
],
"output": "Outputs the first position of needle in haystack starting at startAt, or -1 if not found. Works with text and lists.",
"category": "Collections",
"type": "formula"
},
{
"name": "MaxBy",
"signature": "MaxBy(list, compareBy)",
"description": "Get the row of a table with the maximum value in the provided column, or item in a list with the maximum value by the provided formula.",
"parameters": [
"list",
"compareBy"
],
"output": "Outputs the maximum item inlist based on evaluating compareBy over each item. This will return the item in the original list, not the value that is used for comparison - use Max(list.compareBy) instead to only fetch the maximum compared value.",
"category": "Collections",
"type": "formula"
},
{
"name": "MinBy",
"signature": "MinBy(list, compareBy)",
"description": "Get the row of a table with the minimum value in the provided column, or item in a list with the minimum value by the provided formula.",
"parameters": [
"list",
"compareBy"
],
"output": "Outputs the minimum item in list based on evaluating compareBy over each item. This will return the item in the original list, not the value that is used for comparison - use Min(list.compareBy) instead to only fetch the minimum compared value.",
"category": "Collections",
"type": "formula"
},
{
"name": "Slice",
"signature": "Slice(value, start, end)",
"description": "Get part of a list or text",
"parameters": [
"value",
"start",
"end"
],
"output": "Outputs a part of the provided value based on the start and end positions.",
"category": "Collections",
"type": "formula"
},
{
"name": "Sort",
"signature": "Sort(dataset, ascending, sortBy, sortByCount)",
"description": "Sort a list or column",
"parameters": [
"dataset",
"ascending",
"sortBy",
"sortByCount"
],
"output": "Outputs dataset in sorted order. Sort order and criteria are specified by the ascending, sortBy and sortByCount inputs.",
"category": "Collections",
"type": "formula"
},
{
"name": "Splice",
"signature": "Splice(value, start, deleteCount, insertValue)",
"description": "Remove and add to a list or text",
"parameters": [
"value",
"start",
"deleteCount",
"insertValue"
],
"output": "Outputs value with deleteCount values removed and insertValue(s) added at start position.",
"category": "Collections",
"type": "formula"
},
{
"name": "Created",
"signature": "Created(object)",
"description": "Get the created date/time for a row or other object",
"parameters": [
"object"
],
"output": "Outputs the created date/time for object.",
"category": "Dates",
"type": "formula"
},
{
"name": "CurrentTimezone",
"signature": "CurrentTimezone()",
"description": "Get the user's current time zone",
"parameters": [],
"output": "Outputs the user's current time zone.",
"category": "Dates",
"type": "formula"
},
{
"name": "Date",
"signature": "Date(year, month, day)",
"description": "Create a date value",
"parameters": [
"year",
"month",
"day"
],
"output": "Outputs the date of the provided year, month, and day.",
"category": "Dates",
"type": "formula",
"in_jat": "date"
},
{
"name": "DateTime",
"signature": "DateTime(year, month, day, hour, minute, second)",
"description": "Create a date time value",
"parameters": [
"year",
"month",
"day",
"hour",
"minute",
"second"
],
"output": "Outputs the date of the provided year, month, day, hour, minute, and second.",
"category": "Dates",
"type": "formula",
"in_jat": "todatetime"
},
{
"name": "DateTimeTruncate",
"signature": "DateTimeTruncate(dateOrTime, unit)",
"description": "Round a date/time",
"parameters": [
"dateOrTime",
"unit"
],
"output": "Outputs dateOrTime rounded to the nearest unit.",
"category": "Dates",
"type": "formula"
},
{
"name": "DateToEpoch",
"signature": "DateToEpoch(date)",
"description": "Convert date to epoch",
"parameters": [
"date"
],
"output": "Outputs date as an epoch time (the number of seconds since Jan 1st, 1970).",
"category": "Dates",
"type": "formula",
"in_jat": "datetoepoch"
},
{
"name": "Day",
"signature": "Day(dateTime)",
"description": "Get the day-of-month from a date/time",
"parameters": [
"dateTime"
],
"output": "Outputs the day of month of the given dateTime as a number.",
"category": "Dates",
"type": "formula",
"in_jat": "day"
},
{
"name": "DocumentTimezone",
"signature": "DocumentTimezone()",
"description": "Get the document's timezone",
"parameters": [],
"output": "Outputs the document's timezone.",
"category": "Dates",
"type": "formula"
},
{
"name": "EndOfMonth",
"signature": "EndOfMonth(dateTime, monthOffset)",
"description": "Get the last day of a given month",
"parameters": [
"dateTime",
"monthOffset"
],
"output": "Outputs the date for the last day of the month of dateTime plus monthOffset.",
"category": "Dates",
"type": "formula",
"in_jat": "endofmonth"
},
{
"name": "EpochToDate",
"signature": "EpochToDate(epochTime)",
"description": "Convert epoch time to date",
"parameters": [
"epochTime"
],
"output": "Outputs epochTime as a date.",
"category": "Dates",
"type": "formula",
"in_jat": "epochtodate"
},
{
"name": "Hour",
"signature": "Hour(dateOrTime)",
"description": "Get the hour from a date/time",
"parameters": [
"dateOrTime"
],
"output": "Outputs the hour of the given dateOrTime as a number.",
"category": "Dates",
"type": "formula",
"in_jat": "hour"
},
{
"name": "IsoWeekNumber",
"signature": "IsoWeekNumber(dateTime)",
"description": "Get the week number of a date in the ISO week numbering system,\n where week 1 contains the first Thursday of the year and weeks start on Monday",
"parameters": [
"dateTime"
],
"output": "Outputs the week of dateTime as a number between 1 and 52.",
"category": "Dates",
"type": "formula",
"in_jat": "weeknumber"
},
{
"name": "IsoWeekday",
"signature": "IsoWeekday(dateTime)",
"description": "Get the day-of-week of a date/time as a number in the ISO week numbering system, where Monday is 1.",
"parameters": [
"dateTime"
],
"output": "Outputs the day-of-week of dateTime as a number between 1 and 7.",
"category": "Dates",
"type": "formula"
},
{
"name": "Minute",
"signature": "Minute(dateOrTime)",
"description": "Get the minute from a date/time",
"parameters": [
"dateOrTime"
],
"output": "Outputs the minute of the given dateOrTime as a number.",
"category": "Dates",
"type": "formula",
"in_jat": "minute"
},
{
"name": "Modified",
"signature": "Modified(object)",
"description": "Get the modified date/time for a row or other object",
"parameters": [
"object"
],
"output": "Outputs the modified date/time for object.",
"category": "Dates",
"type": "formula"
},
{
"name": "Month",
"signature": "Month(dateTime)",
"description": "Get the month from a date",
"parameters": [
"dateTime"
],
"output": "Outputs the month of the given dateTime as a number.",
"category": "Dates",
"type": "formula",
"in_jat": "month"
},
{
"name": "MonthName",
"signature": "MonthName(dateTime, format)",
"description": "Get the month name for a date",
"parameters": [
"dateTime",
"format"
],
"output": "Outputs the month name for given dateTime as text.",
"category": "Dates",
"type": "formula",
"in_jat": "monthname"
},
{
"name": "NetWorkingDays",
"signature": "NetWorkingDays(startDate, endDate, holidays)",
"description": "Count working days between dates. Customize working days in region and date settings.",
"parameters": [
"startDate",
"endDate",
"holidays"
],
"output": "Outputs the count of working days between startDate and endDate excluding holidays. Customize working days in region and date settings.",
"category": "Dates",
"type": "formula"
},
{
"name": "Now",
"signature": "Now(precision)",
"description": "Get the current date/time",
"parameters": [
"precision"
],
"output": "Outputs the current date and time. Updates based on precision specified.",
"category": "Dates",
"type": "formula",
"in_jat": "now"
},
{
"name": "RelativeDate",
"signature": "RelativeDate(dateTime, months)",
"description": "Add months to a date/time",
"parameters": [
"dateTime",
"months"
],
"output": "Outputs months added to dateTime rounded to the day.",
"category": "Dates",
"type": "formula",
"in_jat": "relativedate"
},
{
"name": "Second",
"signature": "Second(dateOrTime)",
"description": "Get the \"second\" from a date/time",
"parameters": [
"dateOrTime"
],
"output": "Outputs the seconds part of the given dateOrTime as a number.",
"category": "Dates",
"type": "formula",
"in_jat": "second"
},
{
"name": "Time",
"signature": "Time(hour, minute, second)",
"description": "Create a time value",
"parameters": [
"hour",
"minute",
"second"
],
"output": "Outputs the time of the provided hour, minute, and second.",
"category": "Dates",
"type": "formula"
},
{
"name": "TimeValue",
"signature": "TimeValue(time)",
"description": "Convert a time to a number",
"parameters": [
"time"
],
"output": "Outputs time as a decimal ratio of the day.",
"category": "Dates",
"type": "formula"
},
{
"name": "ToDate",
"signature": "ToDate(text)",
"description": "Convert text into a date value. Respects the doc's date order setting.",
"parameters": [
"text"
],
"output": "Outputs the value of text parsed into a date. Outputs blank if text can't be parsed.",
"category": "Dates",
"type": "formula",
"in_jat": "todate"
},
{
"name": "ToDateTime",
"signature": "ToDateTime(datetime)",
"description": "Converts text into a date/time. Respects the doc's date order setting.",
"parameters": [
"datetime"
],
"output": "Outputs the value of datetime parsed into a date and time. Outputs blank if datetimecan't be parsed.",
"category": "Dates",
"type": "formula",
"in_jat": "todatetime"
},
{
"name": "ToTime",
"signature": "ToTime(value)",
"description": "Converts a value into a time",
"parameters": [
"value"
],
"output": "Outputs the value of value parsed into a time. Outputs blank if valuecan't be parsed.",
"category": "Dates",
"type": "formula"
},
{
"name": "Today",
"signature": "Today()",
"description": "Get today's date",
"parameters": [],
"output": "Outputs the current date. Updates daily.",
"category": "Dates",
"type": "formula",
"in_jat": "today"
},
{
"name": "WeekNumber",
"signature": "WeekNumber(dateTime, returnType)",
"description": "Get the week number of a date, where week 1 contains Jan 1. Respects the doc’s first day of week setting.\n Use \"IsoWeekNumber()\" if week 1 should contain the first Thursday of the year.",
"parameters": [
"dateTime",
"returnType"
],
"output": "Outputs the week of dateTime as a number between 1 and 52.",
"category": "Dates",
"type": "formula",
"in_jat": "weeknumber"
},
{
"name": "Weekday",
"signature": "Weekday(dateTime, returnType)",
"description": "Get the day-of-week of a date/time as a number. Respects the doc’s first day of week setting.",
"parameters": [
"dateTime",
"returnType"
],
"output": "Outputs the day-of-week of dateTime as a number between 1 and 7.",
"category": "Dates",
"type": "formula",
"in_jat": "weekday"
},
{
"name": "WeekdayName",
"signature": "WeekdayName(dateTime)",
"description": "Get the day-of-week of a date as text",
"parameters": [
"dateTime"
],
"output": "Outputs the day-of-week of dateTime as text (\"Monday\", \"Tuesday\", etc.).",
"category": "Dates",
"type": "formula",
"in_jat": "weekdayname"
},
{
"name": "Workday",
"signature": "Workday(startDate, numWorkingDays, holidays)",
"description": "Adds working days to a date. Customize working days in region and date settings.",
"parameters": [
"startDate",
"numWorkingDays",
"holidays"
],
"output": "Outputs a date based on your startDate plus the numWorkingDays you wish to move forward skipping over any dates included in holidays.",
"category": "Dates",
"type": "formula"
},
{
"name": "Year",
"signature": "Year(dateTime)",
"description": "Get the year of a date",
"parameters": [
"dateTime"
],
"output": "Outputs the year of the given dateTime as a number.",
"category": "Dates",
"type": "formula",
"in_jat": "year"
},
{
"name": "Days",
"signature": "Days(days)",
"description": "Create a time duration (for days)",
"parameters": [
"days"
],
"output": "Outputs a time duration for the specified number of days.",
"category": "Duration",
"type": "formula",
"in_jat": "days"
},
{
"name": "Duration",
"signature": "Duration(days, hours, minutes, seconds)",
"description": "Create a time duration",
"parameters": [
"days",
"hours",
"minutes",
"seconds"
],
"output": "Outputs a time duration for the specified number of days, hours, minutes, and seconds.",
"category": "Duration",
"type": "formula"
},
{
"name": "Hours",
"signature": "Hours(hours)",
"description": "Create a time duration (for hours)",
"parameters": [
"hours"
],
"output": "Outputs a time duration for the specified number of hours.",
"category": "Duration",
"type": "formula",
"in_jat": "hours"
},
{
"name": "Minutes",
"signature": "Minutes(minutes)",
"description": "Create a time duration (for minutes)",
"parameters": [
"minutes"
],
"output": "Outputs a time duration for the specified number of minutes.",
"category": "Duration",
"type": "formula",
"in_jat": "minutes"
},
{
"name": "Seconds",
"signature": "Seconds(seconds)",
"description": "Create a time duration (for seconds)",
"parameters": [
"seconds"
],
"output": "Outputs a time duration for the specified number of seconds.",
"category": "Duration",
"type": "formula",
"in_jat": "seconds"
},
{
"name": "ToDays",
"signature": "ToDays(duration)",
"description": "Convert a time duration into a number of days",
"parameters": [
"duration"
],
"output": "Outputs a number of days for the specified duration.",
"category": "Duration",
"type": "formula",
"in_jat": "todays"
},
{
"name": "ToHours",
"signature": "ToHours(duration)",
"description": "Convert a time duration into a number of hours",
"parameters": [
"duration"
],
"output": "Outputs a number of hours for the specified duration.",
"category": "Duration",
"type": "formula",
"in_jat": "tohours"
},
{
"name": "ToMinutes",
"signature": "ToMinutes(duration)",
"description": "Convert a time duration into a number of minutes",
"parameters": [
"duration"
],
"output": "Outputs a number of minutes for the specified duration.",
"category": "Duration",
"type": "formula",
"in_jat": "tominutes"
},
{
"name": "ToSeconds",
"signature": "ToSeconds(duration)",
"description": "Convert a time duration into a number of seconds",
"parameters": [
"duration"
],
"output": "Outputs a number of seconds for the specified duration.",
"category": "Duration",
"type": "formula",
"in_jat": "toseconds"
},
{
"name": "AverageIf",
"signature": "AverageIf(list, expression)",
"description": "Compute the average of a filtered list of numbers",
"parameters": [
"list",
"expression"
],
"output": "Outputs the average of a list of numbers for values matching expression. Blank values are ignored.",
"category": "Filters",
"type": "formula"
},
{
"name": "CountIf",
"signature": "CountIf(list, expression)",
"description": "Get the count for a filtered list",
"parameters": [
"list",
"expression"
],
"output": "Outputs the count of values in list for values matching expression. Blank values are ignored.",
"category": "Filters",
"type": "formula"
},
{
"name": "Filter",
"signature": "Filter(list, expression)",
"description": "Gets a list of values that match your filter",
"parameters": [
"list",
"expression"
],
"output": "Outputs a list of all values in list that match expression.",
"category": "Filters",
"type": "formula"
},
{
"name": "IsFromTable",
"signature": "IsFromTable(row, table)",
"description": "Check if a reference is from a table",
"parameters": [
"row",
"table"
],
"output": "Outputs True if row is a row in table. Otherwise outputs False.",
"category": "Filters",
"type": "formula"
},
{
"name": "Lookup",
"signature": "Lookup(table, column, match value)",
"description": "Get the rows from a table that match your filter",
"parameters": [
"table",
"column",
"match value"
],
"output": "Outputs the rows from a table where column is the same as match value. We recommend using Table.Filter() instead.",
"category": "Filters",
"type": "formula"
},
{
"name": "Matches",
"signature": "Matches(value, control)",
"description": "Checks if a Coda control matches a value",
"parameters": [
"value",
"control"
],
"output": "Outputs True if the given value matches the control. Otherwise outputs False.",
"category": "Filters",
"type": "formula"
},
{
"name": "SumIf",
"signature": "SumIf(list, expression)",
"description": "Compute the sum for a filtered list",
"parameters": [
"list",
"expression"
],
"output": "Outputs the sum of a list of numbers for values matching expression. Blank values are ignored.",
"category": "Filters",
"type": "formula"
},
{
"name": "FormatCurrency",
"signature": "FormatCurrency(currency code, value, format, precision, symbol position)",
"description": "Formats the provided number to a currency",
"parameters": [
"currency code",
"value",
"format",
"precision",
"symbol position"
],
"output": "",
"category": "Formats",
"type": "formula",
"in_jat": true
},
{
"name": "FormatNumber",
"signature": "FormatNumber(value, grouping, precision)",
"description": "Formats the provided number",
"parameters": [
"value",
"grouping",
"precision"
],
"output": "",
"category": "Formats",
"type": "formula",
"in_jat": true
},
{
"name": "FormatPercent",
"signature": "FormatPercent(value, grouping, precision)",
"description": "Formats the provided number to a percentage",
"parameters": [
"value",
"grouping",
"precision"
],
"output": "",
"category": "Formats",
"type": "formula",
"in_jat": true
},
{
"name": "IsAnyText",
"signature": "IsAnyText(value)",
"description": "Checks if a value is plain text or rich text",
"parameters": [
"value"
],
"output": "Outputs True if the given value is plain text or rich text. Otherwise, outputs False.",
"category": "Info",
"type": "formula"
},
{
"name": "IsBlank",
"signature": "IsBlank(value)",
"description": "Check if a value is blank",
"parameters": [
"value"
],
"output": "Outputs True if the given value is blank. Otherwise, outputs False.",
"category": "Info",
"type": "formula",
"in_jat": true
},
{
"name": "IsDate",
"signature": "IsDate(value)",
"description": "Checks if a value is a date",
"parameters": [
"value"
],
"output": "Outputs True if the given value is a date. Otherwise, outputs False.",
"category": "Info",
"type": "formula"
},
{
"name": "IsLogical",
"signature": "IsLogical(value)",
"description": "Checks if a value is true or false",
"parameters": [
"value"
],
"output": "Outputs True if the given value is True or False. Outputs False if it's neither.",
"category": "Info",
"type": "formula"
},
{
"name": "IsNotBlank",
"signature": "IsNotBlank(value)",
"description": "Checks if a value is not blank",
"parameters": [
"value"
],
"output": "Outputs True if the given value is not blank. Otherwise, outputs False.",
"category": "Info",
"type": "formula",
"in_jat": true
},
{
"name": "IsNotText",
"signature": "IsNotText(value)",
"description": "Checks if a value is not text",
"parameters": [
"value"
],
"output": "Outputs True if the given value is not blank. Otherwise, outputs False.",
"category": "Info",
"type": "formula"
},
{
"name": "IsNumber",
"signature": "IsNumber(value)",
"description": "Checks if a value is a number",
"parameters": [
"value"
],
"output": "Outputs True if the given value is a number. Otherwise, outputs False.",
"category": "Info",
"type": "formula",
"in_jat": true
},
{
"name": "IsPlainText",
"signature": "IsPlainText(value)",
"description": "Checks if a value is plain text",
"parameters": [
"value"
],
"output": "Outputs True if the given value is plain text. Otherwise, outputs False. Will output False if value is rich text.",
"category": "Info",
"type": "formula"
},
{
"name": "IsRichText",
"signature": "IsRichText(value)",
"description": "Checks if a value is rich text",
"parameters": [
"value"
],
"output": "Outputs True if the given value is rich text. Otherwise, outputs False. Will output False if value is plain text.",
"category": "Info",
"type": "formula"
},
{
"name": "ToNumber",
"signature": "ToNumber(value, base)",
"description": "Convert a value to a number",
"parameters": [
"value",
"base"
],
"output": "Outputs value as a number if conversion with base is possible. Otherwise outputs value.",
"category": "Info",
"type": "formula",
"in_jat": true
},
{
"name": "ToText",
"signature": "ToText(value)",
"description": "Convert a value to text",
"parameters": [
"value"
],
"output": "Outputs value as text.",
"category": "Info",
"type": "formula",
"in_jat": true
},
{
"name": "All",
"signature": "All(list, expression)",
"description": "Checks if an expression evaluates to true for all values in a list",
"parameters": [
"list",
"expression"
],
"output": "Outputs True if the result for evaluating expression on every value in list is true.",
"category": "Lists",
"type": "formula"
},
{
"name": "Any",
"signature": "Any(list, expression)",
"description": "Checks if an expression evaluates to true for any value in a list",
"parameters": [
"list",
"expression"
],
"output": "Outputs True if the result for evaluating expression on any value in list is true.",
"category": "Lists",
"type": "formula"
},
{
"name": "Contains",
"signature": "Contains(value, search)",
"description": "Checks if a list contains any value from a list",
"parameters": [
"value",
"search"
],
"output": "Outputs True if any value in search exists in value.",
"category": "Lists",
"type": "formula"
},
{
"name": "ContainsAll",
"signature": "ContainsAll(value, search)",
"description": "Checks if a list contains all values from a list",
"parameters": [
"value",
"search"
],
"output": "Outputs True if all values in search exists in value.",
"category": "Lists",
"type": "formula"
},
{
"name": "ContainsOnly",
"signature": "ContainsOnly(value, search)",
"description": "Checks if a list contains only values from a list",
"parameters": [
"value",
"search"
],
"output": "Outputs True if only values in search exist in value.",
"category": "Lists",
"type": "formula"
},
{
"name": "CountAll",
"signature": "CountAll(list)",
"description": "Counts the size of a list including blank values",
"parameters": [
"list"
],
"output": "Outputs the count of values in list, including blank values.",
"category": "Lists",
"type": "formula"
},
{
"name": "Duplicates",
"signature": "Duplicates(value)",
"description": "Get duplicate values",
"parameters": [
"value"
],
"output": "Outputs a list of values which appear multiple times.",
"category": "Lists",
"type": "formula"
},
{
"name": "First",
"signature": "First(list)",
"description": "Get the first value from a list",
"parameters": [
"list"
],
"output": "Outputs the first value in list or blank if the list is empty.",
"category": "Lists",
"type": "formula"
},
{
"name": "ForEach",
"signature": "ForEach(list, formula)",
"description": "Run a formula for every item in a list",
"parameters": [
"list",
"formula"
],
"output": "Evaluates formula for every value in list and outputs a list of all formula outputs.",
"category": "Lists",
"type": "formula"
},
{
"name": "FormulaMap",
"signature": "FormulaMap(list, formula)",
"description": "Run a formula for every item in a list",
"parameters": [
"list",
"formula"
],
"output": "Evaluates formula for every value in list and outputs a list of all formula outputs.",
"category": "Lists",
"type": "formula"
},
{
"name": "In",
"signature": "In(search, value)",
"description": "Checks if a value is in a list",
"parameters": [
"search",
"value"
],
"output": "Outputs True if search is found in value.",
"category": "Lists",
"type": "formula"
},
{
"name": "Last",
"signature": "Last(list)",
"description": "Get the last value from a list",
"parameters": [
"list"
],
"output": "Outputs the last value in list or blank if the list is empty.",