-
Notifications
You must be signed in to change notification settings - Fork 0
/
excel-functions-alphabetical.json
3301 lines (3301 loc) · 123 KB
/
excel-functions-alphabetical.json
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
{
"functions": [
{
"name": "ABS",
"url": "https://support.office.com/en-us/article/ABS-function-3420200f-5628-4e8c-99da-c99d7c87713c",
"category": "Math and trigonometry",
"description": "Returns the absolute value of a number",
"intro": ""
},
{
"name": "ACCRINT",
"url": "https://support.office.com/en-us/article/ACCRINT-function-fe45d089-6722-4fb3-9379-e1f911d8dc74",
"category": "Financial",
"description": "Returns the accrued interest for a security that pays periodic interest",
"intro": ""
},
{
"name": "ACCRINTM",
"url": "https://support.office.com/en-us/article/ACCRINTM-function-f62f01f9-5754-4cc4-805b-0e70199328a7",
"category": "Financial",
"description": "Returns the accrued interest for a security that pays interest at maturity",
"intro": ""
},
{
"name": "ACOS",
"url": "https://support.office.com/en-us/article/ACOS-function-cb73173f-d089-4582-afa1-76e5524b5d5b",
"category": "Math and trigonometry",
"description": "Returns the arccosine of a number",
"intro": ""
},
{
"name": "ACOSH",
"url": "https://support.office.com/en-us/article/ACOSH-function-e3992cc1-103f-4e72-9f04-624b9ef5ebfe",
"category": "Math and trigonometry",
"description": "Returns the inverse hyperbolic cosine of a number",
"intro": ""
},
{
"name": "ACOT",
"url": "https://support.office.com/en-us/article/ACOT-function-dc7e5008-fe6b-402e-bdd6-2eea8383d905",
"category": "Math and trigonometry",
"description": "Returns the arccotangent of a number",
"intro": "2013"
},
{
"name": "ACOTH",
"url": "https://support.office.com/en-us/article/ACOTH-function-cc49480f-f684-4171-9fc5-73e4e852300f",
"category": "Math and trigonometry",
"description": "Returns the hyperbolic arccotangent of a number",
"intro": "2013"
},
{
"name": "AGGREGATE",
"url": "https://support.office.com/en-us/article/AGGREGATE-function-43b9278e-6aa7-4f17-92b6-e19993fa26df",
"category": "Math and trigonometry",
"description": "Returns an aggregate in a list or database",
"intro": ""
},
{
"name": "ADDRESS",
"url": "https://support.office.com/en-us/article/ADDRESS-function-d0c26c0d-3991-446b-8de4-ab46431d4f89",
"category": "Lookup and reference",
"description": "Returns a reference as text to a single cell in a worksheet",
"intro": ""
},
{
"name": "AMORDEGRC",
"url": "https://support.office.com/en-us/article/AMORDEGRC-function-a14d0ca1-64a4-42eb-9b3d-b0dededf9e51",
"category": "Financial",
"description": "Returns the depreciation for each accounting period by using a depreciation coefficient",
"intro": ""
},
{
"name": "AMORLINC",
"url": "https://support.office.com/en-us/article/AMORLINC-function-7d417b45-f7f5-4dba-a0a5-3451a81079a8",
"category": "Financial",
"description": "Returns the depreciation for each accounting period",
"intro": ""
},
{
"name": "AND",
"url": "https://support.office.com/en-us/article/AND-function-5f19b2e8-e1df-4408-897a-ce285a19e9d9",
"category": "Logical",
"description": "Returns TRUE if all of its arguments are TRUE",
"intro": ""
},
{
"name": "ARABIC",
"url": "https://support.office.com/en-us/article/ARABIC-function-9a8da418-c17b-4ef9-a657-9370a30a674f",
"category": "Math and trigonometry",
"description": "Converts a Roman number to Arabic, as a number",
"intro": "2013"
},
{
"name": "AREAS",
"url": "https://support.office.com/en-us/article/AREAS-function-8392ba32-7a41-43b3-96b0-3695d2ec6152",
"category": "Lookup and reference",
"description": "Returns the number of areas in a reference",
"intro": ""
},
{
"name": "ASC",
"url": "https://support.office.com/en-us/article/ASC-function-0b6abf1c-c663-4004-a964-ebc00b723266",
"category": "Text",
"description": "Changes full-width (double-byte) English letters or katakana within a character string to half-width (single-byte) characters",
"intro": ""
},
{
"name": "ASIN",
"url": "https://support.office.com/en-us/article/ASIN-function-81fb95e5-6d6f-48c4-bc45-58f955c6d347",
"category": "Math and trigonometry",
"description": "Returns the arcsine of a number",
"intro": ""
},
{
"name": "ASINH",
"url": "https://support.office.com/en-us/article/ASINH-function-4e00475a-067a-43cf-926a-765b0249717c",
"category": "Math and trigonometry",
"description": "Returns the inverse hyperbolic sine of a number",
"intro": ""
},
{
"name": "ATAN",
"url": "https://support.office.com/en-us/article/ATAN-function-50746fa8-630a-406b-81d0-4a2aed395543",
"category": "Math and trigonometry",
"description": "Returns the arctangent of a number",
"intro": ""
},
{
"name": "ATAN2",
"url": "https://support.office.com/en-us/article/ATAN2-function-c04592ab-b9e3-4908-b428-c96b3a565033",
"category": "Math and trigonometry",
"description": "Returns the arctangent from x- and y-coordinates",
"intro": ""
},
{
"name": "ATANH",
"url": "https://support.office.com/en-us/article/ATANH-function-3cd65768-0de7-4f1d-b312-d01c8c930d90",
"category": "Math and trigonometry",
"description": "Returns the inverse hyperbolic tangent of a number",
"intro": ""
},
{
"name": "AVEDEV",
"url": "https://support.office.com/en-us/article/AVEDEV-function-58fe8d65-2a84-4dc7-8052-f3f87b5c6639",
"category": "Statistical",
"description": "Returns the average of the absolute deviations of data points from their mean",
"intro": ""
},
{
"name": "AVERAGE",
"url": "https://support.office.com/en-us/article/AVERAGE-function-047bac88-d466-426c-a32b-8f33eb960cf6",
"category": "Statistical",
"description": "Returns the average of its arguments",
"intro": ""
},
{
"name": "AVERAGEA",
"url": "https://support.office.com/en-us/article/AVERAGEA-function-f5f84098-d453-4f4c-bbba-3d2c66356091",
"category": "Statistical",
"description": "Returns the average of its arguments, including numbers, text, and logical values",
"intro": ""
},
{
"name": "AVERAGEIF",
"url": "https://support.office.com/en-us/article/AVERAGEIF-function-faec8e2e-0dec-4308-af69-f5576d8ac642",
"category": "Statistical",
"description": "Returns the average (arithmetic mean) of all the cells in a range that meet a given criteria",
"intro": ""
},
{
"name": "AVERAGEIFS",
"url": "https://support.office.com/en-us/article/AVERAGEIFS-function-48910c45-1fc0-4389-a028-f7c5c3001690",
"category": "Statistical",
"description": "Returns the average (arithmetic mean) of all cells that meet multiple criteria.",
"intro": ""
},
{
"name": "BAHTTEXT",
"url": "https://support.office.com/en-us/article/BAHTTEXT-function-5ba4d0b4-abd3-4325-8d22-7a92d59aab9c",
"category": "Text",
"description": "Converts a number to text, using the ß (baht) currency format",
"intro": ""
},
{
"name": "BASE",
"url": "https://support.office.com/en-us/article/BASE-function-2ef61411-aee9-4f29-a811-1c42456c6342",
"category": "Math and trigonometry",
"description": "Converts a number into a text representation with the given radix (base)",
"intro": ""
},
{
"name": "BESSELI",
"url": "https://support.office.com/en-us/article/BESSELI-function-8d33855c-9a8d-444b-98e0-852267b1c0df",
"category": "Engineering",
"description": "Returns the modified Bessel function In(x)",
"intro": ""
},
{
"name": "BESSELJ",
"url": "https://support.office.com/en-us/article/BESSELJ-function-839cb181-48de-408b-9d80-bd02982d94f7",
"category": "Engineering",
"description": "Returns the Bessel function Jn(x)",
"intro": ""
},
{
"name": "BESSELK",
"url": "https://support.office.com/en-us/article/BESSELK-function-606d11bc-06d3-4d53-9ecb-2803e2b90b70",
"category": "Engineering",
"description": "Returns the modified Bessel function Kn(x)",
"intro": ""
},
{
"name": "BESSELY",
"url": "https://support.office.com/en-us/article/BESSELY-function-f3a356b3-da89-42c3-8974-2da54d6353a2",
"category": "Engineering",
"description": "Returns the Bessel function Yn(x)",
"intro": ""
},
{
"name": "BETADIST",
"url": "https://support.office.com/en-us/article/BETADIST-function-49f1b9a9-a5da-470f-8077-5f1730b5fd47",
"category": "Compatibility",
"description": "Returns the beta cumulative distribution function",
"intro": ""
},
{
"name": "BETA.DIST",
"url": "https://support.office.com/en-us/article/BETADIST-function-11188c9c-780a-42c7-ba43-9ecb5a878d31",
"category": "Statistical",
"description": "Returns the beta cumulative distribution function",
"intro": "2010"
},
{
"name": "BETAINV",
"url": "https://support.office.com/en-us/article/BETAINV-function-8b914ade-b902-43c1-ac9c-c05c54f10d6c",
"category": "Compatibility",
"description": "Returns the inverse of the cumulative distribution function for a specified beta distribution",
"intro": ""
},
{
"name": "BETA.INV",
"url": "https://support.office.com/en-us/article/BETAINV-function-e84cb8aa-8df0-4cf6-9892-83a341d252eb",
"category": "Statistical",
"description": "Returns the inverse of the cumulative distribution function for a specified beta distribution",
"intro": "2010"
},
{
"name": "BIN2DEC",
"url": "https://support.office.com/en-us/article/BIN2DEC-function-63905b57-b3a0-453d-99f4-647bb519cd6c",
"category": "Engineering",
"description": "Converts a binary number to decimal",
"intro": ""
},
{
"name": "BIN2HEX",
"url": "https://support.office.com/en-us/article/BIN2HEX-function-0375e507-f5e5-4077-9af8-28d84f9f41cc",
"category": "Engineering",
"description": "Converts a binary number to hexadecimal",
"intro": ""
},
{
"name": "BIN2OCT",
"url": "https://support.office.com/en-us/article/BIN2OCT-function-0a4e01ba-ac8d-4158-9b29-16c25c4c23fd",
"category": "Engineering",
"description": "Converts a binary number to octal",
"intro": ""
},
{
"name": "BINOMDIST",
"url": "https://support.office.com/en-us/article/BINOMDIST-function-506a663e-c4ca-428d-b9a8-05583d68789c",
"category": "Compatibility",
"description": "Returns the individual term binomial distribution probability",
"intro": ""
},
{
"name": "BINOM.DIST",
"url": "https://support.office.com/en-us/article/BINOMDIST-function-c5ae37b6-f39c-4be2-94c2-509a1480770c",
"category": "Statistical",
"description": "Returns the individual term binomial distribution probability",
"intro": "2010"
},
{
"name": "BINOM.DIST.RANGE",
"url": "https://support.office.com/en-us/article/BINOMDISTRANGE-function-17331329-74c7-4053-bb4c-6653a7421595",
"category": "Statistical",
"description": "Returns the probability of a trial result using a binomial distribution",
"intro": "2013"
},
{
"name": "BINOM.INV",
"url": "https://support.office.com/en-us/article/BINOMINV-function-80a0370c-ada6-49b4-83e7-05a91ba77ac9",
"category": "Statistical",
"description": "Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",
"intro": "2010"
},
{
"name": "BITAND",
"url": "https://support.office.com/en-us/article/BITAND-function-8a2be3d7-91c3-4b48-9517-64548008563a",
"category": "Engineering",
"description": "Returns a 'Bitwise And' of two numbers",
"intro": "2013"
},
{
"name": "BITLSHIFT",
"url": "https://support.office.com/en-us/article/BITLSHIFT-function-c55bb27e-cacd-4c7c-b258-d80861a03c9c",
"category": "Engineering",
"description": "Returns a value number shifted left by shift_amount bits",
"intro": "2013"
},
{
"name": "BITOR",
"url": "https://support.office.com/en-us/article/BITOR-function-f6ead5c8-5b98-4c9e-9053-8ad5234919b2",
"category": "Engineering",
"description": "Returns a bitwise OR of 2 numbers",
"intro": "2013"
},
{
"name": "BITRSHIFT",
"url": "https://support.office.com/en-us/article/BITRSHIFT-function-274d6996-f42c-4743-abdb-4ff95351222c",
"category": "Engineering",
"description": "Returns a value number shifted right by shift_amount bits",
"intro": "2013"
},
{
"name": "BITXOR",
"url": "https://support.office.com/en-us/article/BITXOR-function-c81306a1-03f9-4e89-85ac-b86c3cba10e4",
"category": "Engineering",
"description": "Returns a bitwise 'Exclusive Or' of two numbers",
"intro": "2013"
},
{
"name": "CALL",
"url": "https://support.office.com/en-us/article/CALL-function-32d58445-e646-4ffd-8d5e-b45077a5e995",
"category": "Add-in and Automation",
"description": "Calls a procedure in a dynamic link library or code resource",
"intro": ""
},
{
"name": "CEILING",
"url": "https://support.office.com/en-us/article/CEILING-function-0a5cd7c8-0720-4f0a-bd2c-c943e510899f",
"category": "Math and trigonometry",
"description": "Rounds a number to the nearest integer or to the nearest multiple of significance",
"intro": ""
},
{
"name": "CEILING.MATH",
"url": "https://support.office.com/en-us/article/CEILINGMATH-function-80f95d2f-b499-4eee-9f16-f795a8e306c8",
"category": "Math and trigonometry",
"description": "Rounds a number up, to the nearest integer or to the nearest multiple of significance",
"intro": "2013"
},
{
"name": "CEILING.PRECISE",
"url": "https://support.office.com/en-us/article/CEILINGPRECISE-function-f366a774-527a-4c92-ba49-af0a196e66cb",
"category": "Math and trigonometry",
"description": "Rounds a number the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded up.",
"intro": ""
},
{
"name": "CELL",
"url": "https://support.office.com/en-us/article/CELL-function-51bd39a5-f338-4dbe-a33f-955d67c2b2cf",
"category": "Information",
"description": "Returns information about the formatting, location, or contents of a cell",
"intro": ""
},
{
"name": "CHAR",
"url": "https://support.office.com/en-us/article/CHAR-function-bbd249c8-b36e-4a91-8017-1c133f9b837a",
"category": "Text",
"description": "Returns the character specified by the code number",
"intro": ""
},
{
"name": "CHIDIST",
"url": "https://support.office.com/en-us/article/CHIDIST-function-c90d0fbc-5b56-4f5f-ab57-34af1bf6897e",
"category": "Compatibility",
"description": "Returns the one-tailed probability of the chi-squared distribution",
"intro": ""
},
{
"name": "CHIINV",
"url": "https://support.office.com/en-us/article/CHIINV-function-cfbea3f6-6e4f-40c9-a87f-20472e0512af",
"category": "Compatibility",
"description": "Returns the inverse of the one-tailed probability of the chi-squared distribution",
"intro": ""
},
{
"name": "CHITEST",
"url": "https://support.office.com/en-us/article/CHITEST-function-981ff871-b694-4134-848e-38ec704577ac",
"category": "Compatibility",
"description": "Returns the test for independence",
"intro": ""
},
{
"name": "CHISQ.DIST",
"url": "https://support.office.com/en-us/article/CHISQDIST-function-8486b05e-5c05-4942-a9ea-f6b341518732",
"category": "Statistical",
"description": "Returns the cumulative beta probability density function",
"intro": "2010"
},
{
"name": "CHISQ.DIST.RT",
"url": "https://support.office.com/en-us/article/CHISQDISTRT-function-dc4832e8-ed2b-49ae-8d7c-b28d5804c0f2",
"category": "Statistical",
"description": "Returns the one-tailed probability of the chi-squared distribution",
"intro": "2010"
},
{
"name": "CHISQ.INV",
"url": "https://support.office.com/en-us/article/CHISQINV-function-400db556-62b3-472d-80b3-254723e7092f",
"category": "Statistical",
"description": "Returns the cumulative beta probability density function",
"intro": "2010"
},
{
"name": "CHISQ.INV.RT",
"url": "https://support.office.com/en-us/article/CHISQINVRT-function-435b5ed8-98d5-4da6-823f-293e2cbc94fe",
"category": "Statistical",
"description": "Returns the inverse of the one-tailed probability of the chi-squared distribution",
"intro": "2010"
},
{
"name": "CHISQ.TEST",
"url": "https://support.office.com/en-us/article/CHISQTEST-function-2e8a7861-b14a-4985-aa93-fb88de3f260f",
"category": "Statistical",
"description": "Returns the test for independence",
"intro": "2010"
},
{
"name": "CHOOSE",
"url": "https://support.office.com/en-us/article/CHOOSE-function-fc5c184f-cb62-4ec7-a46e-38653b98f5bc",
"category": "Lookup and reference",
"description": "Chooses a value from a list of values",
"intro": ""
},
{
"name": "CLEAN",
"url": "https://support.office.com/en-us/article/CLEAN-function-26f3d7c5-475f-4a9c-90e5-4b8ba987ba41",
"category": "Text",
"description": "Removes all nonprintable characters from text",
"intro": ""
},
{
"name": "CODE",
"url": "https://support.office.com/en-us/article/CODE-function-c32b692b-2ed0-4a04-bdd9-75640144b928",
"category": "Text",
"description": "Returns a numeric code for the first character in a text string",
"intro": ""
},
{
"name": "COLUMN",
"url": "https://support.office.com/en-us/article/COLUMN-function-44e8c754-711c-4df3-9da4-47a55042554b",
"category": "Lookup and reference",
"description": "Returns the column number of a reference",
"intro": ""
},
{
"name": "COLUMNS",
"url": "https://support.office.com/en-us/article/COLUMNS-function-4e8e7b4e-e603-43e8-b177-956088fa48ca",
"category": "Lookup and reference",
"description": "Returns the number of columns in a reference",
"intro": ""
},
{
"name": "COMBIN",
"url": "https://support.office.com/en-us/article/COMBIN-function-12a3f276-0a21-423a-8de6-06990aaf638a",
"category": "Math and trigonometry",
"description": "Returns the number of combinations for a given number of objects",
"intro": ""
},
{
"name": "COMBINA",
"url": "https://support.office.com/en-us/article/COMBINA-function-efb49eaa-4f4c-4cd2-8179-0ddfcf9d035d",
"category": "Math and trigonometry",
"description": "Returns the number of combinations with repetitions for a given number of items",
"intro": "2013"
},
{
"name": "COMPLEX",
"url": "https://support.office.com/en-us/article/COMPLEX-function-f0b8f3a9-51cc-4d6d-86fb-3a9362fa4128",
"category": "Engineering",
"description": "Converts real and imaginary coefficients into a complex number",
"intro": ""
},
{
"name": "CONCAT",
"url": "https://support.office.com/en-us/article/CONCAT-function-9b1a9a3f-94ff-41af-9736-694cbd6b4ca2",
"category": "Text",
"description": "Combines the text from multiple ranges and/or strings, but it doesn't provide the delimiter or IgnoreEmpty arguments.",
"intro": "2016"
},
{
"name": "CONCATENATE",
"url": "https://support.office.com/en-us/article/CONCATENATE-function-8f8ae884-2ca8-4f7a-b093-75d702bea31d",
"category": "Text",
"description": "Joins several text items into one text item",
"intro": ""
},
{
"name": "CONFIDENCE",
"url": "https://support.office.com/en-us/article/CONFIDENCE-function-75ccc007-f77c-4343-bc14-673642091ad6",
"category": "Compatibility",
"description": "Returns the confidence interval for a population mean",
"intro": ""
},
{
"name": "CONFIDENCE.NORM",
"url": "https://support.office.com/en-us/article/CONFIDENCENORM-function-7cec58a6-85bb-488d-91c3-63828d4fbfd4",
"category": "Statistical",
"description": "Returns the confidence interval for a population mean",
"intro": "2010"
},
{
"name": "CONFIDENCE.T",
"url": "https://support.office.com/en-us/article/CONFIDENCET-function-e8eca395-6c3a-4ba9-9003-79ccc61d3c53",
"category": "Statistical",
"description": "Returns the confidence interval for a population mean, using a Student's t distribution",
"intro": "2010"
},
{
"name": "CONVERT",
"url": "https://support.office.com/en-us/article/CONVERT-function-d785bef1-808e-4aac-bdcd-666c810f9af2",
"category": "Engineering",
"description": "Converts a number from one measurement system to another",
"intro": ""
},
{
"name": "CORREL",
"url": "https://support.office.com/en-us/article/CORREL-function-995dcef7-0c0a-4bed-a3fb-239d7b68ca92",
"category": "Statistical",
"description": "Returns the correlation coefficient between two data sets",
"intro": ""
},
{
"name": "COS",
"url": "https://support.office.com/en-us/article/COS-function-0fb808a5-95d6-4553-8148-22aebdce5f05",
"category": "Math and trigonometry",
"description": "Returns the cosine of a number",
"intro": ""
},
{
"name": "COSH",
"url": "https://support.office.com/en-us/article/COSH-function-e460d426-c471-43e8-9540-a57ff3b70555",
"category": "Math and trigonometry",
"description": "Returns the hyperbolic cosine of a number",
"intro": ""
},
{
"name": "COT",
"url": "https://support.office.com/en-us/article/COT-function-c446f34d-6fe4-40dc-84f8-cf59e5f5e31a",
"category": "Math and trigonometry",
"description": "Returns the hyperbolic cosine of a number",
"intro": "2013"
},
{
"name": "COTH",
"url": "https://support.office.com/en-us/article/COTH-function-2e0b4cb6-0ba0-403e-aed4-deaa71b49df5",
"category": "Math and trigonometry",
"description": "Returns the cotangent of an angle",
"intro": "2013"
},
{
"name": "COUNT",
"url": "https://support.office.com/en-us/article/COUNT-function-a59cd7fc-b623-4d93-87a4-d23bf411294c",
"category": "Statistical",
"description": "Counts how many numbers are in the list of arguments",
"intro": ""
},
{
"name": "COUNTA",
"url": "https://support.office.com/en-us/article/COUNTA-function-7dc98875-d5c1-46f1-9a82-53f3219e2509",
"category": "Statistical",
"description": "Counts how many values are in the list of arguments",
"intro": ""
},
{
"name": "COUNTBLANK",
"url": "https://support.office.com/en-us/article/COUNTBLANK-function-6a92d772-675c-4bee-b346-24af6bd3ac22",
"category": "Statistical",
"description": "Counts the number of blank cells within a range",
"intro": ""
},
{
"name": "COUNTIF",
"url": "https://support.office.com/en-us/article/COUNTIF-function-e0de10c6-f885-4e71-abb4-1f464816df34",
"category": "Statistical",
"description": "Counts the number of cells within a range that meet the given criteria",
"intro": ""
},
{
"name": "COUNTIFS",
"url": "https://support.office.com/en-us/article/COUNTIFS-function-dda3dc6e-f74e-4aee-88bc-aa8c2a866842",
"category": "Statistical",
"description": "Counts the number of cells within a range that meet multiple criteria",
"intro": ""
},
{
"name": "COUPDAYBS",
"url": "https://support.office.com/en-us/article/COUPDAYBS-function-eb9a8dfb-2fb2-4c61-8e5d-690b320cf872",
"category": "Financial",
"description": "Returns the number of days from the beginning of the coupon period to the settlement date",
"intro": ""
},
{
"name": "COUPDAYS",
"url": "https://support.office.com/en-us/article/COUPDAYS-function-cc64380b-315b-4e7b-950c-b30b0a76f671",
"category": "Financial",
"description": "Returns the number of days in the coupon period that contains the settlement date",
"intro": ""
},
{
"name": "COUPDAYSNC",
"url": "https://support.office.com/en-us/article/COUPDAYSNC-function-5ab3f0b2-029f-4a8b-bb65-47d525eea547",
"category": "Financial",
"description": "Returns the number of days from the settlement date to the next coupon date",
"intro": ""
},
{
"name": "COUPNCD",
"url": "https://support.office.com/en-us/article/COUPNCD-function-fd962fef-506b-4d9d-8590-16df5393691f",
"category": "Financial",
"description": "Returns the next coupon date after the settlement date",
"intro": ""
},
{
"name": "COUPNUM",
"url": "https://support.office.com/en-us/article/COUPNUM-function-a90af57b-de53-4969-9c99-dd6139db2522",
"category": "Financial",
"description": "Returns the number of coupons payable between the settlement date and maturity date",
"intro": ""
},
{
"name": "COUPPCD",
"url": "https://support.office.com/en-us/article/COUPPCD-function-2eb50473-6ee9-4052-a206-77a9a385d5b3",
"category": "Financial",
"description": "Returns the previous coupon date before the settlement date",
"intro": ""
},
{
"name": "COVAR",
"url": "https://support.office.com/en-us/article/COVAR-function-50479552-2c03-4daf-bd71-a5ab88b2db03",
"category": "Compatibility",
"description": "Returns covariance, the average of the products of paired deviations",
"intro": ""
},
{
"name": "COVARIANCE.P",
"url": "https://support.office.com/en-us/article/COVARIANCEP-function-6f0e1e6d-956d-4e4b-9943-cfef0bf9edfc",
"category": "Statistical",
"description": "Returns covariance, the average of the products of paired deviations",
"intro": "2010"
},
{
"name": "COVARIANCE.S",
"url": "https://support.office.com/en-us/article/COVARIANCES-function-0a539b74-7371-42aa-a18f-1f5320314977",
"category": "Statistical",
"description": "Returns the sample covariance, the average of the products deviations for each data point pair in two data sets",
"intro": "2010"
},
{
"name": "CRITBINOM",
"url": "https://support.office.com/en-us/article/CRITBINOM-function-eb6b871d-796b-4d21-b69b-e4350d5f407b",
"category": "Compatibility",
"description": "Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",
"intro": ""
},
{
"name": "CSC",
"url": "https://support.office.com/en-us/article/CSC-function-07379361-219a-4398-8675-07ddc4f135c1",
"category": "Math and trigonometry",
"description": "Returns the cosecant of an angle",
"intro": "2013"
},
{
"name": "CSCH",
"url": "https://support.office.com/en-us/article/CSCH-function-f58f2c22-eb75-4dd6-84f4-a503527f8eeb",
"category": "Math and trigonometry",
"description": "Returns the hyperbolic cosecant of an angle",
"intro": "2013"
},
{
"name": "CUBEKPIMEMBER",
"url": "https://support.office.com/en-us/article/CUBEKPIMEMBER-function-744608bf-2c62-42cd-b67a-a56109f4b03b",
"category": "Cube",
"description": "Returns a key performance indicator (KPI) name, property, and measure, and displays the name and property in the cell. A KPI is a quantifiable measurement, such as monthly gross profit or quarterly employee turnover, used to monitor an organization's performance.",
"intro": ""
},
{
"name": "CUBEMEMBER",
"url": "https://support.office.com/en-us/article/CUBEMEMBER-function-0f6a15b9-2c18-4819-ae89-e1b5c8b398ad",
"category": "Cube",
"description": "Returns a member or tuple in a cube hierarchy. Use to validate that the member or tuple exists in the cube.",
"intro": ""
},
{
"name": "CUBEMEMBERPROPERTY",
"url": "https://support.office.com/en-us/article/CUBEMEMBERPROPERTY-function-001e57d6-b35a-49e5-abcd-05ff599e8951",
"category": "Cube",
"description": "Returns the value of a member property in the cube. Use to validate that a member name exists within the cube and to return the specified property for this member.",
"intro": ""
},
{
"name": "CUBERANKEDMEMBER",
"url": "https://support.office.com/en-us/article/CUBERANKEDMEMBER-function-07efecde-e669-4075-b4bf-6b40df2dc4b3",
"category": "Cube",
"description": "Returns the nth, or ranked, member in a set. Use to return one or more elements in a set, such as the top sales performer or top 10 students.",
"intro": ""
},
{
"name": "CUBESET",
"url": "https://support.office.com/en-us/article/CUBESET-function-5b2146bd-62d6-4d04-9d8f-670e993ee1d9",
"category": "Cube",
"description": "Defines a calculated set of members or tuples by sending a set expression to the cube on the server, which creates the set, and then returns that set to Microsoft Office Excel.",
"intro": ""
},
{
"name": "CUBESETCOUNT",
"url": "https://support.office.com/en-us/article/CUBESETCOUNT-function-c4c2a438-c1ff-4061-80fe-982f2d705286",
"category": "Cube",
"description": "Returns the number of items in a set.",
"intro": ""
},
{
"name": "CUBEVALUE",
"url": "https://support.office.com/en-us/article/CUBEVALUE-function-8733da24-26d1-4e34-9b3a-84a8f00dcbe0",
"category": "Cube",
"description": "Returns an aggregated value from a cube.",
"intro": ""
},
{
"name": "CUMIPMT",
"url": "https://support.office.com/en-us/article/CUMIPMT-function-61067bb0-9016-427d-b95b-1a752af0e606",
"category": "Financial",
"description": "Returns the cumulative interest paid between two periods",
"intro": ""
},
{
"name": "CUMPRINC",
"url": "https://support.office.com/en-us/article/CUMPRINC-function-94a4516d-bd65-41a1-bc16-053a6af4c04d",
"category": "Financial",
"description": "Returns the cumulative principal paid on a loan between two periods",
"intro": ""
},
{
"name": "DATE",
"url": "https://support.office.com/en-us/article/DATE-function-e36c0c8c-4104-49da-ab83-82328b832349",
"category": "Date and time",
"description": "Returns the serial number of a particular date",
"intro": ""
},
{
"name": "DATEDIF",
"url": "https://support.office.com/en-us/article/DATEDIF-function-25dba1a4-2812-480b-84dd-8b32a451b35c",
"category": "Date and time",
"description": "Calculates the number of days, months, or years between two dates. This function is useful in formulas where you need to calculate an age.",
"intro": ""
},
{
"name": "DATEVALUE",
"url": "https://support.office.com/en-us/article/DATEVALUE-function-df8b07d4-7761-4a93-bc33-b7471bbff252",
"category": "Date and time",
"description": "Converts a date in the form of text to a serial number",
"intro": ""
},
{
"name": "DAVERAGE",
"url": "https://support.office.com/en-us/article/DAVERAGE-function-a6a2d5ac-4b4b-48cd-a1d8-7b37834e5aee",
"category": "Database",
"description": "Returns the average of selected database entries",
"intro": ""
},
{
"name": "DAY",
"url": "https://support.office.com/en-us/article/DAY-function-8a7d1cbb-6c7d-4ba1-8aea-25c134d03101",
"category": "Date and time",
"description": "Converts a serial number to a day of the month",
"intro": ""
},
{
"name": "DAYS",
"url": "https://support.office.com/en-us/article/DAYS-function-57740535-d549-4395-8728-0f07bff0b9df",
"category": "Date and time",
"description": "Returns the number of days between two dates",
"intro": "2013"
},
{
"name": "DAYS360",
"url": "https://support.office.com/en-us/article/DAYS360-function-b9a509fd-49ef-407e-94df-0cbda5718c2a",
"category": "Date and time",
"description": "Calculates the number of days between two dates based on a 360-day year",
"intro": ""
},
{
"name": "DB",
"url": "https://support.office.com/en-us/article/DB-function-354e7d28-5f93-4ff1-8a52-eb4ee549d9d7",
"category": "Financial",
"description": "Returns the depreciation of an asset for a specified period by using the fixed-declining balance method",
"intro": ""
},
{
"name": "DBCS",
"url": "https://support.office.com/en-us/article/DBCS-function-a4025e73-63d2-4958-9423-21a24794c9e5",
"category": "Text",
"description": "Changes half-width (single-byte) English letters or katakana within a character string to full-width (double-byte) characters",
"intro": "2013"
},
{
"name": "DCOUNT",
"url": "https://support.office.com/en-us/article/DCOUNT-function-c1fc7b93-fb0d-4d8d-97db-8d5f076eaeb1",
"category": "Database",
"description": "Counts the cells that contain numbers in a database",
"intro": ""
},
{
"name": "DCOUNTA",
"url": "https://support.office.com/en-us/article/DCOUNTA-function-00232a6d-5a66-4a01-a25b-c1653fda1244",
"category": "Database",
"description": "Counts nonblank cells in a database",
"intro": ""
},
{
"name": "DDB",
"url": "https://support.office.com/en-us/article/DDB-function-519a7a37-8772-4c96-85c0-ed2c209717a5",
"category": "Financial",
"description": "Returns the depreciation of an asset for a specified period by using the double-declining balance method or some other method that you specify",
"intro": ""
},
{
"name": "DEC2BIN",
"url": "https://support.office.com/en-us/article/DEC2BIN-function-0f63dd0e-5d1a-42d8-b511-5bf5c6d43838",
"category": "Engineering",
"description": "Converts a decimal number to binary",
"intro": ""
},
{
"name": "DEC2HEX",
"url": "https://support.office.com/en-us/article/DEC2HEX-function-6344ee8b-b6b5-4c6a-a672-f64666704619",
"category": "Engineering",
"description": "Converts a decimal number to hexadecimal",
"intro": ""
},
{
"name": "DEC2OCT",
"url": "https://support.office.com/en-us/article/DEC2OCT-function-c9d835ca-20b7-40c4-8a9e-d3be351ce00f",
"category": "Engineering",
"description": "Converts a decimal number to octal",
"intro": ""
},
{
"name": "DECIMAL",
"url": "https://support.office.com/en-us/article/DECIMAL-function-ee554665-6176-46ef-82de-0a283658da2e",
"category": "Math and trigonometry",
"description": "Converts a text representation of a number in a given base into a decimal number",
"intro": "2013"
},
{
"name": "DEGREES",
"url": "https://support.office.com/en-us/article/DEGREES-function-4d6ec4db-e694-4b94-ace0-1cc3f61f9ba1",
"category": "Math and trigonometry",
"description": "Converts radians to degrees",
"intro": ""
},
{
"name": "DELTA",
"url": "https://support.office.com/en-us/article/DELTA-function-2f763672-c959-4e07-ac33-fe03220ba432",
"category": "Engineering",
"description": "Tests whether two values are equal",
"intro": ""
},
{
"name": "DEVSQ",
"url": "https://support.office.com/en-us/article/DEVSQ-function-8b739616-8376-4df5-8bd0-cfe0a6caf444",
"category": "Statistical",
"description": "Returns the sum of squares of deviations",
"intro": ""
},
{
"name": "DGET",
"url": "https://support.office.com/en-us/article/DGET-function-455568bf-4eef-45f7-90f0-ec250d00892e",
"category": "Database",
"description": "Extracts from a database a single record that matches the specified criteria",
"intro": ""
},
{
"name": "DISC",
"url": "https://support.office.com/en-us/article/DISC-function-71fce9f3-3f05-4acf-a5a3-eac6ef4daa53",
"category": "Financial",
"description": "Returns the discount rate for a security",
"intro": ""
},
{
"name": "DMAX",
"url": "https://support.office.com/en-us/article/DMAX-function-f4e8209d-8958-4c3d-a1ee-6351665d41c2",
"category": "Database",
"description": "Returns the maximum value from selected database entries",
"intro": ""
},
{
"name": "DMIN",
"url": "https://support.office.com/en-us/article/DMIN-function-4ae6f1d9-1f26-40f1-a783-6dc3680192a3",
"category": "Database",
"description": "Returns the minimum value from selected database entries",
"intro": ""
},
{
"name": "DOLLAR",
"url": "https://support.office.com/en-us/article/DOLLAR-function-a6cd05d9-9740-4ad3-a469-8109d18ff611",
"category": "Text",
"description": "Converts a number to text, using the $ (dollar) currency format",
"intro": ""
},
{
"name": "DOLLARDE",
"url": "https://support.office.com/en-us/article/DOLLARDE-function-db85aab0-1677-428a-9dfd-a38476693427",
"category": "Financial",
"description": "Converts a dollar price, expressed as a fraction, into a dollar price, expressed as a decimal number",
"intro": ""
},
{
"name": "DOLLARFR",
"url": "https://support.office.com/en-us/article/DOLLARFR-function-0835d163-3023-4a33-9824-3042c5d4f495",
"category": "Financial",
"description": "Converts a dollar price, expressed as a decimal number, into a dollar price, expressed as a fraction",
"intro": ""
},
{
"name": "DPRODUCT",
"url": "https://support.office.com/en-us/article/DPRODUCT-function-4f96b13e-d49c-47a7-b769-22f6d017cb31",
"category": "Database",
"description": "Multiplies the values in a particular field of records that match the criteria in a database",
"intro": ""
},
{
"name": "DSTDEV",
"url": "https://support.office.com/en-us/article/DSTDEV-function-026b8c73-616d-4b5e-b072-241871c4ab96",
"category": "Database",
"description": "Estimates the standard deviation based on a sample of selected database entries",
"intro": ""
},
{
"name": "DSTDEVP",
"url": "https://support.office.com/en-us/article/DSTDEVP-function-04b78995-da03-4813-bbd9-d74fd0f5d94b",
"category": "Database",
"description": "Calculates the standard deviation based on the entire population of selected database entries",
"intro": ""
},
{
"name": "DSUM",
"url": "https://support.office.com/en-us/article/DSUM-function-53181285-0c4b-4f5a-aaa3-529a322be41b",
"category": "Database",
"description": "Adds the numbers in the field column of records in the database that match the criteria",
"intro": ""
},
{
"name": "DURATION",
"url": "https://support.office.com/en-us/article/DURATION-function-b254ea57-eadc-4602-a86a-c8e369334038",
"category": "Financial",
"description": "Returns the annual duration of a security with periodic interest payments",
"intro": ""
},
{
"name": "DVAR",
"url": "https://support.office.com/en-us/article/DVAR-function-d6747ca9-99c7-48bb-996e-9d7af00f3ed1",
"category": "Database",
"description": "Estimates variance based on a sample from selected database entries",
"intro": ""
},
{
"name": "DVARP",
"url": "https://support.office.com/en-us/article/DVARP-function-eb0ba387-9cb7-45c8-81e9-0394912502fc",
"category": "Database",
"description": "Calculates variance based on the entire population of selected database entries",
"intro": ""
},
{
"name": "EDATE",
"url": "https://support.office.com/en-us/article/EDATE-function-3c920eb2-6e66-44e7-a1f5-753ae47ee4f5",
"category": "Date and time",
"description": "Returns the serial number of the date that is the indicated number of months before or after the start date",
"intro": ""
},
{
"name": "EFFECT",
"url": "https://support.office.com/en-us/article/EFFECT-function-910d4e4c-79e2-4009-95e6-507e04f11bc4",
"category": "Financial",
"description": "Returns the effective annual interest rate",
"intro": ""
},
{
"name": "ENCODEURL",
"url": "https://support.office.com/en-us/article/ENCODEURL-function-07c7fb90-7c60-4bff-8687-fac50fe33d0e",
"category": "Web",
"description": "Returns a URL-encoded string",
"intro": "2013"
},
{
"name": "EOMONTH",
"url": "https://support.office.com/en-us/article/EOMONTH-function-7314ffa1-2bc9-4005-9d66-f49db127d628",
"category": "Date and time",