@rowsncolumns/functions 14.0.29 → 14.0.31
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.
|
@@ -247,6 +247,47 @@ export const functionDescriptions = [
|
|
|
247
247
|
},
|
|
248
248
|
],
|
|
249
249
|
},
|
|
250
|
+
{
|
|
251
|
+
datatype: "Financial",
|
|
252
|
+
title: "AMORDEGRC",
|
|
253
|
+
syntax: "AMORDEGRC(cost, purchase_date, first_period_end, salvage, period, rate, [basis])",
|
|
254
|
+
description: "Returns the depreciation for each accounting period using the French declining-balance method with a life-dependent coefficient; each period's depreciation is rounded to whole currency units.",
|
|
255
|
+
example: "AMORDEGRC(2400, DATE(2008,8,19), DATE(2008,12,31), 300, 1, 0.15, 1)",
|
|
256
|
+
usage: [
|
|
257
|
+
"AMORDEGRC(2400, DATE(2008,8,19), DATE(2008,12,31), 300, 1, 0.15, 1)",
|
|
258
|
+
"AMORDEGRC(A1, A2, A3, A4, 1, 15%)",
|
|
259
|
+
],
|
|
260
|
+
parameters: [
|
|
261
|
+
{
|
|
262
|
+
title: "cost",
|
|
263
|
+
description: "The cost of the asset.",
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
title: "purchase_date",
|
|
267
|
+
description: "The date the asset was purchased.",
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
title: "first_period_end",
|
|
271
|
+
description: "The date of the end of the first period.",
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
title: "salvage",
|
|
275
|
+
description: "The salvage value at the end of the life of the asset.",
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
title: "period",
|
|
279
|
+
description: "The period for which to calculate the depreciation.",
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
title: "rate",
|
|
283
|
+
description: "The rate of depreciation.",
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
title: "basis",
|
|
287
|
+
description: "[ OPTIONAL - 0 by default ] - The day count basis: 0 US (NASD) 30/360, 1 Actual/Actual, 3 Actual/365, 4 European 30/360 (2 is not allowed).",
|
|
288
|
+
},
|
|
289
|
+
],
|
|
290
|
+
},
|
|
250
291
|
{
|
|
251
292
|
datatype: "Financial",
|
|
252
293
|
title: "AMORLINC",
|
|
@@ -5530,6 +5571,194 @@ export const functionDescriptions = [
|
|
|
5530
5571
|
},
|
|
5531
5572
|
],
|
|
5532
5573
|
},
|
|
5574
|
+
{
|
|
5575
|
+
datatype: "Financial",
|
|
5576
|
+
title: "ODDFPRICE",
|
|
5577
|
+
syntax: "ODDFPRICE(settlement, maturity, issue, first_coupon, rate, yield, redemption, frequency, [day_count_convention])",
|
|
5578
|
+
description: "Calculates the price per 100 face value of a security paying periodic interest that has an odd (short or long) first period.",
|
|
5579
|
+
example: "ODDFPRICE(DATE(2008,11,11), DATE(2021,3,1), DATE(2008,10,15), DATE(2009,3,1), 0.0785, 0.0625, 100, 2, 1)",
|
|
5580
|
+
usage: [
|
|
5581
|
+
"ODDFPRICE(DATE(2008,11,11), DATE(2021,3,1), DATE(2008,10,15), DATE(2009,3,1), 0.0785, 0.0625, 100, 2, 1)",
|
|
5582
|
+
"ODDFPRICE(A2, B2, C2, D2, E2, F2, 100, 2)",
|
|
5583
|
+
],
|
|
5584
|
+
parameters: [
|
|
5585
|
+
{
|
|
5586
|
+
title: "settlement",
|
|
5587
|
+
description: "The settlement date of the security, the date after issuance when the security is delivered to the buyer.",
|
|
5588
|
+
},
|
|
5589
|
+
{
|
|
5590
|
+
title: "maturity",
|
|
5591
|
+
description: "The maturity or end date of the security, when it can be redeemed at face or par value.",
|
|
5592
|
+
},
|
|
5593
|
+
{
|
|
5594
|
+
title: "issue",
|
|
5595
|
+
description: "The issue date of the security.",
|
|
5596
|
+
},
|
|
5597
|
+
{
|
|
5598
|
+
title: "first_coupon",
|
|
5599
|
+
description: "The first coupon date of the security.",
|
|
5600
|
+
},
|
|
5601
|
+
{
|
|
5602
|
+
title: "rate",
|
|
5603
|
+
description: "The annualized rate of interest.",
|
|
5604
|
+
},
|
|
5605
|
+
{
|
|
5606
|
+
title: "yield",
|
|
5607
|
+
description: "The expected annual yield of the security.",
|
|
5608
|
+
},
|
|
5609
|
+
{
|
|
5610
|
+
title: "redemption",
|
|
5611
|
+
description: "The redemption value per 100 face value.",
|
|
5612
|
+
},
|
|
5613
|
+
{
|
|
5614
|
+
title: "frequency",
|
|
5615
|
+
description: "The number of interest or coupon payments per year (1, 2, or 4).",
|
|
5616
|
+
},
|
|
5617
|
+
{
|
|
5618
|
+
title: "day_count_convention",
|
|
5619
|
+
description: "[ OPTIONAL - 0 by default ] - An indicator of what day count method to use: 0 US (NASD) 30/360, 1 Actual/Actual, 2 Actual/360, 3 Actual/365, 4 European 30/360.",
|
|
5620
|
+
},
|
|
5621
|
+
],
|
|
5622
|
+
},
|
|
5623
|
+
{
|
|
5624
|
+
datatype: "Financial",
|
|
5625
|
+
title: "ODDFYIELD",
|
|
5626
|
+
syntax: "ODDFYIELD(settlement, maturity, issue, first_coupon, rate, price, redemption, frequency, [day_count_convention])",
|
|
5627
|
+
description: "Calculates the yield of a security paying periodic interest that has an odd (short or long) first period.",
|
|
5628
|
+
example: "ODDFYIELD(DATE(2008,11,11), DATE(2021,3,1), DATE(2008,10,15), DATE(2009,3,1), 0.0575, 84.5, 100, 2, 0)",
|
|
5629
|
+
usage: [
|
|
5630
|
+
"ODDFYIELD(DATE(2008,11,11), DATE(2021,3,1), DATE(2008,10,15), DATE(2009,3,1), 0.0575, 84.5, 100, 2, 0)",
|
|
5631
|
+
"ODDFYIELD(A2, B2, C2, D2, E2, F2, 100, 2)",
|
|
5632
|
+
],
|
|
5633
|
+
parameters: [
|
|
5634
|
+
{
|
|
5635
|
+
title: "settlement",
|
|
5636
|
+
description: "The settlement date of the security, the date after issuance when the security is delivered to the buyer.",
|
|
5637
|
+
},
|
|
5638
|
+
{
|
|
5639
|
+
title: "maturity",
|
|
5640
|
+
description: "The maturity or end date of the security, when it can be redeemed at face or par value.",
|
|
5641
|
+
},
|
|
5642
|
+
{
|
|
5643
|
+
title: "issue",
|
|
5644
|
+
description: "The issue date of the security.",
|
|
5645
|
+
},
|
|
5646
|
+
{
|
|
5647
|
+
title: "first_coupon",
|
|
5648
|
+
description: "The first coupon date of the security.",
|
|
5649
|
+
},
|
|
5650
|
+
{
|
|
5651
|
+
title: "rate",
|
|
5652
|
+
description: "The annualized rate of interest.",
|
|
5653
|
+
},
|
|
5654
|
+
{
|
|
5655
|
+
title: "price",
|
|
5656
|
+
description: "The price of the security per 100 face value.",
|
|
5657
|
+
},
|
|
5658
|
+
{
|
|
5659
|
+
title: "redemption",
|
|
5660
|
+
description: "The redemption value per 100 face value.",
|
|
5661
|
+
},
|
|
5662
|
+
{
|
|
5663
|
+
title: "frequency",
|
|
5664
|
+
description: "The number of interest or coupon payments per year (1, 2, or 4).",
|
|
5665
|
+
},
|
|
5666
|
+
{
|
|
5667
|
+
title: "day_count_convention",
|
|
5668
|
+
description: "[ OPTIONAL - 0 by default ] - An indicator of what day count method to use: 0 US (NASD) 30/360, 1 Actual/Actual, 2 Actual/360, 3 Actual/365, 4 European 30/360.",
|
|
5669
|
+
},
|
|
5670
|
+
],
|
|
5671
|
+
},
|
|
5672
|
+
{
|
|
5673
|
+
datatype: "Financial",
|
|
5674
|
+
title: "ODDLPRICE",
|
|
5675
|
+
syntax: "ODDLPRICE(settlement, maturity, last_interest, rate, yield, redemption, frequency, [day_count_convention])",
|
|
5676
|
+
description: "Calculates the price per 100 face value of a security paying periodic interest that has an odd (short or long) last period.",
|
|
5677
|
+
example: "ODDLPRICE(DATE(2008,2,7), DATE(2008,6,15), DATE(2007,10,15), 0.0375, 0.0405, 100, 2, 0)",
|
|
5678
|
+
usage: [
|
|
5679
|
+
"ODDLPRICE(DATE(2008,2,7), DATE(2008,6,15), DATE(2007,10,15), 0.0375, 0.0405, 100, 2, 0)",
|
|
5680
|
+
"ODDLPRICE(A2, B2, C2, D2, E2, 100, 2)",
|
|
5681
|
+
],
|
|
5682
|
+
parameters: [
|
|
5683
|
+
{
|
|
5684
|
+
title: "settlement",
|
|
5685
|
+
description: "The settlement date of the security, the date after issuance when the security is delivered to the buyer.",
|
|
5686
|
+
},
|
|
5687
|
+
{
|
|
5688
|
+
title: "maturity",
|
|
5689
|
+
description: "The maturity or end date of the security, when it can be redeemed at face or par value.",
|
|
5690
|
+
},
|
|
5691
|
+
{
|
|
5692
|
+
title: "last_interest",
|
|
5693
|
+
description: "The last coupon date of the security before maturity.",
|
|
5694
|
+
},
|
|
5695
|
+
{
|
|
5696
|
+
title: "rate",
|
|
5697
|
+
description: "The annualized rate of interest.",
|
|
5698
|
+
},
|
|
5699
|
+
{
|
|
5700
|
+
title: "yield",
|
|
5701
|
+
description: "The expected annual yield of the security.",
|
|
5702
|
+
},
|
|
5703
|
+
{
|
|
5704
|
+
title: "redemption",
|
|
5705
|
+
description: "The redemption value per 100 face value.",
|
|
5706
|
+
},
|
|
5707
|
+
{
|
|
5708
|
+
title: "frequency",
|
|
5709
|
+
description: "The number of interest or coupon payments per year (1, 2, or 4).",
|
|
5710
|
+
},
|
|
5711
|
+
{
|
|
5712
|
+
title: "day_count_convention",
|
|
5713
|
+
description: "[ OPTIONAL - 0 by default ] - An indicator of what day count method to use: 0 US (NASD) 30/360, 1 Actual/Actual, 2 Actual/360, 3 Actual/365, 4 European 30/360.",
|
|
5714
|
+
},
|
|
5715
|
+
],
|
|
5716
|
+
},
|
|
5717
|
+
{
|
|
5718
|
+
datatype: "Financial",
|
|
5719
|
+
title: "ODDLYIELD",
|
|
5720
|
+
syntax: "ODDLYIELD(settlement, maturity, last_interest, rate, price, redemption, frequency, [day_count_convention])",
|
|
5721
|
+
description: "Calculates the yield of a security paying periodic interest that has an odd (short or long) last period.",
|
|
5722
|
+
example: "ODDLYIELD(DATE(2008,4,20), DATE(2008,6,15), DATE(2007,12,24), 0.0375, 99.875, 100, 2, 0)",
|
|
5723
|
+
usage: [
|
|
5724
|
+
"ODDLYIELD(DATE(2008,4,20), DATE(2008,6,15), DATE(2007,12,24), 0.0375, 99.875, 100, 2, 0)",
|
|
5725
|
+
"ODDLYIELD(A2, B2, C2, D2, E2, 100, 2)",
|
|
5726
|
+
],
|
|
5727
|
+
parameters: [
|
|
5728
|
+
{
|
|
5729
|
+
title: "settlement",
|
|
5730
|
+
description: "The settlement date of the security, the date after issuance when the security is delivered to the buyer.",
|
|
5731
|
+
},
|
|
5732
|
+
{
|
|
5733
|
+
title: "maturity",
|
|
5734
|
+
description: "The maturity or end date of the security, when it can be redeemed at face or par value.",
|
|
5735
|
+
},
|
|
5736
|
+
{
|
|
5737
|
+
title: "last_interest",
|
|
5738
|
+
description: "The last coupon date of the security before maturity.",
|
|
5739
|
+
},
|
|
5740
|
+
{
|
|
5741
|
+
title: "rate",
|
|
5742
|
+
description: "The annualized rate of interest.",
|
|
5743
|
+
},
|
|
5744
|
+
{
|
|
5745
|
+
title: "price",
|
|
5746
|
+
description: "The price of the security per 100 face value.",
|
|
5747
|
+
},
|
|
5748
|
+
{
|
|
5749
|
+
title: "redemption",
|
|
5750
|
+
description: "The redemption value per 100 face value.",
|
|
5751
|
+
},
|
|
5752
|
+
{
|
|
5753
|
+
title: "frequency",
|
|
5754
|
+
description: "The number of interest or coupon payments per year (1, 2, or 4).",
|
|
5755
|
+
},
|
|
5756
|
+
{
|
|
5757
|
+
title: "day_count_convention",
|
|
5758
|
+
description: "[ OPTIONAL - 0 by default ] - An indicator of what day count method to use: 0 US (NASD) 30/360, 1 Actual/Actual, 2 Actual/360, 3 Actual/365, 4 European 30/360.",
|
|
5759
|
+
},
|
|
5760
|
+
],
|
|
5761
|
+
},
|
|
5533
5762
|
{
|
|
5534
5763
|
datatype: "Lookup",
|
|
5535
5764
|
title: "OFFSET",
|
|
@@ -6737,34 +6966,127 @@ export const functionDescriptions = [
|
|
|
6737
6966
|
{
|
|
6738
6967
|
datatype: "Filter",
|
|
6739
6968
|
title: "SORT",
|
|
6740
|
-
syntax: "SORT(
|
|
6741
|
-
description: "Sorts the rows of
|
|
6742
|
-
example: "SORT(A2:B26, 1,
|
|
6969
|
+
syntax: "SORT(array, [sort_index], [sort_order], [by_col])",
|
|
6970
|
+
description: "Sorts the rows (or columns) of an array or range by one or more keys. sort_order is 1 for ascending or -1 for descending; sort_index and sort_order may be arrays to sort by several keys.",
|
|
6971
|
+
example: "SORT(A2:B26, 1, -1)",
|
|
6743
6972
|
usage: [
|
|
6744
|
-
"SORT(A2:B26, 1,
|
|
6745
|
-
"SORT({1, 2; 3, 4; 5, 6}, 2,
|
|
6746
|
-
"SORT(A2:
|
|
6973
|
+
"SORT(A2:B26, 1, -1)",
|
|
6974
|
+
"SORT({1, 2; 3, 4; 5, 6}, 2, 1)",
|
|
6975
|
+
"SORT(A2:C26, {3, 1}, {1, -1})",
|
|
6976
|
+
"SORT(A1:F3, 1, 1, TRUE)",
|
|
6747
6977
|
],
|
|
6748
6978
|
parameters: [
|
|
6749
6979
|
{
|
|
6750
|
-
title: "
|
|
6751
|
-
description: "The
|
|
6980
|
+
title: "array",
|
|
6981
|
+
description: "The range or array to sort.",
|
|
6752
6982
|
},
|
|
6753
6983
|
{
|
|
6754
|
-
title: "
|
|
6755
|
-
description: "
|
|
6984
|
+
title: "sort_index [OPTIONAL]",
|
|
6985
|
+
description: "1-based index of the column (or row when by_col is TRUE) to sort by; an array sorts by several keys in turn. Defaults to 1.",
|
|
6756
6986
|
},
|
|
6757
6987
|
{
|
|
6758
|
-
title: "
|
|
6759
|
-
description: "
|
|
6988
|
+
title: "sort_order [OPTIONAL]",
|
|
6989
|
+
description: "1 for ascending (default) or -1 for descending; an array gives one order per sort_index.",
|
|
6990
|
+
},
|
|
6991
|
+
{
|
|
6992
|
+
title: "by_col [OPTIONAL]",
|
|
6993
|
+
description: "TRUE to sort columns instead of rows. Defaults to FALSE.",
|
|
6994
|
+
},
|
|
6995
|
+
],
|
|
6996
|
+
},
|
|
6997
|
+
{
|
|
6998
|
+
datatype: "Filter",
|
|
6999
|
+
title: "SORTBY",
|
|
7000
|
+
syntax: "SORTBY(array, by_array1, [sort_order1], [by_array2, sort_order2], ...)",
|
|
7001
|
+
description: "Sorts the rows of an array by the values in one or more other arrays of the same height.",
|
|
7002
|
+
example: "SORTBY(A2:A26, B2:B26, -1)",
|
|
7003
|
+
usage: ["SORTBY(A2:A26, B2:B26, -1)", "SORTBY(A2:C26, C2:C26, 1, A2:A26, -1)"],
|
|
7004
|
+
parameters: [
|
|
7005
|
+
{
|
|
7006
|
+
title: "array",
|
|
7007
|
+
description: "The range or array to sort.",
|
|
7008
|
+
},
|
|
7009
|
+
{
|
|
7010
|
+
title: "by_array1",
|
|
7011
|
+
description: "The range or array to sort on.",
|
|
7012
|
+
},
|
|
7013
|
+
{
|
|
7014
|
+
title: "sort_order1 [OPTIONAL]",
|
|
7015
|
+
description: "1 for ascending (default) or -1 for descending.",
|
|
7016
|
+
},
|
|
7017
|
+
{
|
|
7018
|
+
title: "by_array2, sort_order2, ... [OPTIONAL]",
|
|
7019
|
+
description: "Additional key arrays and orders applied to break ties.",
|
|
7020
|
+
},
|
|
7021
|
+
],
|
|
7022
|
+
},
|
|
7023
|
+
{
|
|
7024
|
+
datatype: "Filter",
|
|
7025
|
+
title: "TAKE",
|
|
7026
|
+
syntax: "TAKE(array, rows, [columns])",
|
|
7027
|
+
description: "Returns the first or last rows and columns of an array; negative counts take from the end.",
|
|
7028
|
+
example: "TAKE(A1:C5, 2)",
|
|
7029
|
+
usage: ["TAKE(A1:C5, 2)", "TAKE(A1:C5, -2)", "TAKE(A1:C5, 2, -1)"],
|
|
7030
|
+
parameters: [
|
|
7031
|
+
{
|
|
7032
|
+
title: "array",
|
|
7033
|
+
description: "The range or array to take rows or columns from.",
|
|
7034
|
+
},
|
|
7035
|
+
{
|
|
7036
|
+
title: "rows",
|
|
7037
|
+
description: "Number of rows to take; negative takes from the end.",
|
|
7038
|
+
},
|
|
7039
|
+
{
|
|
7040
|
+
title: "columns [OPTIONAL]",
|
|
7041
|
+
description: "Number of columns to take; negative takes from the end.",
|
|
7042
|
+
},
|
|
7043
|
+
],
|
|
7044
|
+
},
|
|
7045
|
+
{
|
|
7046
|
+
datatype: "Filter",
|
|
7047
|
+
title: "DROP",
|
|
7048
|
+
syntax: "DROP(array, rows, [columns])",
|
|
7049
|
+
description: "Removes rows or columns from the start or end of an array; negative counts drop from the end.",
|
|
7050
|
+
example: "DROP(A1:C5, 1)",
|
|
7051
|
+
usage: ["DROP(A1:C5, 1)", "DROP(A1:C5, -2)", "DROP(A1:C5, , 1)"],
|
|
7052
|
+
parameters: [
|
|
7053
|
+
{
|
|
7054
|
+
title: "array",
|
|
7055
|
+
description: "The range or array to drop rows or columns from.",
|
|
7056
|
+
},
|
|
7057
|
+
{
|
|
7058
|
+
title: "rows",
|
|
7059
|
+
description: "Number of rows to drop; negative drops from the end.",
|
|
7060
|
+
},
|
|
7061
|
+
{
|
|
7062
|
+
title: "columns [OPTIONAL]",
|
|
7063
|
+
description: "Number of columns to drop; negative drops from the end.",
|
|
7064
|
+
},
|
|
7065
|
+
],
|
|
7066
|
+
},
|
|
7067
|
+
{
|
|
7068
|
+
datatype: "Filter",
|
|
7069
|
+
title: "EXPAND",
|
|
7070
|
+
syntax: "EXPAND(array, rows, [columns], [pad_with])",
|
|
7071
|
+
description: "Expands an array to the given number of rows and columns, filling the new cells with pad_with (#N/A by default).",
|
|
7072
|
+
example: "EXPAND(A1:B2, 3, 3, 0)",
|
|
7073
|
+
usage: ["EXPAND(A1:B2, 3, 3, 0)", "EXPAND(A1:B2, 3)"],
|
|
7074
|
+
parameters: [
|
|
7075
|
+
{
|
|
7076
|
+
title: "array",
|
|
7077
|
+
description: "The range or array to expand.",
|
|
7078
|
+
},
|
|
7079
|
+
{
|
|
7080
|
+
title: "rows",
|
|
7081
|
+
description: "Number of rows in the result; blank keeps the current height.",
|
|
6760
7082
|
},
|
|
6761
7083
|
{
|
|
6762
|
-
title: "
|
|
6763
|
-
description: "
|
|
7084
|
+
title: "columns [OPTIONAL]",
|
|
7085
|
+
description: "Number of columns in the result; blank keeps the current width.",
|
|
6764
7086
|
},
|
|
6765
7087
|
{
|
|
6766
|
-
title: "[
|
|
6767
|
-
description: "
|
|
7088
|
+
title: "pad_with [OPTIONAL]",
|
|
7089
|
+
description: "Value for the new cells. Defaults to #N/A.",
|
|
6768
7090
|
},
|
|
6769
7091
|
],
|
|
6770
7092
|
},
|
|
@@ -7567,18 +7889,34 @@ export const functionDescriptions = [
|
|
|
7567
7889
|
{
|
|
7568
7890
|
datatype: "Text",
|
|
7569
7891
|
title: "TEXTSPLIT",
|
|
7570
|
-
syntax: "TEXTSPLIT(
|
|
7571
|
-
description: "Splits
|
|
7572
|
-
example: "TEXTSPLIT(“
|
|
7573
|
-
usage: ["TEXTSPLIT(“hello, world”, ”,”)"],
|
|
7892
|
+
syntax: "TEXTSPLIT(text, col_delimiter, [row_delimiter], [ignore_empty], [match_mode], [pad_with])",
|
|
7893
|
+
description: "Splits text into columns on col_delimiter and into rows on row_delimiter; ragged rows are padded with pad_with (#N/A by default).",
|
|
7894
|
+
example: "TEXTSPLIT(“a,b;c,d”, ”,”, ”;”)",
|
|
7895
|
+
usage: ["TEXTSPLIT(“hello, world”, ”,”)", "TEXTSPLIT(“a,b;c,d”, ”,”, ”;”)"],
|
|
7574
7896
|
parameters: [
|
|
7575
7897
|
{
|
|
7576
|
-
title: "
|
|
7577
|
-
description: "
|
|
7898
|
+
title: "text",
|
|
7899
|
+
description: "The text to split.",
|
|
7578
7900
|
},
|
|
7579
7901
|
{
|
|
7580
|
-
title: "
|
|
7581
|
-
description: "
|
|
7902
|
+
title: "col_delimiter",
|
|
7903
|
+
description: "Text (or array of texts) that marks where to split into columns.",
|
|
7904
|
+
},
|
|
7905
|
+
{
|
|
7906
|
+
title: "row_delimiter [OPTIONAL]",
|
|
7907
|
+
description: "Text (or array of texts) that marks where to split into rows.",
|
|
7908
|
+
},
|
|
7909
|
+
{
|
|
7910
|
+
title: "ignore_empty [OPTIONAL]",
|
|
7911
|
+
description: "TRUE to skip empty results between consecutive delimiters. Defaults to FALSE.",
|
|
7912
|
+
},
|
|
7913
|
+
{
|
|
7914
|
+
title: "match_mode [OPTIONAL]",
|
|
7915
|
+
description: "0 for case-sensitive (default) or 1 for case-insensitive delimiter matching.",
|
|
7916
|
+
},
|
|
7917
|
+
{
|
|
7918
|
+
title: "pad_with [OPTIONAL]",
|
|
7919
|
+
description: "Value used to pad shorter rows. Defaults to #N/A.",
|
|
7582
7920
|
},
|
|
7583
7921
|
],
|
|
7584
7922
|
},
|
|
@@ -8718,4 +9056,710 @@ export const functionDescriptions = [
|
|
|
8718
9056
|
usage: ["WEIBULL.DIST(A2, B2, C2, FALSE)"],
|
|
8719
9057
|
parameters: [],
|
|
8720
9058
|
},
|
|
9059
|
+
{
|
|
9060
|
+
datatype: "Text",
|
|
9061
|
+
title: "ARRAYTOTEXT",
|
|
9062
|
+
syntax: "ARRAYTOTEXT(array, [format])",
|
|
9063
|
+
description: "Returns an array of text values from any specified range. Format 0 (default) is a concise comma-separated list; format 1 is the strict array-constant form with quoted text.",
|
|
9064
|
+
example: 'ARRAYTOTEXT(A1:B2, 1)',
|
|
9065
|
+
usage: ["ARRAYTOTEXT(A1:B2)", "ARRAYTOTEXT(A1:B2, 1)"],
|
|
9066
|
+
parameters: [
|
|
9067
|
+
{ title: "array", description: "The array or range to return as text." },
|
|
9068
|
+
{
|
|
9069
|
+
title: "format",
|
|
9070
|
+
description: "0 = concise (default), 1 = strict (quoted text, {a,b;c,d} syntax).",
|
|
9071
|
+
},
|
|
9072
|
+
],
|
|
9073
|
+
},
|
|
9074
|
+
{
|
|
9075
|
+
datatype: "Text",
|
|
9076
|
+
title: "VALUETOTEXT",
|
|
9077
|
+
syntax: "VALUETOTEXT(value, [format])",
|
|
9078
|
+
description: "Returns text from any specified value. Text passes through unchanged in the concise format and is quoted in the strict format; errors render as their text in strict format.",
|
|
9079
|
+
example: 'VALUETOTEXT(A1, 1)',
|
|
9080
|
+
usage: ["VALUETOTEXT(A1)", "VALUETOTEXT(A1, 1)"],
|
|
9081
|
+
parameters: [
|
|
9082
|
+
{ title: "value", description: "The value to return as text." },
|
|
9083
|
+
{ title: "format", description: "0 = concise (default), 1 = strict." },
|
|
9084
|
+
],
|
|
9085
|
+
},
|
|
9086
|
+
{
|
|
9087
|
+
datatype: "Text",
|
|
9088
|
+
title: "REGEXTEST",
|
|
9089
|
+
syntax: "REGEXTEST(text, pattern, [case_sensitivity])",
|
|
9090
|
+
description: "Determines whether any part of the supplied text matches the regular expression pattern.",
|
|
9091
|
+
example: 'REGEXTEST("Hello World", "^Hello")',
|
|
9092
|
+
usage: ['REGEXTEST(A1, "\\d{3}-\\d{4}")', 'REGEXTEST(A1, "hello", 1)'],
|
|
9093
|
+
parameters: [
|
|
9094
|
+
{ title: "text", description: "The text to test." },
|
|
9095
|
+
{ title: "pattern", description: "The regular expression." },
|
|
9096
|
+
{
|
|
9097
|
+
title: "case_sensitivity",
|
|
9098
|
+
description: "0 = case-sensitive (default), 1 = case-insensitive.",
|
|
9099
|
+
},
|
|
9100
|
+
],
|
|
9101
|
+
},
|
|
9102
|
+
{
|
|
9103
|
+
datatype: "Statistical",
|
|
9104
|
+
title: "NORMDIST",
|
|
9105
|
+
syntax: "NORMDIST(x, mean, standard_dev, cumulative)",
|
|
9106
|
+
description: "Compatibility name for NORM.DIST: returns the normal distribution for the specified mean and standard deviation.",
|
|
9107
|
+
example: "NORMDIST(42, 40, 1.5, TRUE)",
|
|
9108
|
+
usage: ["NORMDIST(A2, B2, C2, TRUE)"],
|
|
9109
|
+
parameters: [],
|
|
9110
|
+
},
|
|
9111
|
+
{
|
|
9112
|
+
datatype: "Statistical",
|
|
9113
|
+
title: "NORMSDIST",
|
|
9114
|
+
syntax: "NORMSDIST(z)",
|
|
9115
|
+
description: "Compatibility name for NORM.S.DIST(z, TRUE): returns the standard normal cumulative distribution.",
|
|
9116
|
+
example: "NORMSDIST(1.333333)",
|
|
9117
|
+
usage: ["NORMSDIST(A2)"],
|
|
9118
|
+
parameters: [],
|
|
9119
|
+
},
|
|
9120
|
+
{
|
|
9121
|
+
datatype: "Statistical",
|
|
9122
|
+
title: "NORMSINV",
|
|
9123
|
+
syntax: "NORMSINV(probability)",
|
|
9124
|
+
description: "Compatibility name for NORM.S.INV: returns the inverse of the standard normal cumulative distribution.",
|
|
9125
|
+
example: "NORMSINV(0.908789)",
|
|
9126
|
+
usage: ["NORMSINV(A2)"],
|
|
9127
|
+
parameters: [],
|
|
9128
|
+
},
|
|
9129
|
+
{
|
|
9130
|
+
datatype: "Statistical",
|
|
9131
|
+
title: "NORMINV",
|
|
9132
|
+
syntax: "NORMINV(probability, mean, standard_dev)",
|
|
9133
|
+
description: "Compatibility name for NORM.INV: returns the inverse of the normal cumulative distribution.",
|
|
9134
|
+
example: "NORMINV(0.908789, 40, 1.5)",
|
|
9135
|
+
usage: ["NORMINV(A2, B2, C2)"],
|
|
9136
|
+
parameters: [],
|
|
9137
|
+
},
|
|
9138
|
+
{
|
|
9139
|
+
datatype: "Statistical",
|
|
9140
|
+
title: "STDEVP",
|
|
9141
|
+
syntax: "STDEVP(value1, [value2, ...])",
|
|
9142
|
+
description: "Compatibility name for STDEV.P: calculates standard deviation based on the entire population.",
|
|
9143
|
+
example: "STDEVP(A2:A11)",
|
|
9144
|
+
usage: ["STDEVP(A2:A11)"],
|
|
9145
|
+
parameters: [],
|
|
9146
|
+
},
|
|
9147
|
+
{
|
|
9148
|
+
datatype: "Statistical",
|
|
9149
|
+
title: "VARP",
|
|
9150
|
+
syntax: "VARP(value1, [value2, ...])",
|
|
9151
|
+
description: "Compatibility name for VAR.P: calculates variance based on the entire population.",
|
|
9152
|
+
example: "VARP(A2:A11)",
|
|
9153
|
+
usage: ["VARP(A2:A11)"],
|
|
9154
|
+
parameters: [],
|
|
9155
|
+
},
|
|
9156
|
+
{
|
|
9157
|
+
datatype: "Financial",
|
|
9158
|
+
title: "MDURATION",
|
|
9159
|
+
syntax: "MDURATION(settlement, maturity, rate, yield, frequency, [day_count_convention])",
|
|
9160
|
+
description: "Calculates the modified Macaulay duration of a security paying periodic interest, such as a US Treasury Bond, based on expected yield.",
|
|
9161
|
+
example: "MDURATION(DATE(2010,1,2),DATE(2039,12,31),0.05,0.06,2,0)",
|
|
9162
|
+
usage: [
|
|
9163
|
+
"MDURATION(DATE(2010,1,2),DATE(2039,12,31),0.05,0.06,2,0)",
|
|
9164
|
+
"MDURATION(A2,B2,C2,D2,E2,1)",
|
|
9165
|
+
],
|
|
9166
|
+
parameters: [
|
|
9167
|
+
{
|
|
9168
|
+
title: "settlement",
|
|
9169
|
+
description: "The settlement date of the security, the date after issuance when the security is delivered to the buyer.",
|
|
9170
|
+
},
|
|
9171
|
+
{
|
|
9172
|
+
title: "maturity",
|
|
9173
|
+
description: "The maturity or end date of the security, when it can be redeemed at face or par value.",
|
|
9174
|
+
},
|
|
9175
|
+
{
|
|
9176
|
+
title: "rate",
|
|
9177
|
+
description: "The annualized rate of interest.",
|
|
9178
|
+
},
|
|
9179
|
+
{
|
|
9180
|
+
title: "yield",
|
|
9181
|
+
description: "The expected annual yield of the security.",
|
|
9182
|
+
},
|
|
9183
|
+
{
|
|
9184
|
+
title: "frequency",
|
|
9185
|
+
description: "The number of interest or coupon payments per year (1, 2, or 4).",
|
|
9186
|
+
},
|
|
9187
|
+
{
|
|
9188
|
+
title: "day_count_convention",
|
|
9189
|
+
description: "[ OPTIONAL - 0 by default ] - An indicator of what day count method to use (0 US 30/360, 1 actual/actual, 2 actual/360, 3 actual/365, 4 European 30/360).",
|
|
9190
|
+
},
|
|
9191
|
+
],
|
|
9192
|
+
},
|
|
9193
|
+
{
|
|
9194
|
+
datatype: "Financial",
|
|
9195
|
+
title: "PRICEDISC",
|
|
9196
|
+
syntax: "PRICEDISC(settlement, maturity, discount, redemption, [day_count_convention])",
|
|
9197
|
+
description: "Calculates the price of a discount (non-interest-bearing) security, based on expected yield.",
|
|
9198
|
+
example: "PRICEDISC(DATE(2010,1,2),DATE(2010,12,31),0.05,100)",
|
|
9199
|
+
usage: [
|
|
9200
|
+
"PRICEDISC(DATE(2010,1,2),DATE(2010,12,31),0.05,100)",
|
|
9201
|
+
"PRICEDISC(A2,B2,C2,D2,1)",
|
|
9202
|
+
],
|
|
9203
|
+
parameters: [
|
|
9204
|
+
{
|
|
9205
|
+
title: "settlement",
|
|
9206
|
+
description: "The settlement date of the security, the date after issuance when the security is delivered to the buyer.",
|
|
9207
|
+
},
|
|
9208
|
+
{
|
|
9209
|
+
title: "maturity",
|
|
9210
|
+
description: "The maturity or end date of the security, when it can be redeemed at face or par value.",
|
|
9211
|
+
},
|
|
9212
|
+
{
|
|
9213
|
+
title: "discount",
|
|
9214
|
+
description: "The discount rate of the security invested in.",
|
|
9215
|
+
},
|
|
9216
|
+
{
|
|
9217
|
+
title: "redemption",
|
|
9218
|
+
description: "The redemption value of the security.",
|
|
9219
|
+
},
|
|
9220
|
+
{
|
|
9221
|
+
title: "day_count_convention",
|
|
9222
|
+
description: "[ OPTIONAL - 0 by default ] - An indicator of what day count method to use (0 US 30/360, 1 actual/actual, 2 actual/360, 3 actual/365, 4 European 30/360).",
|
|
9223
|
+
},
|
|
9224
|
+
],
|
|
9225
|
+
},
|
|
9226
|
+
{
|
|
9227
|
+
datatype: "Financial",
|
|
9228
|
+
title: "PRICEMAT",
|
|
9229
|
+
syntax: "PRICEMAT(settlement, maturity, issue, rate, yield, [day_count_convention])",
|
|
9230
|
+
description: "Calculates the price of a security paying interest at maturity, based on expected yield.",
|
|
9231
|
+
example: "PRICEMAT(DATE(2010,1,2),DATE(2010,12,31),DATE(2009,12,1),0.05,0.06)",
|
|
9232
|
+
usage: [
|
|
9233
|
+
"PRICEMAT(DATE(2010,1,2),DATE(2010,12,31),DATE(2009,12,1),0.05,0.06)",
|
|
9234
|
+
"PRICEMAT(A2,B2,C2,D2,E2,1)",
|
|
9235
|
+
],
|
|
9236
|
+
parameters: [
|
|
9237
|
+
{
|
|
9238
|
+
title: "settlement",
|
|
9239
|
+
description: "The settlement date of the security, the date after issuance when the security is delivered to the buyer.",
|
|
9240
|
+
},
|
|
9241
|
+
{
|
|
9242
|
+
title: "maturity",
|
|
9243
|
+
description: "The maturity or end date of the security, when it can be redeemed at face or par value.",
|
|
9244
|
+
},
|
|
9245
|
+
{
|
|
9246
|
+
title: "issue",
|
|
9247
|
+
description: "The date the security was initially issued.",
|
|
9248
|
+
},
|
|
9249
|
+
{
|
|
9250
|
+
title: "rate",
|
|
9251
|
+
description: "The annualized rate of interest.",
|
|
9252
|
+
},
|
|
9253
|
+
{
|
|
9254
|
+
title: "yield",
|
|
9255
|
+
description: "The expected annual yield of the security.",
|
|
9256
|
+
},
|
|
9257
|
+
{
|
|
9258
|
+
title: "day_count_convention",
|
|
9259
|
+
description: "[ OPTIONAL - 0 by default ] - An indicator of what day count method to use (0 US 30/360, 1 actual/actual, 2 actual/360, 3 actual/365, 4 European 30/360).",
|
|
9260
|
+
},
|
|
9261
|
+
],
|
|
9262
|
+
},
|
|
9263
|
+
{
|
|
9264
|
+
datatype: "Financial",
|
|
9265
|
+
title: "YIELDDISC",
|
|
9266
|
+
syntax: "YIELDDISC(settlement, maturity, price, redemption, [day_count_convention])",
|
|
9267
|
+
description: "Calculates the annual yield of a discount (non-interest-bearing) security, based on price.",
|
|
9268
|
+
example: "YIELDDISC(DATE(2010,1,2),DATE(2010,12,31),95,100)",
|
|
9269
|
+
usage: [
|
|
9270
|
+
"YIELDDISC(DATE(2010,1,2),DATE(2010,12,31),95,100)",
|
|
9271
|
+
"YIELDDISC(A2,B2,C2,D2,1)",
|
|
9272
|
+
],
|
|
9273
|
+
parameters: [
|
|
9274
|
+
{
|
|
9275
|
+
title: "settlement",
|
|
9276
|
+
description: "The settlement date of the security, the date after issuance when the security is delivered to the buyer.",
|
|
9277
|
+
},
|
|
9278
|
+
{
|
|
9279
|
+
title: "maturity",
|
|
9280
|
+
description: "The maturity or end date of the security, when it can be redeemed at face or par value.",
|
|
9281
|
+
},
|
|
9282
|
+
{
|
|
9283
|
+
title: "price",
|
|
9284
|
+
description: "The price at which the security is bought.",
|
|
9285
|
+
},
|
|
9286
|
+
{
|
|
9287
|
+
title: "redemption",
|
|
9288
|
+
description: "The redemption value of the security.",
|
|
9289
|
+
},
|
|
9290
|
+
{
|
|
9291
|
+
title: "day_count_convention",
|
|
9292
|
+
description: "[ OPTIONAL - 0 by default ] - An indicator of what day count method to use (0 US 30/360, 1 actual/actual, 2 actual/360, 3 actual/365, 4 European 30/360).",
|
|
9293
|
+
},
|
|
9294
|
+
],
|
|
9295
|
+
},
|
|
9296
|
+
{
|
|
9297
|
+
datatype: "Financial",
|
|
9298
|
+
title: "YIELDMAT",
|
|
9299
|
+
syntax: "YIELDMAT(settlement, maturity, issue, rate, price, [day_count_convention])",
|
|
9300
|
+
description: "Calculates the annual yield of a security paying interest at maturity, based on price.",
|
|
9301
|
+
example: "YIELDMAT(DATE(2010,1,2),DATE(2010,12,31),DATE(2009,12,1),0.05,99)",
|
|
9302
|
+
usage: [
|
|
9303
|
+
"YIELDMAT(DATE(2010,1,2),DATE(2010,12,31),DATE(2009,12,1),0.05,99)",
|
|
9304
|
+
"YIELDMAT(A2,B2,C2,D2,E2,1)",
|
|
9305
|
+
],
|
|
9306
|
+
parameters: [
|
|
9307
|
+
{
|
|
9308
|
+
title: "settlement",
|
|
9309
|
+
description: "The settlement date of the security, the date after issuance when the security is delivered to the buyer.",
|
|
9310
|
+
},
|
|
9311
|
+
{
|
|
9312
|
+
title: "maturity",
|
|
9313
|
+
description: "The maturity or end date of the security, when it can be redeemed at face or par value.",
|
|
9314
|
+
},
|
|
9315
|
+
{
|
|
9316
|
+
title: "issue",
|
|
9317
|
+
description: "The date the security was initially issued.",
|
|
9318
|
+
},
|
|
9319
|
+
{
|
|
9320
|
+
title: "rate",
|
|
9321
|
+
description: "The annualized rate of interest.",
|
|
9322
|
+
},
|
|
9323
|
+
{
|
|
9324
|
+
title: "price",
|
|
9325
|
+
description: "The price at which the security is bought.",
|
|
9326
|
+
},
|
|
9327
|
+
{
|
|
9328
|
+
title: "day_count_convention",
|
|
9329
|
+
description: "[ OPTIONAL - 0 by default ] - An indicator of what day count method to use (0 US 30/360, 1 actual/actual, 2 actual/360, 3 actual/365, 4 European 30/360).",
|
|
9330
|
+
},
|
|
9331
|
+
],
|
|
9332
|
+
},
|
|
9333
|
+
{
|
|
9334
|
+
datatype: "Financial",
|
|
9335
|
+
title: "INTRATE",
|
|
9336
|
+
syntax: "INTRATE(settlement, maturity, investment, redemption, [day_count_convention])",
|
|
9337
|
+
description: "Calculates the effective interest rate generated when an investment is purchased at one price and sold at another with no interest or dividends generated by the investment itself.",
|
|
9338
|
+
example: "INTRATE(DATE(2010,1,2),DATE(2010,12,31),1000,1050)",
|
|
9339
|
+
usage: [
|
|
9340
|
+
"INTRATE(DATE(2010,1,2),DATE(2010,12,31),1000,1050)",
|
|
9341
|
+
"INTRATE(A2,B2,C2,D2,1)",
|
|
9342
|
+
],
|
|
9343
|
+
parameters: [
|
|
9344
|
+
{
|
|
9345
|
+
title: "settlement",
|
|
9346
|
+
description: "The settlement date of the security, the date after issuance when the security is delivered to the buyer.",
|
|
9347
|
+
},
|
|
9348
|
+
{
|
|
9349
|
+
title: "maturity",
|
|
9350
|
+
description: "The maturity or end date of the security, when it can be redeemed at face or par value.",
|
|
9351
|
+
},
|
|
9352
|
+
{
|
|
9353
|
+
title: "investment",
|
|
9354
|
+
description: "The amount invested in the security.",
|
|
9355
|
+
},
|
|
9356
|
+
{
|
|
9357
|
+
title: "redemption",
|
|
9358
|
+
description: "The amount to be received at maturity.",
|
|
9359
|
+
},
|
|
9360
|
+
{
|
|
9361
|
+
title: "day_count_convention",
|
|
9362
|
+
description: "[ OPTIONAL - 0 by default ] - An indicator of what day count method to use (0 US 30/360, 1 actual/actual, 2 actual/360, 3 actual/365, 4 European 30/360).",
|
|
9363
|
+
},
|
|
9364
|
+
],
|
|
9365
|
+
},
|
|
9366
|
+
{
|
|
9367
|
+
datatype: "Financial",
|
|
9368
|
+
title: "RECEIVED",
|
|
9369
|
+
syntax: "RECEIVED(settlement, maturity, investment, discount, [day_count_convention])",
|
|
9370
|
+
description: "Calculates the amount received at maturity for an investment in fixed-income securities purchased on a given date.",
|
|
9371
|
+
example: "RECEIVED(DATE(2010,1,2),DATE(2010,12,31),1000,0.05)",
|
|
9372
|
+
usage: [
|
|
9373
|
+
"RECEIVED(DATE(2010,1,2),DATE(2010,12,31),1000,0.05)",
|
|
9374
|
+
"RECEIVED(A2,B2,C2,D2,1)",
|
|
9375
|
+
],
|
|
9376
|
+
parameters: [
|
|
9377
|
+
{
|
|
9378
|
+
title: "settlement",
|
|
9379
|
+
description: "The settlement date of the security, the date after issuance when the security is delivered to the buyer.",
|
|
9380
|
+
},
|
|
9381
|
+
{
|
|
9382
|
+
title: "maturity",
|
|
9383
|
+
description: "The maturity or end date of the security, when it can be redeemed at face or par value.",
|
|
9384
|
+
},
|
|
9385
|
+
{
|
|
9386
|
+
title: "investment",
|
|
9387
|
+
description: "The amount invested in the security.",
|
|
9388
|
+
},
|
|
9389
|
+
{
|
|
9390
|
+
title: "discount",
|
|
9391
|
+
description: "The discount rate of the security invested in.",
|
|
9392
|
+
},
|
|
9393
|
+
{
|
|
9394
|
+
title: "day_count_convention",
|
|
9395
|
+
description: "[ OPTIONAL - 0 by default ] - An indicator of what day count method to use (0 US 30/360, 1 actual/actual, 2 actual/360, 3 actual/365, 4 European 30/360).",
|
|
9396
|
+
},
|
|
9397
|
+
],
|
|
9398
|
+
},
|
|
9399
|
+
{
|
|
9400
|
+
datatype: "Math",
|
|
9401
|
+
title: "ERF.PRECISE",
|
|
9402
|
+
syntax: "ERF.PRECISE(z)",
|
|
9403
|
+
description: "Returns the Gauss error function integrated between zero and a value.",
|
|
9404
|
+
example: "ERF.PRECISE(0.745)",
|
|
9405
|
+
usage: ["ERF.PRECISE(0.745)", "ERF.PRECISE(A2)"],
|
|
9406
|
+
parameters: [
|
|
9407
|
+
{
|
|
9408
|
+
title: "z",
|
|
9409
|
+
description: "The upper bound of the integral of the Gauss error function.",
|
|
9410
|
+
},
|
|
9411
|
+
],
|
|
9412
|
+
},
|
|
9413
|
+
{
|
|
9414
|
+
datatype: "Math",
|
|
9415
|
+
title: "ERFC.PRECISE",
|
|
9416
|
+
syntax: "ERFC.PRECISE(z)",
|
|
9417
|
+
description: "Returns the complementary Gauss error function integrated between a value and infinity.",
|
|
9418
|
+
example: "ERFC.PRECISE(1)",
|
|
9419
|
+
usage: ["ERFC.PRECISE(1)", "ERFC.PRECISE(A2)"],
|
|
9420
|
+
parameters: [
|
|
9421
|
+
{
|
|
9422
|
+
title: "z",
|
|
9423
|
+
description: "The lower bound of the integral of the complementary Gauss error function.",
|
|
9424
|
+
},
|
|
9425
|
+
],
|
|
9426
|
+
},
|
|
9427
|
+
{
|
|
9428
|
+
datatype: "Statistical",
|
|
9429
|
+
title: "BETAINV",
|
|
9430
|
+
syntax: "BETAINV(probability, alpha, beta, [lower_bound], [upper_bound])",
|
|
9431
|
+
description: "Returns the value of the inverse beta cumulative distribution function for a given probability. Excel 2007 compatibility name for BETA.INV.",
|
|
9432
|
+
example: "BETAINV(0.685470581, 8, 10, 1, 3)",
|
|
9433
|
+
usage: ["BETAINV(0.685470581, 8, 10, 1, 3)", "BETAINV(A2, B2, C2)"],
|
|
9434
|
+
parameters: [
|
|
9435
|
+
{
|
|
9436
|
+
title: "probability",
|
|
9437
|
+
description: "The probability associated with the beta distribution.",
|
|
9438
|
+
},
|
|
9439
|
+
{
|
|
9440
|
+
title: "alpha",
|
|
9441
|
+
description: "The first shape parameter of the distribution.",
|
|
9442
|
+
},
|
|
9443
|
+
{
|
|
9444
|
+
title: "beta",
|
|
9445
|
+
description: "The second shape parameter of the distribution.",
|
|
9446
|
+
},
|
|
9447
|
+
{
|
|
9448
|
+
title: "lower_bound",
|
|
9449
|
+
description: "[ OPTIONAL - 0 by default ] - The lower bound of the interval of x.",
|
|
9450
|
+
},
|
|
9451
|
+
{
|
|
9452
|
+
title: "upper_bound",
|
|
9453
|
+
description: "[ OPTIONAL - 1 by default ] - The upper bound of the interval of x.",
|
|
9454
|
+
},
|
|
9455
|
+
],
|
|
9456
|
+
},
|
|
9457
|
+
{
|
|
9458
|
+
datatype: "Statistical",
|
|
9459
|
+
title: "BINOMDIST",
|
|
9460
|
+
syntax: "BINOMDIST(num_successes, num_trials, prob_success, cumulative)",
|
|
9461
|
+
description: "Calculates the probability of drawing a certain number of successes in a certain number of independent trials. Excel 2007 compatibility name for BINOM.DIST.",
|
|
9462
|
+
example: "BINOMDIST(6, 10, 0.5, FALSE)",
|
|
9463
|
+
usage: ["BINOMDIST(6, 10, 0.5, FALSE)", "BINOMDIST(A2, A3, A4, TRUE)"],
|
|
9464
|
+
parameters: [
|
|
9465
|
+
{
|
|
9466
|
+
title: "num_successes",
|
|
9467
|
+
description: "The number of successes for which to calculate the probability in num_trials trials.",
|
|
9468
|
+
},
|
|
9469
|
+
{
|
|
9470
|
+
title: "num_trials",
|
|
9471
|
+
description: "The number of independent trials.",
|
|
9472
|
+
},
|
|
9473
|
+
{
|
|
9474
|
+
title: "prob_success",
|
|
9475
|
+
description: "The probability of success in any given trial.",
|
|
9476
|
+
},
|
|
9477
|
+
{
|
|
9478
|
+
title: "cumulative",
|
|
9479
|
+
description: "Whether to use the binomial cumulative distribution (TRUE) or the probability mass (FALSE).",
|
|
9480
|
+
},
|
|
9481
|
+
],
|
|
9482
|
+
},
|
|
9483
|
+
{
|
|
9484
|
+
datatype: "Statistical",
|
|
9485
|
+
title: "CHITEST",
|
|
9486
|
+
syntax: "CHITEST(observed_range, expected_range)",
|
|
9487
|
+
description: "Returns the probability associated with a Pearson's chi-squared test on the two ranges of data. Excel 2007 compatibility name for CHISQ.TEST.",
|
|
9488
|
+
example: "CHITEST(A1:B3, C1:D3)",
|
|
9489
|
+
usage: ["CHITEST(A1:B3, C1:D3)", "CHITEST({58,35;11,25;10,23}, {45.35,47.65;17.56,18.44;16.09,16.91})"],
|
|
9490
|
+
parameters: [
|
|
9491
|
+
{
|
|
9492
|
+
title: "observed_range",
|
|
9493
|
+
description: "The range containing the observed frequencies.",
|
|
9494
|
+
},
|
|
9495
|
+
{
|
|
9496
|
+
title: "expected_range",
|
|
9497
|
+
description: "The range containing the expected frequencies; must match the shape of observed_range.",
|
|
9498
|
+
},
|
|
9499
|
+
],
|
|
9500
|
+
},
|
|
9501
|
+
{
|
|
9502
|
+
datatype: "Statistical",
|
|
9503
|
+
title: "CRITBINOM",
|
|
9504
|
+
syntax: "CRITBINOM(num_trials, prob_success, target_prob)",
|
|
9505
|
+
description: "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value. Excel 2007 compatibility name for BINOM.INV.",
|
|
9506
|
+
example: "CRITBINOM(6, 0.5, 0.75)",
|
|
9507
|
+
usage: ["CRITBINOM(6, 0.5, 0.75)", "CRITBINOM(A2, A3, A4)"],
|
|
9508
|
+
parameters: [
|
|
9509
|
+
{
|
|
9510
|
+
title: "num_trials",
|
|
9511
|
+
description: "The number of independent trials.",
|
|
9512
|
+
},
|
|
9513
|
+
{
|
|
9514
|
+
title: "prob_success",
|
|
9515
|
+
description: "The probability of success in any given trial.",
|
|
9516
|
+
},
|
|
9517
|
+
{
|
|
9518
|
+
title: "target_prob",
|
|
9519
|
+
description: "The criterion probability the cumulative distribution must reach.",
|
|
9520
|
+
},
|
|
9521
|
+
],
|
|
9522
|
+
},
|
|
9523
|
+
{
|
|
9524
|
+
datatype: "Statistical",
|
|
9525
|
+
title: "EXPONDIST",
|
|
9526
|
+
syntax: "EXPONDIST(x, lambda, cumulative)",
|
|
9527
|
+
description: "Returns the value of the exponential distribution function with a specified lambda at a specified value. Excel 2007 compatibility name for EXPON.DIST.",
|
|
9528
|
+
example: "EXPONDIST(0.2, 10, TRUE)",
|
|
9529
|
+
usage: ["EXPONDIST(0.2, 10, TRUE)", "EXPONDIST(A2, A3, A4)"],
|
|
9530
|
+
parameters: [
|
|
9531
|
+
{
|
|
9532
|
+
title: "x",
|
|
9533
|
+
description: "The input to the exponential distribution function.",
|
|
9534
|
+
},
|
|
9535
|
+
{
|
|
9536
|
+
title: "lambda",
|
|
9537
|
+
description: "The lambda to specify the exponential distribution function.",
|
|
9538
|
+
},
|
|
9539
|
+
{
|
|
9540
|
+
title: "cumulative",
|
|
9541
|
+
description: "Whether to use the exponential cumulative distribution (TRUE) or the density (FALSE).",
|
|
9542
|
+
},
|
|
9543
|
+
],
|
|
9544
|
+
},
|
|
9545
|
+
{
|
|
9546
|
+
datatype: "Statistical",
|
|
9547
|
+
title: "FDIST",
|
|
9548
|
+
syntax: "FDIST(x, degrees_freedom1, degrees_freedom2)",
|
|
9549
|
+
description: "Calculates the right-tailed F probability distribution (degree of diversity) for two data sets with given input x. Excel 2007 compatibility name for F.DIST.RT.",
|
|
9550
|
+
example: "FDIST(15.2069, 6, 4)",
|
|
9551
|
+
usage: ["FDIST(15.2069, 6, 4)", "FDIST(A2, B2, C2)"],
|
|
9552
|
+
parameters: [
|
|
9553
|
+
{
|
|
9554
|
+
title: "x",
|
|
9555
|
+
description: "The value at which to evaluate the function.",
|
|
9556
|
+
},
|
|
9557
|
+
{
|
|
9558
|
+
title: "degrees_freedom1",
|
|
9559
|
+
description: "The numerator degrees of freedom.",
|
|
9560
|
+
},
|
|
9561
|
+
{
|
|
9562
|
+
title: "degrees_freedom2",
|
|
9563
|
+
description: "The denominator degrees of freedom.",
|
|
9564
|
+
},
|
|
9565
|
+
],
|
|
9566
|
+
},
|
|
9567
|
+
{
|
|
9568
|
+
datatype: "Statistical",
|
|
9569
|
+
title: "FINV",
|
|
9570
|
+
syntax: "FINV(probability, degrees_freedom1, degrees_freedom2)",
|
|
9571
|
+
description: "Calculates the inverse of the right-tailed F probability distribution. Excel 2007 compatibility name for F.INV.RT.",
|
|
9572
|
+
example: "FINV(0.01, 6, 4)",
|
|
9573
|
+
usage: ["FINV(0.01, 6, 4)", "FINV(A2, B2, C2)"],
|
|
9574
|
+
parameters: [
|
|
9575
|
+
{
|
|
9576
|
+
title: "probability",
|
|
9577
|
+
description: "The probability associated with the right-tailed F-distribution.",
|
|
9578
|
+
},
|
|
9579
|
+
{
|
|
9580
|
+
title: "degrees_freedom1",
|
|
9581
|
+
description: "The numerator degrees of freedom.",
|
|
9582
|
+
},
|
|
9583
|
+
{
|
|
9584
|
+
title: "degrees_freedom2",
|
|
9585
|
+
description: "The denominator degrees of freedom.",
|
|
9586
|
+
},
|
|
9587
|
+
],
|
|
9588
|
+
},
|
|
9589
|
+
{
|
|
9590
|
+
datatype: "Statistical",
|
|
9591
|
+
title: "FTEST",
|
|
9592
|
+
syntax: "FTEST(range1, range2)",
|
|
9593
|
+
description: "Returns the two-tailed probability that the variances of two samples are not significantly different, from an F-test. Excel 2007 compatibility name for F.TEST.",
|
|
9594
|
+
example: "FTEST(A1:A5, B1:B5)",
|
|
9595
|
+
usage: ["FTEST(A1:A5, B1:B5)", "FTEST({6,7,9,15,21}, {20,28,31,38,40})"],
|
|
9596
|
+
parameters: [
|
|
9597
|
+
{
|
|
9598
|
+
title: "range1",
|
|
9599
|
+
description: "The first sample of data or group of cells to consider for the F-test.",
|
|
9600
|
+
},
|
|
9601
|
+
{
|
|
9602
|
+
title: "range2",
|
|
9603
|
+
description: "The second sample of data or group of cells to consider for the F-test.",
|
|
9604
|
+
},
|
|
9605
|
+
],
|
|
9606
|
+
},
|
|
9607
|
+
{
|
|
9608
|
+
datatype: "Statistical",
|
|
9609
|
+
title: "GAMMAINV",
|
|
9610
|
+
syntax: "GAMMAINV(probability, alpha, beta)",
|
|
9611
|
+
description: "Returns the value of the inverse gamma cumulative distribution function for the specified probability and alpha and beta parameters. Excel 2007 compatibility name for GAMMA.INV.",
|
|
9612
|
+
example: "GAMMAINV(0.068094, 9, 2)",
|
|
9613
|
+
usage: ["GAMMAINV(0.068094, 9, 2)", "GAMMAINV(A2, 3, 2)"],
|
|
9614
|
+
parameters: [
|
|
9615
|
+
{
|
|
9616
|
+
title: "probability",
|
|
9617
|
+
description: "The probability associated with the gamma distribution.",
|
|
9618
|
+
},
|
|
9619
|
+
{
|
|
9620
|
+
title: "alpha",
|
|
9621
|
+
description: "The shape parameter of the distribution.",
|
|
9622
|
+
},
|
|
9623
|
+
{
|
|
9624
|
+
title: "beta",
|
|
9625
|
+
description: "The scale parameter of the distribution.",
|
|
9626
|
+
},
|
|
9627
|
+
],
|
|
9628
|
+
},
|
|
9629
|
+
{
|
|
9630
|
+
datatype: "Statistical",
|
|
9631
|
+
title: "HYPGEOMDIST",
|
|
9632
|
+
syntax: "HYPGEOMDIST(num_successes, num_draws, successes_in_pop, pop_size)",
|
|
9633
|
+
description: "Calculates the probability of drawing a certain number of successes in a certain number of tries given a population of a certain size containing a certain number of successes, without replacement. Excel 2007 compatibility name for HYPGEOM.DIST with cumulative FALSE.",
|
|
9634
|
+
example: "HYPGEOMDIST(1, 4, 8, 20)",
|
|
9635
|
+
usage: ["HYPGEOMDIST(1, 4, 8, 20)", "HYPGEOMDIST(A2, A3, A4, A5)"],
|
|
9636
|
+
parameters: [
|
|
9637
|
+
{
|
|
9638
|
+
title: "num_successes",
|
|
9639
|
+
description: "The desired number of successes.",
|
|
9640
|
+
},
|
|
9641
|
+
{
|
|
9642
|
+
title: "num_draws",
|
|
9643
|
+
description: "The number of permitted draws.",
|
|
9644
|
+
},
|
|
9645
|
+
{
|
|
9646
|
+
title: "successes_in_pop",
|
|
9647
|
+
description: "The total number of successes in the population.",
|
|
9648
|
+
},
|
|
9649
|
+
{
|
|
9650
|
+
title: "pop_size",
|
|
9651
|
+
description: "The total size of the population.",
|
|
9652
|
+
},
|
|
9653
|
+
],
|
|
9654
|
+
},
|
|
9655
|
+
{
|
|
9656
|
+
datatype: "Statistical",
|
|
9657
|
+
title: "LOGNORMDIST",
|
|
9658
|
+
syntax: "LOGNORMDIST(x, mean, standard_deviation)",
|
|
9659
|
+
description: "Returns the value of the log-normal cumulative distribution with given mean and standard deviation at a specified value. Excel 2007 compatibility name for LOGNORM.DIST with cumulative TRUE.",
|
|
9660
|
+
example: "LOGNORMDIST(4, 3.5, 1.2)",
|
|
9661
|
+
usage: ["LOGNORMDIST(4, 3.5, 1.2)", "LOGNORMDIST(A2, A3, A4)"],
|
|
9662
|
+
parameters: [
|
|
9663
|
+
{
|
|
9664
|
+
title: "x",
|
|
9665
|
+
description: "The input to the log-normal cumulative distribution function.",
|
|
9666
|
+
},
|
|
9667
|
+
{
|
|
9668
|
+
title: "mean",
|
|
9669
|
+
description: "The mean (mu) of the log-normal cumulative distribution function.",
|
|
9670
|
+
},
|
|
9671
|
+
{
|
|
9672
|
+
title: "standard_deviation",
|
|
9673
|
+
description: "The standard deviation (sigma) of the log-normal cumulative distribution function.",
|
|
9674
|
+
},
|
|
9675
|
+
],
|
|
9676
|
+
},
|
|
9677
|
+
{
|
|
9678
|
+
datatype: "Statistical",
|
|
9679
|
+
title: "NEGBINOMDIST",
|
|
9680
|
+
syntax: "NEGBINOMDIST(num_failures, num_successes, prob_success)",
|
|
9681
|
+
description: "Calculates the probability of drawing a certain number of failures before a certain number of successes given a probability of success in independent trials. Excel 2007 compatibility name for NEGBINOM.DIST with cumulative FALSE.",
|
|
9682
|
+
example: "NEGBINOMDIST(10, 5, 0.25)",
|
|
9683
|
+
usage: ["NEGBINOMDIST(10, 5, 0.25)", "NEGBINOMDIST(A2, A3, A4)"],
|
|
9684
|
+
parameters: [
|
|
9685
|
+
{
|
|
9686
|
+
title: "num_failures",
|
|
9687
|
+
description: "The number of failures to model.",
|
|
9688
|
+
},
|
|
9689
|
+
{
|
|
9690
|
+
title: "num_successes",
|
|
9691
|
+
description: "The number of successes to model.",
|
|
9692
|
+
},
|
|
9693
|
+
{
|
|
9694
|
+
title: "prob_success",
|
|
9695
|
+
description: "The probability of success in any given trial.",
|
|
9696
|
+
},
|
|
9697
|
+
],
|
|
9698
|
+
},
|
|
9699
|
+
{
|
|
9700
|
+
datatype: "Statistical",
|
|
9701
|
+
title: "TINV",
|
|
9702
|
+
syntax: "TINV(probability, degrees_freedom)",
|
|
9703
|
+
description: "Calculates the inverse of the two-tailed Student's t-distribution. Excel 2007 compatibility name for T.INV.2T.",
|
|
9704
|
+
example: "TINV(0.05464, 60)",
|
|
9705
|
+
usage: ["TINV(0.05464, 60)", "TINV(A2, B2)"],
|
|
9706
|
+
parameters: [
|
|
9707
|
+
{
|
|
9708
|
+
title: "probability",
|
|
9709
|
+
description: "The probability associated with the two-tailed t-distribution.",
|
|
9710
|
+
},
|
|
9711
|
+
{
|
|
9712
|
+
title: "degrees_freedom",
|
|
9713
|
+
description: "The number of degrees of freedom.",
|
|
9714
|
+
},
|
|
9715
|
+
],
|
|
9716
|
+
},
|
|
9717
|
+
{
|
|
9718
|
+
datatype: "Statistical",
|
|
9719
|
+
title: "TTEST",
|
|
9720
|
+
syntax: "TTEST(range1, range2, tails, type)",
|
|
9721
|
+
description: "Returns the probability associated with Student's t-test. Determines whether two samples are likely to have come from the same two underlying populations that have the same mean. Excel 2007 compatibility name for T.TEST.",
|
|
9722
|
+
example: "TTEST(A1:A4, B1:B4, 2, 1)",
|
|
9723
|
+
usage: ["TTEST(A1:A4, B1:B4, 2, 1)", "TTEST(A1:A9, B1:B9, 1, 3)"],
|
|
9724
|
+
parameters: [
|
|
9725
|
+
{
|
|
9726
|
+
title: "range1",
|
|
9727
|
+
description: "The first sample of data or group of cells to consider for the t-test.",
|
|
9728
|
+
},
|
|
9729
|
+
{
|
|
9730
|
+
title: "range2",
|
|
9731
|
+
description: "The second sample of data or group of cells to consider for the t-test.",
|
|
9732
|
+
},
|
|
9733
|
+
{
|
|
9734
|
+
title: "tails",
|
|
9735
|
+
description: "1 for a one-tailed distribution, 2 for a two-tailed distribution.",
|
|
9736
|
+
},
|
|
9737
|
+
{
|
|
9738
|
+
title: "type",
|
|
9739
|
+
description: "1 for a paired test, 2 for a two-sample equal-variance test, 3 for a two-sample unequal-variance test.",
|
|
9740
|
+
},
|
|
9741
|
+
],
|
|
9742
|
+
},
|
|
9743
|
+
{
|
|
9744
|
+
datatype: "Statistical",
|
|
9745
|
+
title: "ZTEST",
|
|
9746
|
+
syntax: "ZTEST(data, value, [standard_deviation])",
|
|
9747
|
+
description: "Returns the one-tailed P-value of a Z-test with standard distribution. Excel 2007 compatibility name for Z.TEST.",
|
|
9748
|
+
example: "ZTEST(A2:A100, B2)",
|
|
9749
|
+
usage: ["ZTEST(A2:A100, B2)", "ZTEST({3,6,7,8,6,5,4,2,1,9}, 4)"],
|
|
9750
|
+
parameters: [
|
|
9751
|
+
{
|
|
9752
|
+
title: "data",
|
|
9753
|
+
description: "The array or range containing the dataset to consider.",
|
|
9754
|
+
},
|
|
9755
|
+
{
|
|
9756
|
+
title: "value",
|
|
9757
|
+
description: "The test statistic to use in the Z-test.",
|
|
9758
|
+
},
|
|
9759
|
+
{
|
|
9760
|
+
title: "standard_deviation",
|
|
9761
|
+
description: "[ OPTIONAL ] - The population standard deviation to assume. If omitted, STDEV(data) is used.",
|
|
9762
|
+
},
|
|
9763
|
+
],
|
|
9764
|
+
},
|
|
8721
9765
|
];
|