@univerjs/preset-sheets-core 0.10.2 → 0.10.3
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.
- package/lib/cjs/index.js +1 -1
- package/lib/es/index.js +35 -37
- package/lib/index.css +1 -1
- package/lib/index.js +35 -37
- package/lib/umd/index.js +13 -13
- package/lib/umd/locales/ca-ES.js +1 -1
- package/lib/umd/locales/en-US.js +1 -1
- package/lib/umd/locales/es-ES.js +1 -1
- package/lib/umd/locales/fa-IR.js +1 -1
- package/lib/umd/locales/fr-FR.js +1 -1
- package/lib/umd/locales/ko-KR.js +1 -1
- package/lib/umd/locales/ru-RU.js +1 -1
- package/package.json +17 -17
package/lib/umd/locales/fr-FR.js
CHANGED
|
@@ -66,7 +66,7 @@ If index_num is a fraction, it is truncated to the lowest integer before being u
|
|
|
66
66
|
1.A calculation that uses all names within the LET function. This must be the last argument in the LET function.
|
|
67
67
|
2.A second name to assign to a second name_value. If a name is specified, name_value2 and calculation_or_name3 become required.`},nameValue2:{name:"name_value2",detail:"The value that is assigned to calculation_or_name2."},calculationOrName3:{name:"calculation_or_name3",detail:`One of the following:
|
|
68
68
|
1.A calculation that uses all names within the LET function. The last argument in the LET function must be a calculation.
|
|
69
|
-
2.A third name to assign to a third name_value. If a name is specified, name_value3 and calculation_or_name4 become required.`}}},MAKEARRAY:{description:"Returns a calculated array of a specified row and column size, by applying a LAMBDA",abstract:"Returns a calculated array of a specified row and column size, by applying a LAMBDA",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/makearray-function-b80da5ad-b338-4149-a523-5b221da09097"}],functionParameter:{number1:{name:"rows",detail:"The number of rows in the array. Must be greater than zero."},number2:{name:"cols",detail:"The number of columns in the array. Must be greater than zero."},value3:{name:"lambda",detail:" A LAMBDA that is called to create the array. The LAMBDA takes two parameters: row (The row index of the array), col (The column index of the array)."}}},MAP:{description:"Returns an array formed by mapping each value in the array(s) to a new value by applying a LAMBDA to create a new value.",abstract:"Returns an array formed by mapping each value in the array(s) to a new value by applying a LAMBDA to create a new value.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/map-function-48006093-f97c-47c1-bfcc-749263bb1f01"}],functionParameter:{array1:{name:"array1",detail:"An array1 to be mapped."},array2:{name:"array2",detail:"An array2 to be mapped."},lambda:{name:"lambda",detail:"A LAMBDA which must be the last argument and which must have either a parameter for each array passed."}}},NOT:{description:"Reverses the logic of its argument.",abstract:"Reverses the logic of its argument.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/not-function-9cfc6011-a054-40c7-a140-cd4ba2d87d77"}],functionParameter:{logical:{name:"logical",detail:"The condition that you want to reverse the logic for, which can evaluate to either TRUE or FALSE."}}},OR:{description:"Returns TRUE if any of its arguments evaluate to TRUE, and returns FALSE if all of its arguments evaluate to FALSE.",abstract:"Returns TRUE if any argument is TRUE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/or-function-7d17ad14-8700-4281-b308-00b131e22af0"}],functionParameter:{logical1:{name:"logical1",detail:"The first condition that you want to test that can evaluate to either TRUE or FALSE."},logical2:{name:"logical2",detail:"Additional conditions that you want to test that can evaluate to either TRUE or FALSE, up to a maximum of 255 conditions."}}},REDUCE:{description:"Reduces an array to an accumulated value by applying a LAMBDA to each value and returning the total value in the accumulator. ",abstract:"Reduces an array to an accumulated value by applying a LAMBDA to each value and returning the total value in the accumulator. ",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/reduce-function-42e39910-b345-45f3-84b8-0642b568b7cb"}],functionParameter:{initialValue:{name:"initial_value",detail:"Sets the starting value for the accumulator."},array:{name:"array",detail:"An array to be reduced."},lambda:{name:"lambda",detail:"A LAMBDA that is called to reduce the array. The LAMBDA takes three parameters: 1.The value totaled up and returned as the final result. 2.The current value from the array. 3.The calculation applied to each element in the array."}}},SCAN:{description:"Scans an array by applying a LAMBDA to each value and returns an array that has each intermediate value.",abstract:"Scans an array by applying a LAMBDA to each value and returns an array that has each intermediate value.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/scan-function-d58dfd11-9969-4439-b2dc-e7062724de29"}],functionParameter:{initialValue:{name:"initial_value",detail:"Sets the starting value for the accumulator."},array:{name:"array",detail:"An array to be scanned."},lambda:{name:"lambda",detail:"A LAMBDA that is called to scanned the array. The LAMBDA takes three parameters: 1.The value totaled up and returned as the final result. 2.The current value from the array. 3.The calculation applied to each element in the array."}}},SWITCH:{description:"Evaluates an expression against a list of values and returns the result corresponding to the first matching value. If there is no match, an optional default value may be returned.",abstract:"Evaluates an expression against a list of values and returns the result corresponding to the first matching value. If there is no match, an optional default value may be returned.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/switch-function-47ab33c0-28ce-4530-8a45-d532ec4aa25e"}],functionParameter:{expression:{name:"expression",detail:"Expression is the value (such as a number, date or some text) that will be compared against value1…value126."},value1:{name:"value1",detail:"ValueN is a value that will be compared against expression."},result1:{name:"result1",detail:"ResultN is the value to be returned when the corresponding valueN argument matches expression. ResultN and must be supplied for each corresponding valueN argument."},defaultOrValue2:{name:"default_or_value2",detail:"Default is the value to return in case no matches are found in the valueN expressions. The Default argument is identified by having no corresponding resultN expression (see examples). Default must be the final argument in the function."},result2:{name:"result2",detail:"ResultN is the value to be returned when the corresponding valueN argument matches expression. ResultN and must be supplied for each corresponding valueN argument."}}},TRUE:{description:"Returns the logical value TRUE.",abstract:"Returns the logical value TRUE.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/true-function-7652c6e3-8987-48d0-97cd-ef223246b3fb"}],functionParameter:{}},XOR:{description:"Returns TRUE if an odd number of its arguments evaluate to TRUE, and FALSE if an even number of its arguments evaluate to TRUE.",abstract:"Returns TRUE if an odd number of arguments are TRUE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xor-function-1548d4c2-5e47-4f77-9a92-0533bba14f37"}],functionParameter:{logical1:{name:"logical1",detail:"The first condition that you want to test that can evaluate to either TRUE or FALSE."},logical2:{name:"logical2",detail:"Additional conditions that you want to test that can evaluate to either TRUE or FALSE, up to a maximum of 255 conditions."}}}},...{CELL:{description:"Returns information about the formatting, location, or contents of a cell",abstract:"Returns information about the formatting, location, or contents of a cell",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cell-function-51bd39a5-f338-4dbe-a33f-955d67c2b2cf"}],functionParameter:{infoType:{name:"info_type",detail:"A text value that specifies what type of cell information you want to return."},reference:{name:"reference",detail:"The cell that you want information about."}}},ERROR_TYPE:{description:"Returns a number corresponding to an error type",abstract:"Returns a number corresponding to an error type",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/error-type-function-10958677-7c8d-44f7-ae77-b9a9ee6eefaa"}],functionParameter:{errorVal:{name:"error_val",detail:"The error value whose identifying number you want to find."}}},INFO:{description:"Returns information about the current operating environment",abstract:"Returns information about the current operating environment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/info-function-725f259a-0e4b-49b3-8b52-58815c69acae"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},ISBETWEEN:{description:"Checks whether a provided number is between two other numbers either inclusively or exclusively.",abstract:"Checks whether a provided number is between two other numbers either inclusively or exclusively.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/10538337?hl=en&sjid=7730820672019533290-AP"}],functionParameter:{valueToCompare:{name:"value_to_compare",detail:"The value to test as being between `lower_value` and `upper_value`."},lowerValue:{name:"lower_value",detail:"The lower boundary of the range of values that `value_to_compare` can fall within."},upperValue:{name:"upper_value",detail:"The upper boundary of the range of values that `value_to_compare` can fall within."},lowerValueIsInclusive:{name:"lower_value_is_inclusive",detail:"Whether the range of values includes the `lower_value`. By default this is TRUE."},upperValueIsInclusive:{name:"upper_value_is_inclusive",detail:"Whether the range of values includes the `upper_value`. By default this is TRUE."}}},ISBLANK:{description:"Returns TRUE if the value is blank",abstract:"Returns TRUE if the value is blank",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISDATE:{description:"Returns whether a value is a date.",abstract:"Returns whether a value is a date.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9061381?hl=en&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"value",detail:"The value to be verified as a date."}}},ISEMAIL:{description:"Checks if a value is a valid email address",abstract:"Checks if a value is a valid email address",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3256503?hl=en&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"value",detail:"The value to be verified as an email address."}}},ISERR:{description:"Returns TRUE if the value is any error value except #N/A",abstract:"Returns TRUE if the value is any error value except #N/A",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISERROR:{description:"Returns TRUE if the value is any error value",abstract:"Returns TRUE if the value is any error value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISEVEN:{description:"Returns TRUE if the number is even",abstract:"Returns TRUE if the number is even",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/iseven-function-aa15929a-d77b-4fbb-92f4-2f479af55356"}],functionParameter:{value:{name:"value",detail:"The value to test. If number is not an integer, it is truncated."}}},ISFORMULA:{description:"Returns TRUE if there is a reference to a cell that contains a formula",abstract:"Returns TRUE if there is a reference to a cell that contains a formula",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isformula-function-e4d1355f-7121-4ef2-801e-3839bfd6b1e5"}],functionParameter:{reference:{name:"reference",detail:"Reference is a reference to the cell you want to test."}}},ISLOGICAL:{description:"Returns TRUE if the value is a logical value",abstract:"Returns TRUE if the value is a logical value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISNA:{description:"Returns TRUE if the value is the #N/A error value",abstract:"Returns TRUE if the value is the #N/A error value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISNONTEXT:{description:"Returns TRUE if the value is not text",abstract:"Returns TRUE if the value is not text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISNUMBER:{description:"Returns TRUE if the value is a number",abstract:"Returns TRUE if the value is a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISODD:{description:"Returns TRUE if the number is odd",abstract:"Returns TRUE if the number is odd",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isodd-function-1208a56d-4f10-4f44-a5fc-648cafd6c07a"}],functionParameter:{value:{name:"value",detail:"The value to test. If number is not an integer, it is truncated."}}},ISOMITTED:{description:"Checks whether the value in a LAMBDA is missing and returns TRUE or FALSE",abstract:"Checks whether the value in a LAMBDA is missing and returns TRUE or FALSE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isomitted-function-831d6fbc-0f07-40c4-9c5b-9c73fd1d60c1"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},ISREF:{description:"Returns TRUE if the value is a reference",abstract:"Returns TRUE if the value is a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISTEXT:{description:"Returns TRUE if the value is text",abstract:"Returns TRUE if the value is text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISURL:{description:"Checks whether a value is a valid URL.",abstract:"Checks whether a value is a valid URL.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3256501?hl=en&sjid=7312884847858065932-AP"}],functionParameter:{value:{name:"value",detail:"The value to be verified as a URL."}}},N:{description:"Returns a value converted to a number",abstract:"Returns a value converted to a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/n-function-a624cad1-3635-4208-b54a-29733d1278c9"}],functionParameter:{value:{name:"value",detail:"The value you want converted."}}},NA:{description:"Returns the error value #N/A",abstract:"Returns the error value #N/A",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/na-function-5469c2d1-a90c-4fb5-9bbc-64bd9bb6b47c"}],functionParameter:{}},SHEET:{description:"Returns the sheet number of the referenced sheet",abstract:"Returns the sheet number of the referenced sheet",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sheet-function-44718b6f-8b87-47a1-a9d6-b701c06cff24"}],functionParameter:{value:{name:"value",detail:"Value is the name of a sheet or a reference for which you want the sheet number. If value is omitted, SHEET returns the number of the sheet that contains the function."}}},SHEETS:{description:"Returns the number of sheets in a workbook",abstract:"Returns the number of sheets in a workbook",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sheets-function-770515eb-e1e8-45ce-8066-b557e5e4b80b"}],functionParameter:{}},TYPE:{description:"Returns a number indicating the data type of a value",abstract:"Returns a number indicating the data type of a value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/type-function-45b4e688-4bc3-48b3-a105-ffa892995899"}],functionParameter:{value:{name:"value",detail:"Can be any value, such as a number, text, logical value, and so on."}}}},...{BESSELI:{description:"Returns the modified Bessel function In(x)",abstract:"Returns the modified Bessel function In(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/besseli-function-8d33855c-9a8d-444b-98e0-852267b1c0df"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BESSELJ:{description:"Returns the Bessel function Jn(x)",abstract:"Returns the Bessel function Jn(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/besselj-function-839cb181-48de-408b-9d80-bd02982d94f7"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BESSELK:{description:"Returns the modified Bessel function Kn(x)",abstract:"Returns the modified Bessel function Kn(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/besselk-function-606d11bc-06d3-4d53-9ecb-2803e2b90b70"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BESSELY:{description:"Returns the Bessel function Yn(x)",abstract:"Returns the Bessel function Yn(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bessely-function-f3a356b3-da89-42c3-8974-2da54d6353a2"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BIN2DEC:{description:"Converts a binary number to decimal",abstract:"Converts a binary number to decimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bin2dec-function-63905b57-b3a0-453d-99f4-647bb519cd6c"}],functionParameter:{number:{name:"number",detail:"The binary number you want to convert."}}},BIN2HEX:{description:"Converts a binary number to hexadecimal",abstract:"Converts a binary number to hexadecimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bin2hex-function-0375e507-f5e5-4077-9af8-28d84f9f41cc"}],functionParameter:{number:{name:"number",detail:"The binary number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},BIN2OCT:{description:"Converts a binary number to octal",abstract:"Converts a binary number to octal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bin2oct-function-0a4e01ba-ac8d-4158-9b29-16c25c4c23fd"}],functionParameter:{number:{name:"number",detail:"The binary number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},BITAND:{description:"Returns a 'Bitwise And' of two numbers",abstract:"Returns a 'Bitwise And' of two numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitand-function-8a2be3d7-91c3-4b48-9517-64548008563a"}],functionParameter:{number1:{name:"number1",detail:"Must be in decimal form and greater than or equal to 0."},number2:{name:"number2",detail:"Must be in decimal form and greater than or equal to 0."}}},BITLSHIFT:{description:"Returns a value number shifted left by shift_amount bits",abstract:"Returns a value number shifted left by shift_amount bits",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitlshift-function-c55bb27e-cacd-4c7c-b258-d80861a03c9c"}],functionParameter:{number:{name:"number",detail:"Number must be an integer greater than or equal to 0."},shiftAmount:{name:"shift_amount",detail:"Shift_amount must be an integer."}}},BITOR:{description:"Returns a bitwise OR of 2 numbers",abstract:"Returns a bitwise OR of 2 numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitor-function-f6ead5c8-5b98-4c9e-9053-8ad5234919b2"}],functionParameter:{number1:{name:"number1",detail:"Must be in decimal form and greater than or equal to 0."},number2:{name:"number2",detail:"Must be in decimal form and greater than or equal to 0."}}},BITRSHIFT:{description:"Returns a value number shifted right by shift_amount bits",abstract:"Returns a value number shifted right by shift_amount bits",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitrshift-function-274d6996-f42c-4743-abdb-4ff95351222c"}],functionParameter:{number:{name:"number",detail:"Number must be an integer greater than or equal to 0."},shiftAmount:{name:"shift_amount",detail:"Shift_amount must be an integer."}}},BITXOR:{description:"Returns a bitwise 'Exclusive Or' of two numbers",abstract:"Returns a bitwise 'Exclusive Or' of two numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitxor-function-c81306a1-03f9-4e89-85ac-b86c3cba10e4"}],functionParameter:{number1:{name:"number1",detail:"Must be in decimal form and greater than or equal to 0."},number2:{name:"number2",detail:"Must be in decimal form and greater than or equal to 0."}}},COMPLEX:{description:"Converts real and imaginary coefficients into a complex number",abstract:"Converts real and imaginary coefficients into a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/complex-function-f0b8f3a9-51cc-4d6d-86fb-3a9362fa4128"}],functionParameter:{realNum:{name:"real_num",detail:"The real coefficient of the complex number."},iNum:{name:"i_num",detail:"The imaginary coefficient of the complex number."},suffix:{name:"suffix",detail:'The suffix for the imaginary component of the complex number. If omitted, suffix is assumed to be "i".'}}},CONVERT:{description:"Converts a number from one measurement system to another",abstract:"Converts a number from one measurement system to another",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/convert-function-d785bef1-808e-4aac-bdcd-666c810f9af2"}],functionParameter:{number:{name:"number",detail:"is the value in from_units to convert."},fromUnit:{name:"from_unit",detail:"is the units for number."},toUnit:{name:"to_unit",detail:"is the units for the result."}}},DEC2BIN:{description:"Converts a decimal number to binary",abstract:"Converts a decimal number to binary",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dec2bin-function-0f63dd0e-5d1a-42d8-b511-5bf5c6d43838"}],functionParameter:{number:{name:"number",detail:"The decimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},DEC2HEX:{description:"Converts a decimal number to hexadecimal",abstract:"Converts a decimal number to hexadecimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dec2hex-function-6344ee8b-b6b5-4c6a-a672-f64666704619"}],functionParameter:{number:{name:"number",detail:"The decimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},DEC2OCT:{description:"Converts a decimal number to octal",abstract:"Converts a decimal number to octal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dec2oct-function-c9d835ca-20b7-40c4-8a9e-d3be351ce00f"}],functionParameter:{number:{name:"number",detail:"The decimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},DELTA:{description:"Tests whether two values are equal",abstract:"Tests whether two values are equal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/delta-function-2f763672-c959-4e07-ac33-fe03220ba432"}],functionParameter:{number1:{name:"number1",detail:"The first number."},number2:{name:"number2",detail:"The second number. If omitted, number2 is assumed to be zero."}}},ERF:{description:"Returns the error function",abstract:"Returns the error function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erf-function-c53c7e7b-5482-4b6c-883e-56df3c9af349"}],functionParameter:{lowerLimit:{name:"lower_limit",detail:"The lower bound for integrating ERF."},upperLimit:{name:"upper_limit",detail:"The upper bound for integrating ERF. If omitted, ERF integrates between zero and lower_limit."}}},ERF_PRECISE:{description:"Returns the error function",abstract:"Returns the error function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erf-precise-function-9a349593-705c-4278-9a98-e4122831a8e0"}],functionParameter:{x:{name:"x",detail:"The lower bound for integrating ERF.PRECISE."}}},ERFC:{description:"Returns the complementary error function",abstract:"Returns the complementary error function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erfc-function-736e0318-70ba-4e8b-8d08-461fe68b71b3"}],functionParameter:{x:{name:"x",detail:"The lower bound for integrating ERFC."}}},ERFC_PRECISE:{description:"Returns the complementary ERF function integrated between x and infinity",abstract:"Returns the complementary ERF function integrated between x and infinity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erfc-precise-function-e90e6bab-f45e-45df-b2ac-cd2eb4d4a273"}],functionParameter:{x:{name:"x",detail:"The lower bound for integrating ERFC.PRECISE."}}},GESTEP:{description:"Tests whether a number is greater than a threshold value",abstract:"Tests whether a number is greater than a threshold value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gestep-function-f37e7d2a-41da-4129-be95-640883fca9df"}],functionParameter:{number:{name:"number",detail:"The value to test against step."},step:{name:"step",detail:"The threshold value. If you omit a value for step, GESTEP uses zero."}}},HEX2BIN:{description:"Converts a hexadecimal number to binary",abstract:"Converts a hexadecimal number to binary",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hex2bin-function-a13aafaa-5737-4920-8424-643e581828c1"}],functionParameter:{number:{name:"number",detail:"The hexadecimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},HEX2DEC:{description:"Converts a hexadecimal number to decimal",abstract:"Converts a hexadecimal number to decimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hex2dec-function-8c8c3155-9f37-45a5-a3ee-ee5379ef106e"}],functionParameter:{number:{name:"number",detail:"The hexadecimal number you want to convert."}}},HEX2OCT:{description:"Converts a hexadecimal number to octal",abstract:"Converts a hexadecimal number to octal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hex2oct-function-54d52808-5d19-4bd0-8a63-1096a5d11912"}],functionParameter:{number:{name:"number",detail:"The hexadecimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},IMABS:{description:"Returns the absolute value (modulus) of a complex number",abstract:"Returns the absolute value (modulus) of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imabs-function-b31e73c6-d90c-4062-90bc-8eb351d765a1"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the absolute value."}}},IMAGINARY:{description:"Returns the imaginary coefficient of a complex number",abstract:"Returns the imaginary coefficient of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imaginary-function-dd5952fd-473d-44d9-95a1-9a17b23e428a"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the imaginary coefficient."}}},IMARGUMENT:{description:"Returns the argument theta, an angle expressed in radians",abstract:"Returns the argument theta, an angle expressed in radians",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imargument-function-eed37ec1-23b3-4f59-b9f3-d340358a034a"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the argument theta."}}},IMCONJUGATE:{description:"Returns the complex conjugate of a complex number",abstract:"Returns the complex conjugate of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imconjugate-function-2e2fc1ea-f32b-4f9b-9de6-233853bafd42"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the conjugate."}}},IMCOS:{description:"Returns the cosine of a complex number",abstract:"Returns the cosine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcos-function-dad75277-f592-4a6b-ad6c-be93a808a53c"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the cosine."}}},IMCOSH:{description:"Returns the hyperbolic cosine of a complex number",abstract:"Returns the hyperbolic cosine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcosh-function-053e4ddb-4122-458b-be9a-457c405e90ff"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic cosine."}}},IMCOT:{description:"Returns the cotangent of a complex number",abstract:"Returns the cotangent of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcot-function-dc6a3607-d26a-4d06-8b41-8931da36442c"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the cotangent."}}},IMCOTH:{description:"Returns the hyperbolic cotangent of a complex number",abstract:"Returns the hyperbolic cotangent of a complex number",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9366256?hl=en&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic cotangent."}}},IMCSC:{description:"Returns the cosecant of a complex number",abstract:"Returns the cosecant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcsc-function-9e158d8f-2ddf-46cd-9b1d-98e29904a323"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the cosecant."}}},IMCSCH:{description:"Returns the hyperbolic cosecant of a complex number",abstract:"Returns the hyperbolic cosecant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcsch-function-c0ae4f54-5f09-4fef-8da0-dc33ea2c5ca9"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic cosecant."}}},IMDIV:{description:"Returns the quotient of two complex numbers",abstract:"Returns the quotient of two complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imdiv-function-a505aff7-af8a-4451-8142-77ec3d74d83f"}],functionParameter:{inumber1:{name:"inumber1",detail:"The complex numerator or dividend."},inumber2:{name:"inumber2",detail:"The complex denominator or divisor."}}},IMEXP:{description:"Returns the exponential of a complex number",abstract:"Returns the exponential of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imexp-function-c6f8da1f-e024-4c0c-b802-a60e7147a95f"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the exponential."}}},IMLN:{description:"Returns the natural logarithm of a complex number",abstract:"Returns the natural logarithm of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imln-function-32b98bcf-8b81-437c-a636-6fb3aad509d8"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the natural logarithm."}}},IMLOG:{description:"Returns the logarithm of a complex number for a specified base",abstract:"Returns the logarithm of a complex number for a specified base",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9366486?hl=zh-Hans&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number whose logarithm to a specific base needs to be calculated."},base:{name:"base",detail:"The base to use when calculating the logarithm."}}},IMLOG10:{description:"Returns the base-10 logarithm of a complex number",abstract:"Returns the base-10 logarithm of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imlog10-function-58200fca-e2a2-4271-8a98-ccd4360213a5"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the common logarithm."}}},IMLOG2:{description:"Returns the base-2 logarithm of a complex number",abstract:"Returns the base-2 logarithm of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imlog2-function-152e13b4-bc79-486c-a243-e6a676878c51"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the base-2 logarithm."}}},IMPOWER:{description:"Returns a complex number raised to an integer power",abstract:"Returns a complex number raised to an integer power",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/impower-function-210fd2f5-f8ff-4c6a-9d60-30e34fbdef39"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number you want to raise to a power."},number:{name:"number",detail:"The power to which you want to raise the complex number."}}},IMPRODUCT:{description:"Returns the product of from 2 to 255 complex numbers",abstract:"Returns the product of from 2 to 255 complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/improduct-function-2fb8651a-a4f2-444f-975e-8ba7aab3a5ba"}],functionParameter:{inumber1:{name:"inumber1",detail:"1 to 255 complex numbers to multiply."},inumber2:{name:"inumber2",detail:"1 to 255 complex numbers to multiply."}}},IMREAL:{description:"Returns the real coefficient of a complex number",abstract:"Returns the real coefficient of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imreal-function-d12bc4c0-25d0-4bb3-a25f-ece1938bf366"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the real coefficient."}}},IMSEC:{description:"Returns the secant of a complex number",abstract:"Returns the secant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsec-function-6df11132-4411-4df4-a3dc-1f17372459e0"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the secant."}}},IMSECH:{description:"Returns the hyperbolic secant of a complex number",abstract:"Returns the hyperbolic secant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsech-function-f250304f-788b-4505-954e-eb01fa50903b"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic secant."}}},IMSIN:{description:"Returns the sine of a complex number",abstract:"Returns the sine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsin-function-1ab02a39-a721-48de-82ef-f52bf37859f6"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the sine."}}},IMSINH:{description:"Returns the hyperbolic sine of a complex number",abstract:"Returns the hyperbolic sine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsinh-function-dfb9ec9e-8783-4985-8c42-b028e9e8da3d"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic sine."}}},IMSQRT:{description:"Returns the square root of a complex number",abstract:"Returns the square root of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsqrt-function-e1753f80-ba11-4664-a10e-e17368396b70"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the square root."}}},IMSUB:{description:"Returns the difference between two complex numbers",abstract:"Returns the difference between two complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsub-function-2e404b4d-4935-4e85-9f52-cb08b9a45054"}],functionParameter:{inumber1:{name:"inumber1",detail:"inumber1."},inumber2:{name:"inumber2",detail:"inumber2."}}},IMSUM:{description:"Returns the sum of complex numbers",abstract:"Returns the sum of complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsum-function-81542999-5f1c-4da6-9ffe-f1d7aaa9457f"}],functionParameter:{inumber1:{name:"inumber1",detail:"1 to 255 complex numbers to add."},inumber2:{name:"inumber2",detail:"1 to 255 complex numbers to add."}}},IMTAN:{description:"Returns the tangent of a complex number",abstract:"Returns the tangent of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imtan-function-8478f45d-610a-43cf-8544-9fc0b553a132"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the tangent."}}},IMTANH:{description:"Returns the hyperbolic tangent of a complex number",abstract:"Returns the hyperbolic tangent of a complex number",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9366655?hl=en&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic tangent."}}},OCT2BIN:{description:"Converts an octal number to binary",abstract:"Converts an octal number to binary",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oct2bin-function-55383471-3c56-4d27-9522-1a8ec646c589"}],functionParameter:{number:{name:"number",detail:"The octal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},OCT2DEC:{description:"Converts an octal number to decimal",abstract:"Converts an octal number to decimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oct2dec-function-87606014-cb98-44b2-8dbb-e48f8ced1554"}],functionParameter:{number:{name:"number",detail:"The octal number you want to convert."}}},OCT2HEX:{description:"Converts an octal number to hexadecimal",abstract:"Converts an octal number to hexadecimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oct2hex-function-912175b4-d497-41b4-a029-221f051b858f"}],functionParameter:{number:{name:"number",detail:"The octal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}}},...{CUBEKPIMEMBER:{description:"Returns a key performance indicator (KPI) property and displays the KPI name in the cell. A KPI is a quantifiable measurement, such as monthly gross profit or quarterly employee turnover, that is used to monitor an organization's performance.",abstract:"Returns a key performance indicator (KPI) property and displays the KPI name in the cell. A KPI is a quantifiable measurement, such as monthly gross profit or quarterly employee turnover, that is used to monitor an organization's performance.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubekpimember-function-744608bf-2c62-42cd-b67a-a56109f4b03b"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBEMEMBER:{description:"Returns a member or tuple from the cube. Use to validate that the member or tuple exists in the cube.",abstract:"Returns a member or tuple from the cube. Use to validate that the member or tuple exists in the cube.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubemember-function-0f6a15b9-2c18-4819-ae89-e1b5c8b398ad"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBEMEMBERPROPERTY:{description:"Returns the value of a member property from the cube. Use to validate that a member name exists within the cube and to return the specified property for this member.",abstract:"Returns the value of a member property from the cube. Use to validate that a member name exists within the cube and to return the specified property for this member.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubememberproperty-function-001e57d6-b35a-49e5-abcd-05ff599e8951"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBERANKEDMEMBER:{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 the top 10 students.",abstract:"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 the top 10 students.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cuberankedmember-function-07efecde-e669-4075-b4bf-6b40df2dc4b3"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBESET:{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 Excel.",abstract:"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 Excel.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubeset-function-5b2146bd-62d6-4d04-9d8f-670e993ee1d9"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBESETCOUNT:{description:"Returns the number of items in a set.",abstract:"Returns the number of items in a set.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubesetcount-function-c4c2a438-c1ff-4061-80fe-982f2d705286"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBEVALUE:{description:"Returns an aggregated value from the cube.",abstract:"Returns an aggregated value from the cube.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubevalue-function-8733da24-26d1-4e34-9b3a-84a8f00dcbe0"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}}},...{BETADIST:{description:"Returns the beta cumulative distribution function",abstract:"Returns the beta cumulative distribution function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/betadist-function-49f1b9a9-a5da-470f-8077-5f1730b5fd47"}],functionParameter:{x:{name:"x",detail:"The value between A and B at which to evaluate the function."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},A:{name:"A",detail:"A lower bound to the interval of x."},B:{name:"B",detail:"An upper bound to the interval of x."}}},BETAINV:{description:"Returns the inverse of the cumulative distribution function for a specified beta distribution",abstract:"Returns the inverse of the cumulative distribution function for a specified beta distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/betainv-function-8b914ade-b902-43c1-ac9c-c05c54f10d6c"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the beta distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},A:{name:"A",detail:"A lower bound to the interval of x."},B:{name:"B",detail:"An upper bound to the interval of x."}}},BINOMDIST:{description:"Returns the individual term binomial distribution probability",abstract:"Returns the individual term binomial distribution probability",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/binomdist-function-506a663e-c4ca-428d-b9a8-05583d68789c"}],functionParameter:{numberS:{name:"number_s",detail:"The number of successes in trials."},trials:{name:"trials",detail:"The number of independent trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, BINOMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},CHIDIST:{description:"Returns the right-tailed probability of the chi-squared distribution.",abstract:"Returns the right-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chidist-function-c90d0fbc-5b56-4f5f-ab57-34af1bf6897e"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHIINV:{description:"Returns the inverse of the right-tailed probability of the chi-squared distribution.",abstract:"Returns the inverse of the right-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chiinv-function-cfbea3f6-6e4f-40c9-a87f-20472e0512af"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the chi-squared distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHITEST:{description:"Returns the test for independence",abstract:"Returns the test for independence",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chitest-function-981ff871-b694-4134-848e-38ec704577ac"}],functionParameter:{actualRange:{name:"actual_range",detail:"The range of data that contains observations to test against expected values."},expectedRange:{name:"expected_range",detail:"The range of data that contains the ratio of the product of row totals and column totals to the grand total."}}},CONFIDENCE:{description:"Returns the confidence interval for a population mean, using a normal distribution.",abstract:"Returns the confidence interval for a population mean, using a normal distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/confidence-function-75ccc007-f77c-4343-bc14-673642091ad6"}],functionParameter:{alpha:{name:"alpha",detail:"The significance level used to compute the confidence level. The confidence level equals 100*(1 - alpha)%, or in other words, an alpha of 0.05 indicates a 95 percent confidence level."},standardDev:{name:"standard_dev",detail:"The population standard deviation for the data range and is assumed to be known."},size:{name:"size",detail:"The sample size."}}},COVAR:{description:"Returns population covariance, the average of the products of deviations for each data point pair in two data sets.",abstract:"Returns population covariance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/covar-function-50479552-2c03-4daf-bd71-a5ab88b2db03"}],functionParameter:{array1:{name:"array1",detail:"A first range of cell values."},array2:{name:"array2",detail:"A second range of cell values."}}},CRITBINOM:{description:"Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",abstract:"Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/critbinom-function-eb6b871d-796b-4d21-b69b-e4350d5f407b"}],functionParameter:{trials:{name:"trials",detail:"The number of Bernoulli trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},alpha:{name:"alpha",detail:"The criterion value."}}},EXPONDIST:{description:"Returns the exponential distribution",abstract:"Returns the exponential distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/expondist-function-68ab45fd-cd6d-4887-9770-9357eb8ee06a"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},lambda:{name:"lambda",detail:"The parameter value."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, EXPONDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},FDIST:{description:"Returns the (right-tailed) F probability distribution",abstract:"Returns the (right-tailed) F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fdist-function-ecf76fba-b3f1-4e7d-a57e-6a5b7460b786"}],functionParameter:{x:{name:"x",detail:"The value at which to evaluate the function."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},FINV:{description:"Returns the inverse of the (right-tailed) F probability distribution",abstract:"Returns the inverse of the (right-tailed) F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/finv-function-4d46c97c-c368-4852-bc15-41e8e31140b1"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the F cumulative distribution."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},FTEST:{description:"Returns the result of an F-test",abstract:"Returns the result of an F-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ftest-function-4c9e1202-53fe-428c-a737-976f6fc3f9fd"}],functionParameter:{array1:{name:"array1",detail:"The first array or range of data."},array2:{name:"array2",detail:"The second array or range of data."}}},GAMMADIST:{description:"Returns the gamma distribution",abstract:"Returns the gamma distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gammadist-function-7327c94d-0f05-4511-83df-1dd7ed23e19e"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, GAMMADIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},GAMMAINV:{description:"Returns the inverse of the gamma cumulative distribution",abstract:"Returns the inverse of the gamma cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gammainv-function-06393558-37ab-47d0-aa63-432f99e7916d"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the gamma distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."}}},HYPGEOMDIST:{description:"Returns the hypergeometric distribution",abstract:"Returns the hypergeometric distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hypgeomdist-function-23e37961-2871-4195-9629-d0b2c108a12e"}],functionParameter:{sampleS:{name:"sample_s",detail:"The number of successes in the sample."},numberSample:{name:"number_sample",detail:"The size of the sample."},populationS:{name:"population_s",detail:"The number of successes in the population."},numberPop:{name:"number_pop",detail:"The population size."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, HYPGEOMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},LOGINV:{description:"Returns the inverse of the lognormal cumulative distribution function",abstract:"Returns the inverse of the lognormal cumulative distribution function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/loginv-function-0bd7631a-2725-482b-afb4-de23df77acfe"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the lognormal distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},LOGNORMDIST:{description:"Returns the cumulative lognormal distribution",abstract:"Returns the cumulative lognormal distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lognormdist-function-f8d194cb-9ee3-4034-8c75-1bdb3884100b"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, LOGNORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},MODE:{description:"Returns the most common value in a data set",abstract:"Returns the most common value in a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mode-function-e45192ce-9122-4980-82ed-4bdc34973120"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want calculate the mode."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want calculate the mode, up to a maximum of 255."}}},NEGBINOMDIST:{description:"Returns the negative binomial distribution",abstract:"Returns the negative binomial distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/negbinomdist-function-f59b0a37-bae2-408d-b115-a315609ba714"}],functionParameter:{numberF:{name:"number_f",detail:"The number of failures."},numberS:{name:"number_s",detail:"The threshold number of successes."},probabilityS:{name:"probability_s",detail:"The probability of a success."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NEGBINOMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORMDIST:{description:"Returns the normal cumulative distribution",abstract:"Returns the normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/normdist-function-126db625-c53e-4591-9a22-c9ff422d6d58"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NORMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORMINV:{description:"Returns the inverse of the normal cumulative distribution",abstract:"Returns the inverse of the normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norminv-function-87981ab8-2de0-4cb0-b1aa-e21d4cb879b8"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the normal distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},NORMSDIST:{description:"Returns the standard normal cumulative distribution",abstract:"Returns the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/normsdist-function-463369ea-0345-445d-802a-4ff0d6ce7cac"}],functionParameter:{z:{name:"z",detail:"The value for which you want the distribution."}}},NORMSINV:{description:"Returns the inverse of the standard normal cumulative distribution",abstract:"Returns the inverse of the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/normsinv-function-8d1bce66-8e4d-4f3b-967c-30eed61f019d"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the normal distribution."}}},PERCENTILE:{description:"Returns the k-th percentile of values in a data set (Includes 0 and 1)",abstract:"Returns the k-th percentile of values in a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentile-function-91b43a53-543c-4708-93de-d626debdddca"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},k:{name:"k",detail:"The percentile value in the range 0 and 1 (Includes 0 and 1)."}}},PERCENTRANK:{description:"Returns the percentage rank of a value in a data set (Includes 0 and 1)",abstract:"Returns the percentage rank of a value in a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentrank-function-f1b5836c-9619-4847-9fc9-080ec9024442"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},x:{name:"x",detail:"The value for which you want to know the rank."},significance:{name:"significance",detail:"A value that identifies the number of significant digits for the returned percentage value. If omitted, PERCENTRANK.INC uses three digits (0.xxx)."}}},POISSON:{description:"Returns the Poisson distribution",abstract:"Returns the Poisson distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/poisson-function-d81f7294-9d7c-4f75-bc23-80aa8624173a"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, POISSON returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},QUARTILE:{description:"Returns the quartile of a data set (Includes 0 and 1)",abstract:"Returns the quartile of a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/quartile-function-93cf8f62-60cd-4fdb-8a92-8451041e1a2a"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want quartile values."},quart:{name:"quart",detail:"The quartile value to return."}}},RANK:{description:"Returns the rank of a number in a list of numbers",abstract:"Returns the rank of a number in a list of numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rank-function-6a2fc49d-1831-4a03-9d8c-c279cf99f723"}],functionParameter:{number:{name:"number",detail:"The number whose rank you want to find."},ref:{name:"ref",detail:"A reference to a list of numbers. Nonnumeric values in ref are ignored."},order:{name:"order",detail:"A number specifying how to rank number. If order is 0 (zero) or omitted, Microsoft Excel ranks number as if ref were a list sorted in descending order. If order is any nonzero value, Microsoft Excel ranks number as if ref were a list sorted in ascending order."}}},STDEV:{description:"Estimates standard deviation based on a sample. The standard deviation is a measure of how widely values are dispersed from the average value (the mean).",abstract:"Estimates standard deviation based on a sample",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdev-function-51fecaaa-231e-4bbb-9230-33650a72c9b0"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a sample of a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STDEVP:{description:"Calculates standard deviation based on the entire population given as arguments.",abstract:"Calculates standard deviation based on the entire population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdevp-function-1f7c1c88-1bec-4422-8242-e9f7dc8bb195"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},TDIST:{description:"Returns the probability for the Student t-distribution",abstract:"Returns the probability for the Student t-distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tdist-function-630a7695-4021-4853-9468-4a1f9dcdd192"}],functionParameter:{x:{name:"x",detail:"The numeric value at which to evaluate the distribution."},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."},tails:{name:"tails",detail:"Specifies the number of distribution tails to return. If Tails = 1, TDIST returns the one-tailed distribution. If Tails = 2, TDIST returns the two-tailed distribution."}}},TINV:{description:"Returns the inverse of the probability for the Student t-distribution (two-tailed)",abstract:"Returns the inverse of the probability for the Student t-distribution (two-tailed)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tinv-function-a7c85b9d-90f5-41fe-9ca5-1cd2f3e1ed7c"}],functionParameter:{probability:{name:"probability",detail:"The probability associated with the Student's t-distribution."},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},TTEST:{description:"Returns the probability associated with a Student's t-test",abstract:"Returns the probability associated with a Student's t-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ttest-function-1696ffc1-4811-40fd-9d13-a0eaad83c7ae"}],functionParameter:{array1:{name:"array1",detail:"The first array or range of data."},array2:{name:"array2",detail:"The second array or range of data."},tails:{name:"tails",detail:"Specifies the number of distribution tails. If tails = 1, TTEST uses the one-tailed distribution. If tails = 2, TTEST uses the two-tailed distribution."},type:{name:"type",detail:"The kind of t-Test to perform."}}},VAR:{description:"Estimates variance based on a sample.",abstract:"Estimates variance based on a sample",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/var-function-1f2b7ab2-954d-4e17-ba2c-9e58b15a7da2"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a sample of a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a sample of a population."}}},VARP:{description:"Calculates variance based on the entire population.",abstract:"Calculates variance based on the entire population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/varp-function-26a541c4-ecee-464d-a731-bd4c575b1a6b"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a population."}}},WEIBULL:{description:"Returns the Weibull distribution",abstract:"Returns the Weibull distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/weibull-function-b83dc2c6-260b-4754-bef2-633196f6fdcc"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, WEIBULL returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},ZTEST:{description:"Returns the one-tailed probability-value of a z-test",abstract:"Returns the one-tailed probability-value of a z-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ztest-function-8f33be8a-6bd6-4ecc-8e3a-d9a4420c4a6a"}],functionParameter:{array:{name:"array",detail:"The array or range of data against which to test x."},x:{name:"x",detail:"The value to test."},sigma:{name:"sigma",detail:"The population (known) standard deviation. If omitted, the sample standard deviation is used."}}}},...{ENCODEURL:{description:"Returns a URL-encoded string",abstract:"Returns a URL-encoded string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/encodeurl-function-07c7fb90-7c60-4bff-8687-fac50fe33d0e"}],functionParameter:{text:{name:"text",detail:"A string to be URL encoded"}}},FILTERXML:{description:"Returns specific data from the XML content by using the specified XPath",abstract:"Returns specific data from the XML content by using the specified XPath",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/filterxml-function-4df72efc-11ec-4951-86f5-c1374812f5b7"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},WEBSERVICE:{description:"Returns data from a web service",abstract:"Returns data from a web service",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/webservice-function-0546a35a-ecc6-4739-aed7-c0b7ce1562c4"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}}},...{ARRAY_CONSTRAIN:{description:"Constrains an array result to a specified size.",abstract:"Constrains an array result to a specified size.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3267036?hl=en&sjid=8484774178571403392-AP"}],functionParameter:{inputRange:{name:"input_range",detail:"The range to constrain."},numRows:{name:"num_rows",detail:"The number of rows the result should contain."},numCols:{name:"num_cols",detail:"The number of columns the result should contain"}}},FLATTEN:{description:"Flattens all the values from one or more ranges into a single column.",abstract:"Flattens all the values from one or more ranges into a single column.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/10307761?hl=zh-Hans&sjid=17375453483079636084-AP"}],functionParameter:{range1:{name:"range1",detail:"The first range to flatten."},range2:{name:"range2",detail:"Additional ranges to flatten."}}}},...{}},prompt:{helpExample:"EXEMPLE",helpAbstract:"À PROPOS",required:"Requis.",optional:"Optionnel."},error:{title:"Erreur",divByZero:"Erreur de division par zéro",name:"Erreur de nom invalide",value:"Erreur de valeur",num:"Erreur de nombre",na:"Erreur de valeur non disponible",cycle:"Erreur de référence circulaire",ref:"Erreur de référence de cellule invalide",spill:"La plage de débordement n'est pas vide",calc:"Erreur de calcul",error:"Erreur",connect:"Récupération des données",null:"Erreur nulle"},functionType:{financial:"Financier",date:"Date & Heure",math:"Math & Trigo",statistical:"Statistique",lookup:"Recherche & Référence",database:"Base de données",text:"Texte",logical:"Logique",information:"Information",engineering:"Ingénierie",cube:"Cube",compatibility:"Compatibilité",web:"Web",array:"Tableau",univer:"Univer",user:"Définies par l'utilisateur",definedname:"Nom défini"},moreFunctions:{confirm:"Confirmer",prev:"Précédent",next:"Suivant",searchFunctionPlaceholder:"Rechercher une fonction",allFunctions:"Toutes les fonctions",syntax:"SYNTAXE"},operation:{pasteFormula:"Coller la formule"}}}});
|
|
69
|
+
2.A third name to assign to a third name_value. If a name is specified, name_value3 and calculation_or_name4 become required.`}}},MAKEARRAY:{description:"Returns a calculated array of a specified row and column size, by applying a LAMBDA",abstract:"Returns a calculated array of a specified row and column size, by applying a LAMBDA",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/makearray-function-b80da5ad-b338-4149-a523-5b221da09097"}],functionParameter:{number1:{name:"rows",detail:"The number of rows in the array. Must be greater than zero."},number2:{name:"cols",detail:"The number of columns in the array. Must be greater than zero."},value3:{name:"lambda",detail:" A LAMBDA that is called to create the array. The LAMBDA takes two parameters: row (The row index of the array), col (The column index of the array)."}}},MAP:{description:"Returns an array formed by mapping each value in the array(s) to a new value by applying a LAMBDA to create a new value.",abstract:"Returns an array formed by mapping each value in the array(s) to a new value by applying a LAMBDA to create a new value.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/map-function-48006093-f97c-47c1-bfcc-749263bb1f01"}],functionParameter:{array1:{name:"array1",detail:"An array1 to be mapped."},array2:{name:"array2",detail:"An array2 to be mapped."},lambda:{name:"lambda",detail:"A LAMBDA which must be the last argument and which must have either a parameter for each array passed."}}},NOT:{description:"Reverses the logic of its argument.",abstract:"Reverses the logic of its argument.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/not-function-9cfc6011-a054-40c7-a140-cd4ba2d87d77"}],functionParameter:{logical:{name:"logical",detail:"The condition that you want to reverse the logic for, which can evaluate to either TRUE or FALSE."}}},OR:{description:"Returns TRUE if any of its arguments evaluate to TRUE, and returns FALSE if all of its arguments evaluate to FALSE.",abstract:"Returns TRUE if any argument is TRUE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/or-function-7d17ad14-8700-4281-b308-00b131e22af0"}],functionParameter:{logical1:{name:"logical1",detail:"The first condition that you want to test that can evaluate to either TRUE or FALSE."},logical2:{name:"logical2",detail:"Additional conditions that you want to test that can evaluate to either TRUE or FALSE, up to a maximum of 255 conditions."}}},REDUCE:{description:"Reduces an array to an accumulated value by applying a LAMBDA to each value and returning the total value in the accumulator. ",abstract:"Reduces an array to an accumulated value by applying a LAMBDA to each value and returning the total value in the accumulator. ",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/reduce-function-42e39910-b345-45f3-84b8-0642b568b7cb"}],functionParameter:{initialValue:{name:"initial_value",detail:"Sets the starting value for the accumulator."},array:{name:"array",detail:"An array to be reduced."},lambda:{name:"lambda",detail:"A LAMBDA that is called to reduce the array. The LAMBDA takes three parameters: 1.The value totaled up and returned as the final result. 2.The current value from the array. 3.The calculation applied to each element in the array."}}},SCAN:{description:"Scans an array by applying a LAMBDA to each value and returns an array that has each intermediate value.",abstract:"Scans an array by applying a LAMBDA to each value and returns an array that has each intermediate value.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/scan-function-d58dfd11-9969-4439-b2dc-e7062724de29"}],functionParameter:{initialValue:{name:"initial_value",detail:"Sets the starting value for the accumulator."},array:{name:"array",detail:"An array to be scanned."},lambda:{name:"lambda",detail:"A LAMBDA that is called to scanned the array. The LAMBDA takes three parameters: 1.The value totaled up and returned as the final result. 2.The current value from the array. 3.The calculation applied to each element in the array."}}},SWITCH:{description:"Evaluates an expression against a list of values and returns the result corresponding to the first matching value. If there is no match, an optional default value may be returned.",abstract:"Evaluates an expression against a list of values and returns the result corresponding to the first matching value. If there is no match, an optional default value may be returned.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/switch-function-47ab33c0-28ce-4530-8a45-d532ec4aa25e"}],functionParameter:{expression:{name:"expression",detail:"Expression is the value (such as a number, date or some text) that will be compared against value1…value126."},value1:{name:"value1",detail:"ValueN is a value that will be compared against expression."},result1:{name:"result1",detail:"ResultN is the value to be returned when the corresponding valueN argument matches expression. ResultN and must be supplied for each corresponding valueN argument."},defaultOrValue2:{name:"default_or_value2",detail:"Default is the value to return in case no matches are found in the valueN expressions. The Default argument is identified by having no corresponding resultN expression (see examples). Default must be the final argument in the function."},result2:{name:"result2",detail:"ResultN is the value to be returned when the corresponding valueN argument matches expression. ResultN and must be supplied for each corresponding valueN argument."}}},TRUE:{description:"Returns the logical value TRUE.",abstract:"Returns the logical value TRUE.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/true-function-7652c6e3-8987-48d0-97cd-ef223246b3fb"}],functionParameter:{}},XOR:{description:"Returns TRUE if an odd number of its arguments evaluate to TRUE, and FALSE if an even number of its arguments evaluate to TRUE.",abstract:"Returns TRUE if an odd number of arguments are TRUE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/xor-function-1548d4c2-5e47-4f77-9a92-0533bba14f37"}],functionParameter:{logical1:{name:"logical1",detail:"The first condition that you want to test that can evaluate to either TRUE or FALSE."},logical2:{name:"logical2",detail:"Additional conditions that you want to test that can evaluate to either TRUE or FALSE, up to a maximum of 255 conditions."}}}},...{CELL:{description:"Returns information about the formatting, location, or contents of a cell",abstract:"Returns information about the formatting, location, or contents of a cell",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cell-function-51bd39a5-f338-4dbe-a33f-955d67c2b2cf"}],functionParameter:{infoType:{name:"info_type",detail:"A text value that specifies what type of cell information you want to return."},reference:{name:"reference",detail:"The cell that you want information about."}}},ERROR_TYPE:{description:"Returns a number corresponding to an error type",abstract:"Returns a number corresponding to an error type",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/error-type-function-10958677-7c8d-44f7-ae77-b9a9ee6eefaa"}],functionParameter:{errorVal:{name:"error_val",detail:"The error value whose identifying number you want to find."}}},INFO:{description:"Returns information about the current operating environment",abstract:"Returns information about the current operating environment",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/info-function-725f259a-0e4b-49b3-8b52-58815c69acae"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},ISBETWEEN:{description:"Checks whether a provided number is between two other numbers either inclusively or exclusively.",abstract:"Checks whether a provided number is between two other numbers either inclusively or exclusively.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/10538337?hl=en&sjid=7730820672019533290-AP"}],functionParameter:{valueToCompare:{name:"value_to_compare",detail:"The value to test as being between `lower_value` and `upper_value`."},lowerValue:{name:"lower_value",detail:"The lower boundary of the range of values that `value_to_compare` can fall within."},upperValue:{name:"upper_value",detail:"The upper boundary of the range of values that `value_to_compare` can fall within."},lowerValueIsInclusive:{name:"lower_value_is_inclusive",detail:"Whether the range of values includes the `lower_value`. By default this is TRUE."},upperValueIsInclusive:{name:"upper_value_is_inclusive",detail:"Whether the range of values includes the `upper_value`. By default this is TRUE."}}},ISBLANK:{description:"Returns TRUE if the value is blank",abstract:"Returns TRUE if the value is blank",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISDATE:{description:"Returns whether a value is a date.",abstract:"Returns whether a value is a date.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9061381?hl=en&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"value",detail:"The value to be verified as a date."}}},ISEMAIL:{description:"Checks if a value is a valid email address",abstract:"Checks if a value is a valid email address",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3256503?hl=en&sjid=2155433538747546473-AP"}],functionParameter:{value:{name:"value",detail:"The value to be verified as an email address."}}},ISERR:{description:"Returns TRUE if the value is any error value except #N/A",abstract:"Returns TRUE if the value is any error value except #N/A",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISERROR:{description:"Returns TRUE if the value is any error value",abstract:"Returns TRUE if the value is any error value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISEVEN:{description:"Returns TRUE if the number is even",abstract:"Returns TRUE if the number is even",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/iseven-function-aa15929a-d77b-4fbb-92f4-2f479af55356"}],functionParameter:{value:{name:"value",detail:"The value to test. If number is not an integer, it is truncated."}}},ISFORMULA:{description:"Returns TRUE if there is a reference to a cell that contains a formula",abstract:"Returns TRUE if there is a reference to a cell that contains a formula",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isformula-function-e4d1355f-7121-4ef2-801e-3839bfd6b1e5"}],functionParameter:{reference:{name:"reference",detail:"Reference is a reference to the cell you want to test."}}},ISLOGICAL:{description:"Returns TRUE if the value is a logical value",abstract:"Returns TRUE if the value is a logical value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISNA:{description:"Returns TRUE if the value is the #N/A error value",abstract:"Returns TRUE if the value is the #N/A error value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISNONTEXT:{description:"Returns TRUE if the value is not text",abstract:"Returns TRUE if the value is not text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISNUMBER:{description:"Returns TRUE if the value is a number",abstract:"Returns TRUE if the value is a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISODD:{description:"Returns TRUE if the number is odd",abstract:"Returns TRUE if the number is odd",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isodd-function-1208a56d-4f10-4f44-a5fc-648cafd6c07a"}],functionParameter:{value:{name:"value",detail:"The value to test. If number is not an integer, it is truncated."}}},ISOMITTED:{description:"Checks whether the value in a LAMBDA is missing and returns TRUE or FALSE",abstract:"Checks whether the value in a LAMBDA is missing and returns TRUE or FALSE",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/isomitted-function-831d6fbc-0f07-40c4-9c5b-9c73fd1d60c1"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},ISREF:{description:"Returns TRUE if the value is a reference",abstract:"Returns TRUE if the value is a reference",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISTEXT:{description:"Returns TRUE if the value is text",abstract:"Returns TRUE if the value is text",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/is-functions-0f2d7971-6019-40a0-a171-f2d869135665"}],functionParameter:{value:{name:"value",detail:"The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these."}}},ISURL:{description:"Checks whether a value is a valid URL.",abstract:"Checks whether a value is a valid URL.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3256501?hl=en&sjid=7312884847858065932-AP"}],functionParameter:{value:{name:"value",detail:"The value to be verified as a URL."}}},N:{description:"Returns a value converted to a number",abstract:"Returns a value converted to a number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/n-function-a624cad1-3635-4208-b54a-29733d1278c9"}],functionParameter:{value:{name:"value",detail:"The value you want converted."}}},NA:{description:"Returns the error value #N/A",abstract:"Returns the error value #N/A",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/na-function-5469c2d1-a90c-4fb5-9bbc-64bd9bb6b47c"}],functionParameter:{}},SHEET:{description:"Returns the sheet number of the referenced sheet",abstract:"Returns the sheet number of the referenced sheet",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sheet-function-44718b6f-8b87-47a1-a9d6-b701c06cff24"}],functionParameter:{value:{name:"value",detail:"Value is the name of a sheet or a reference for which you want the sheet number. If value is omitted, SHEET returns the number of the sheet that contains the function."}}},SHEETS:{description:"Returns the number of sheets in a workbook",abstract:"Returns the number of sheets in a workbook",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/sheets-function-770515eb-e1e8-45ce-8066-b557e5e4b80b"}],functionParameter:{}},TYPE:{description:"Returns a number indicating the data type of a value",abstract:"Returns a number indicating the data type of a value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/type-function-45b4e688-4bc3-48b3-a105-ffa892995899"}],functionParameter:{value:{name:"value",detail:"Can be any value, such as a number, text, logical value, and so on."}}}},...{BESSELI:{description:"Returns the modified Bessel function In(x)",abstract:"Returns the modified Bessel function In(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/besseli-function-8d33855c-9a8d-444b-98e0-852267b1c0df"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BESSELJ:{description:"Returns the Bessel function Jn(x)",abstract:"Returns the Bessel function Jn(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/besselj-function-839cb181-48de-408b-9d80-bd02982d94f7"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BESSELK:{description:"Returns the modified Bessel function Kn(x)",abstract:"Returns the modified Bessel function Kn(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/besselk-function-606d11bc-06d3-4d53-9ecb-2803e2b90b70"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BESSELY:{description:"Returns the Bessel function Yn(x)",abstract:"Returns the Bessel function Yn(x)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bessely-function-f3a356b3-da89-42c3-8974-2da54d6353a2"}],functionParameter:{x:{name:"X",detail:"The value at which to evaluate the function."},n:{name:"N",detail:"The order of the Bessel function. If n is not an integer, it is truncated."}}},BIN2DEC:{description:"Converts a binary number to decimal",abstract:"Converts a binary number to decimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bin2dec-function-63905b57-b3a0-453d-99f4-647bb519cd6c"}],functionParameter:{number:{name:"number",detail:"The binary number you want to convert."}}},BIN2HEX:{description:"Converts a binary number to hexadecimal",abstract:"Converts a binary number to hexadecimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bin2hex-function-0375e507-f5e5-4077-9af8-28d84f9f41cc"}],functionParameter:{number:{name:"number",detail:"The binary number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},BIN2OCT:{description:"Converts a binary number to octal",abstract:"Converts a binary number to octal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bin2oct-function-0a4e01ba-ac8d-4158-9b29-16c25c4c23fd"}],functionParameter:{number:{name:"number",detail:"The binary number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},BITAND:{description:"Returns a 'Bitwise And' of two numbers",abstract:"Returns a 'Bitwise And' of two numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitand-function-8a2be3d7-91c3-4b48-9517-64548008563a"}],functionParameter:{number1:{name:"number1",detail:"Must be in decimal form and greater than or equal to 0."},number2:{name:"number2",detail:"Must be in decimal form and greater than or equal to 0."}}},BITLSHIFT:{description:"Returns a value number shifted left by shift_amount bits",abstract:"Returns a value number shifted left by shift_amount bits",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitlshift-function-c55bb27e-cacd-4c7c-b258-d80861a03c9c"}],functionParameter:{number:{name:"number",detail:"Number must be an integer greater than or equal to 0."},shiftAmount:{name:"shift_amount",detail:"Shift_amount must be an integer."}}},BITOR:{description:"Returns a bitwise OR of 2 numbers",abstract:"Returns a bitwise OR of 2 numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitor-function-f6ead5c8-5b98-4c9e-9053-8ad5234919b2"}],functionParameter:{number1:{name:"number1",detail:"Must be in decimal form and greater than or equal to 0."},number2:{name:"number2",detail:"Must be in decimal form and greater than or equal to 0."}}},BITRSHIFT:{description:"Returns a value number shifted right by shift_amount bits",abstract:"Returns a value number shifted right by shift_amount bits",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitrshift-function-274d6996-f42c-4743-abdb-4ff95351222c"}],functionParameter:{number:{name:"number",detail:"Number must be an integer greater than or equal to 0."},shiftAmount:{name:"shift_amount",detail:"Shift_amount must be an integer."}}},BITXOR:{description:"Returns a bitwise 'Exclusive Or' of two numbers",abstract:"Returns a bitwise 'Exclusive Or' of two numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/bitxor-function-c81306a1-03f9-4e89-85ac-b86c3cba10e4"}],functionParameter:{number1:{name:"number1",detail:"Must be in decimal form and greater than or equal to 0."},number2:{name:"number2",detail:"Must be in decimal form and greater than or equal to 0."}}},COMPLEX:{description:"Converts real and imaginary coefficients into a complex number",abstract:"Converts real and imaginary coefficients into a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/complex-function-f0b8f3a9-51cc-4d6d-86fb-3a9362fa4128"}],functionParameter:{realNum:{name:"real_num",detail:"The real coefficient of the complex number."},iNum:{name:"i_num",detail:"The imaginary coefficient of the complex number."},suffix:{name:"suffix",detail:'The suffix for the imaginary component of the complex number. If omitted, suffix is assumed to be "i".'}}},CONVERT:{description:"Converts a number from one measurement system to another",abstract:"Converts a number from one measurement system to another",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/convert-function-d785bef1-808e-4aac-bdcd-666c810f9af2"}],functionParameter:{number:{name:"number",detail:"Is the value in from_units to convert."},fromUnit:{name:"from_unit",detail:"Is the units for number."},toUnit:{name:"to_unit",detail:"Is the units for the result."}}},DEC2BIN:{description:"Converts a decimal number to binary",abstract:"Converts a decimal number to binary",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dec2bin-function-0f63dd0e-5d1a-42d8-b511-5bf5c6d43838"}],functionParameter:{number:{name:"number",detail:"The decimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},DEC2HEX:{description:"Converts a decimal number to hexadecimal",abstract:"Converts a decimal number to hexadecimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dec2hex-function-6344ee8b-b6b5-4c6a-a672-f64666704619"}],functionParameter:{number:{name:"number",detail:"The decimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},DEC2OCT:{description:"Converts a decimal number to octal",abstract:"Converts a decimal number to octal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/dec2oct-function-c9d835ca-20b7-40c4-8a9e-d3be351ce00f"}],functionParameter:{number:{name:"number",detail:"The decimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},DELTA:{description:"Tests whether two values are equal",abstract:"Tests whether two values are equal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/delta-function-2f763672-c959-4e07-ac33-fe03220ba432"}],functionParameter:{number1:{name:"number1",detail:"The first number."},number2:{name:"number2",detail:"The second number. If omitted, number2 is assumed to be zero."}}},ERF:{description:"Returns the error function",abstract:"Returns the error function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erf-function-c53c7e7b-5482-4b6c-883e-56df3c9af349"}],functionParameter:{lowerLimit:{name:"lower_limit",detail:"The lower bound for integrating ERF."},upperLimit:{name:"upper_limit",detail:"The upper bound for integrating ERF. If omitted, ERF integrates between zero and lower_limit."}}},ERF_PRECISE:{description:"Returns the error function",abstract:"Returns the error function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erf-precise-function-9a349593-705c-4278-9a98-e4122831a8e0"}],functionParameter:{x:{name:"x",detail:"The lower bound for integrating ERF.PRECISE."}}},ERFC:{description:"Returns the complementary error function",abstract:"Returns the complementary error function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erfc-function-736e0318-70ba-4e8b-8d08-461fe68b71b3"}],functionParameter:{x:{name:"x",detail:"The lower bound for integrating ERFC."}}},ERFC_PRECISE:{description:"Returns the complementary ERF function integrated between x and infinity",abstract:"Returns the complementary ERF function integrated between x and infinity",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/erfc-precise-function-e90e6bab-f45e-45df-b2ac-cd2eb4d4a273"}],functionParameter:{x:{name:"x",detail:"The lower bound for integrating ERFC.PRECISE."}}},GESTEP:{description:"Tests whether a number is greater than a threshold value",abstract:"Tests whether a number is greater than a threshold value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gestep-function-f37e7d2a-41da-4129-be95-640883fca9df"}],functionParameter:{number:{name:"number",detail:"The value to test against step."},step:{name:"step",detail:"The threshold value. If you omit a value for step, GESTEP uses zero."}}},HEX2BIN:{description:"Converts a hexadecimal number to binary",abstract:"Converts a hexadecimal number to binary",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hex2bin-function-a13aafaa-5737-4920-8424-643e581828c1"}],functionParameter:{number:{name:"number",detail:"The hexadecimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},HEX2DEC:{description:"Converts a hexadecimal number to decimal",abstract:"Converts a hexadecimal number to decimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hex2dec-function-8c8c3155-9f37-45a5-a3ee-ee5379ef106e"}],functionParameter:{number:{name:"number",detail:"The hexadecimal number you want to convert."}}},HEX2OCT:{description:"Converts a hexadecimal number to octal",abstract:"Converts a hexadecimal number to octal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hex2oct-function-54d52808-5d19-4bd0-8a63-1096a5d11912"}],functionParameter:{number:{name:"number",detail:"The hexadecimal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},IMABS:{description:"Returns the absolute value (modulus) of a complex number",abstract:"Returns the absolute value (modulus) of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imabs-function-b31e73c6-d90c-4062-90bc-8eb351d765a1"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the absolute value."}}},IMAGINARY:{description:"Returns the imaginary coefficient of a complex number",abstract:"Returns the imaginary coefficient of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imaginary-function-dd5952fd-473d-44d9-95a1-9a17b23e428a"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the imaginary coefficient."}}},IMARGUMENT:{description:"Returns the argument theta, an angle expressed in radians",abstract:"Returns the argument theta, an angle expressed in radians",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imargument-function-eed37ec1-23b3-4f59-b9f3-d340358a034a"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the argument theta."}}},IMCONJUGATE:{description:"Returns the complex conjugate of a complex number",abstract:"Returns the complex conjugate of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imconjugate-function-2e2fc1ea-f32b-4f9b-9de6-233853bafd42"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the conjugate."}}},IMCOS:{description:"Returns the cosine of a complex number",abstract:"Returns the cosine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcos-function-dad75277-f592-4a6b-ad6c-be93a808a53c"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the cosine."}}},IMCOSH:{description:"Returns the hyperbolic cosine of a complex number",abstract:"Returns the hyperbolic cosine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcosh-function-053e4ddb-4122-458b-be9a-457c405e90ff"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic cosine."}}},IMCOT:{description:"Returns the cotangent of a complex number",abstract:"Returns the cotangent of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcot-function-dc6a3607-d26a-4d06-8b41-8931da36442c"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the cotangent."}}},IMCOTH:{description:"Returns the hyperbolic cotangent of a complex number",abstract:"Returns the hyperbolic cotangent of a complex number",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9366256?hl=en&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic cotangent."}}},IMCSC:{description:"Returns the cosecant of a complex number",abstract:"Returns the cosecant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcsc-function-9e158d8f-2ddf-46cd-9b1d-98e29904a323"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the cosecant."}}},IMCSCH:{description:"Returns the hyperbolic cosecant of a complex number",abstract:"Returns the hyperbolic cosecant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imcsch-function-c0ae4f54-5f09-4fef-8da0-dc33ea2c5ca9"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic cosecant."}}},IMDIV:{description:"Returns the quotient of two complex numbers",abstract:"Returns the quotient of two complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imdiv-function-a505aff7-af8a-4451-8142-77ec3d74d83f"}],functionParameter:{inumber1:{name:"inumber1",detail:"The complex numerator or dividend."},inumber2:{name:"inumber2",detail:"The complex denominator or divisor."}}},IMEXP:{description:"Returns the exponential of a complex number",abstract:"Returns the exponential of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imexp-function-c6f8da1f-e024-4c0c-b802-a60e7147a95f"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the exponential."}}},IMLN:{description:"Returns the natural logarithm of a complex number",abstract:"Returns the natural logarithm of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imln-function-32b98bcf-8b81-437c-a636-6fb3aad509d8"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the natural logarithm."}}},IMLOG:{description:"Returns the logarithm of a complex number for a specified base",abstract:"Returns the logarithm of a complex number for a specified base",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9366486?hl=en&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number whose logarithm to a specific base needs to be calculated."},base:{name:"base",detail:"The base to use when calculating the logarithm."}}},IMLOG10:{description:"Returns the base-10 logarithm of a complex number",abstract:"Returns the base-10 logarithm of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imlog10-function-58200fca-e2a2-4271-8a98-ccd4360213a5"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the common logarithm."}}},IMLOG2:{description:"Returns the base-2 logarithm of a complex number",abstract:"Returns the base-2 logarithm of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imlog2-function-152e13b4-bc79-486c-a243-e6a676878c51"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the base-2 logarithm."}}},IMPOWER:{description:"Returns a complex number raised to an integer power",abstract:"Returns a complex number raised to an integer power",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/impower-function-210fd2f5-f8ff-4c6a-9d60-30e34fbdef39"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number you want to raise to a power."},number:{name:"number",detail:"The power to which you want to raise the complex number."}}},IMPRODUCT:{description:"Returns the product of from 1 to 255 complex numbers",abstract:"Returns the product of from 1 to 255 complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/improduct-function-2fb8651a-a4f2-444f-975e-8ba7aab3a5ba"}],functionParameter:{inumber1:{name:"inumber1",detail:"1 to 255 complex numbers to multiply."},inumber2:{name:"inumber2",detail:"1 to 255 complex numbers to multiply."}}},IMREAL:{description:"Returns the real coefficient of a complex number",abstract:"Returns the real coefficient of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imreal-function-d12bc4c0-25d0-4bb3-a25f-ece1938bf366"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the real coefficient."}}},IMSEC:{description:"Returns the secant of a complex number",abstract:"Returns the secant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsec-function-6df11132-4411-4df4-a3dc-1f17372459e0"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the secant."}}},IMSECH:{description:"Returns the hyperbolic secant of a complex number",abstract:"Returns the hyperbolic secant of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsech-function-f250304f-788b-4505-954e-eb01fa50903b"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic secant."}}},IMSIN:{description:"Returns the sine of a complex number",abstract:"Returns the sine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsin-function-1ab02a39-a721-48de-82ef-f52bf37859f6"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the sine."}}},IMSINH:{description:"Returns the hyperbolic sine of a complex number",abstract:"Returns the hyperbolic sine of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsinh-function-dfb9ec9e-8783-4985-8c42-b028e9e8da3d"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic sine."}}},IMSQRT:{description:"Returns the square root of a complex number",abstract:"Returns the square root of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsqrt-function-e1753f80-ba11-4664-a10e-e17368396b70"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the square root."}}},IMSUB:{description:"Returns the difference between two complex numbers",abstract:"Returns the difference between two complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsub-function-2e404b4d-4935-4e85-9f52-cb08b9a45054"}],functionParameter:{inumber1:{name:"inumber1",detail:"inumber1."},inumber2:{name:"inumber2",detail:"inumber2."}}},IMSUM:{description:"Returns the sum of complex numbers",abstract:"Returns the sum of complex numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imsum-function-81542999-5f1c-4da6-9ffe-f1d7aaa9457f"}],functionParameter:{inumber1:{name:"inumber1",detail:"1 to 255 complex numbers to add."},inumber2:{name:"inumber2",detail:"1 to 255 complex numbers to add."}}},IMTAN:{description:"Returns the tangent of a complex number",abstract:"Returns the tangent of a complex number",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/imtan-function-8478f45d-610a-43cf-8544-9fc0b553a132"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the tangent."}}},IMTANH:{description:"Returns the hyperbolic tangent of a complex number",abstract:"Returns the hyperbolic tangent of a complex number",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/9366655?hl=en&sjid=1719420110567985051-AP"}],functionParameter:{inumber:{name:"inumber",detail:"A complex number for which you want the hyperbolic tangent."}}},OCT2BIN:{description:"Converts an octal number to binary",abstract:"Converts an octal number to binary",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oct2bin-function-55383471-3c56-4d27-9522-1a8ec646c589"}],functionParameter:{number:{name:"number",detail:"The octal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}},OCT2DEC:{description:"Converts an octal number to decimal",abstract:"Converts an octal number to decimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oct2dec-function-87606014-cb98-44b2-8dbb-e48f8ced1554"}],functionParameter:{number:{name:"number",detail:"The octal number you want to convert."}}},OCT2HEX:{description:"Converts an octal number to hexadecimal",abstract:"Converts an octal number to hexadecimal",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/oct2hex-function-912175b4-d497-41b4-a029-221f051b858f"}],functionParameter:{number:{name:"number",detail:"The octal number you want to convert."},places:{name:"places",detail:"The number of characters to use."}}}},...{CUBEKPIMEMBER:{description:"Returns a key performance indicator (KPI) property and displays the KPI name in the cell. A KPI is a quantifiable measurement, such as monthly gross profit or quarterly employee turnover, that is used to monitor an organization's performance.",abstract:"Returns a key performance indicator (KPI) property and displays the KPI name in the cell. A KPI is a quantifiable measurement, such as monthly gross profit or quarterly employee turnover, that is used to monitor an organization's performance.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubekpimember-function-744608bf-2c62-42cd-b67a-a56109f4b03b"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBEMEMBER:{description:"Returns a member or tuple from the cube. Use to validate that the member or tuple exists in the cube.",abstract:"Returns a member or tuple from the cube. Use to validate that the member or tuple exists in the cube.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubemember-function-0f6a15b9-2c18-4819-ae89-e1b5c8b398ad"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBEMEMBERPROPERTY:{description:"Returns the value of a member property from the cube. Use to validate that a member name exists within the cube and to return the specified property for this member.",abstract:"Returns the value of a member property from the cube. Use to validate that a member name exists within the cube and to return the specified property for this member.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubememberproperty-function-001e57d6-b35a-49e5-abcd-05ff599e8951"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBERANKEDMEMBER:{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 the top 10 students.",abstract:"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 the top 10 students.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cuberankedmember-function-07efecde-e669-4075-b4bf-6b40df2dc4b3"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBESET:{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 Excel.",abstract:"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 Excel.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubeset-function-5b2146bd-62d6-4d04-9d8f-670e993ee1d9"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBESETCOUNT:{description:"Returns the number of items in a set.",abstract:"Returns the number of items in a set.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubesetcount-function-c4c2a438-c1ff-4061-80fe-982f2d705286"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},CUBEVALUE:{description:"Returns an aggregated value from the cube.",abstract:"Returns an aggregated value from the cube.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/cubevalue-function-8733da24-26d1-4e34-9b3a-84a8f00dcbe0"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}}},...{BETADIST:{description:"Returns the beta cumulative distribution function",abstract:"Returns the beta cumulative distribution function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/betadist-function-49f1b9a9-a5da-470f-8077-5f1730b5fd47"}],functionParameter:{x:{name:"x",detail:"The value between A and B at which to evaluate the function."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},A:{name:"A",detail:"A lower bound to the interval of x."},B:{name:"B",detail:"An upper bound to the interval of x."}}},BETAINV:{description:"Returns the inverse of the cumulative distribution function for a specified beta distribution",abstract:"Returns the inverse of the cumulative distribution function for a specified beta distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/betainv-function-8b914ade-b902-43c1-ac9c-c05c54f10d6c"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the beta distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},A:{name:"A",detail:"A lower bound to the interval of x."},B:{name:"B",detail:"An upper bound to the interval of x."}}},BINOMDIST:{description:"Returns the individual term binomial distribution probability",abstract:"Returns the individual term binomial distribution probability",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/binomdist-function-506a663e-c4ca-428d-b9a8-05583d68789c"}],functionParameter:{numberS:{name:"number_s",detail:"The number of successes in trials."},trials:{name:"trials",detail:"The number of independent trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, BINOMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},CHIDIST:{description:"Returns the right-tailed probability of the chi-squared distribution.",abstract:"Returns the right-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chidist-function-c90d0fbc-5b56-4f5f-ab57-34af1bf6897e"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHIINV:{description:"Returns the inverse of the right-tailed probability of the chi-squared distribution.",abstract:"Returns the inverse of the right-tailed probability of the chi-squared distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chiinv-function-cfbea3f6-6e4f-40c9-a87f-20472e0512af"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the chi-squared distribution."},degFreedom:{name:"deg_freedom",detail:"The number of degrees of freedom."}}},CHITEST:{description:"Returns the test for independence",abstract:"Returns the test for independence",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/chitest-function-981ff871-b694-4134-848e-38ec704577ac"}],functionParameter:{actualRange:{name:"actual_range",detail:"The range of data that contains observations to test against expected values."},expectedRange:{name:"expected_range",detail:"The range of data that contains the ratio of the product of row totals and column totals to the grand total."}}},CONFIDENCE:{description:"Returns the confidence interval for a population mean, using a normal distribution.",abstract:"Returns the confidence interval for a population mean, using a normal distribution.",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/confidence-function-75ccc007-f77c-4343-bc14-673642091ad6"}],functionParameter:{alpha:{name:"alpha",detail:"The significance level used to compute the confidence level. The confidence level equals 100*(1 - alpha)%, or in other words, an alpha of 0.05 indicates a 95 percent confidence level."},standardDev:{name:"standard_dev",detail:"The population standard deviation for the data range and is assumed to be known."},size:{name:"size",detail:"The sample size."}}},COVAR:{description:"Returns population covariance, the average of the products of deviations for each data point pair in two data sets.",abstract:"Returns population covariance",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/covar-function-50479552-2c03-4daf-bd71-a5ab88b2db03"}],functionParameter:{array1:{name:"array1",detail:"A first range of cell values."},array2:{name:"array2",detail:"A second range of cell values."}}},CRITBINOM:{description:"Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",abstract:"Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/critbinom-function-eb6b871d-796b-4d21-b69b-e4350d5f407b"}],functionParameter:{trials:{name:"trials",detail:"The number of Bernoulli trials."},probabilityS:{name:"probability_s",detail:"The probability of success on each trial."},alpha:{name:"alpha",detail:"The criterion value."}}},EXPONDIST:{description:"Returns the exponential distribution",abstract:"Returns the exponential distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/expondist-function-68ab45fd-cd6d-4887-9770-9357eb8ee06a"}],functionParameter:{x:{name:"x",detail:"The value at which you want to evaluate the distribution."},lambda:{name:"lambda",detail:"The parameter value."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, EXPONDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},FDIST:{description:"Returns the (right-tailed) F probability distribution",abstract:"Returns the (right-tailed) F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/fdist-function-ecf76fba-b3f1-4e7d-a57e-6a5b7460b786"}],functionParameter:{x:{name:"x",detail:"The value at which to evaluate the function."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},FINV:{description:"Returns the inverse of the (right-tailed) F probability distribution",abstract:"Returns the inverse of the (right-tailed) F probability distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/finv-function-4d46c97c-c368-4852-bc15-41e8e31140b1"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the F cumulative distribution."},degFreedom1:{name:"deg_freedom1",detail:"The numerator degrees of freedom."},degFreedom2:{name:"deg_freedom2",detail:"The denominator degrees of freedom."}}},FTEST:{description:"Returns the result of an F-test",abstract:"Returns the result of an F-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ftest-function-4c9e1202-53fe-428c-a737-976f6fc3f9fd"}],functionParameter:{array1:{name:"array1",detail:"The first array or range of data."},array2:{name:"array2",detail:"The second array or range of data."}}},GAMMADIST:{description:"Returns the gamma distribution",abstract:"Returns the gamma distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gammadist-function-7327c94d-0f05-4511-83df-1dd7ed23e19e"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, GAMMADIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},GAMMAINV:{description:"Returns the inverse of the gamma cumulative distribution",abstract:"Returns the inverse of the gamma cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/gammainv-function-06393558-37ab-47d0-aa63-432f99e7916d"}],functionParameter:{probability:{name:"probability",detail:"A probability associated with the gamma distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."}}},HYPGEOMDIST:{description:"Returns the hypergeometric distribution",abstract:"Returns the hypergeometric distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/hypgeomdist-function-23e37961-2871-4195-9629-d0b2c108a12e"}],functionParameter:{sampleS:{name:"sample_s",detail:"The number of successes in the sample."},numberSample:{name:"number_sample",detail:"The size of the sample."},populationS:{name:"population_s",detail:"The number of successes in the population."},numberPop:{name:"number_pop",detail:"The population size."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, HYPGEOMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},LOGINV:{description:"Returns the inverse of the lognormal cumulative distribution function",abstract:"Returns the inverse of the lognormal cumulative distribution function",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/loginv-function-0bd7631a-2725-482b-afb4-de23df77acfe"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the lognormal distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},LOGNORMDIST:{description:"Returns the cumulative lognormal distribution",abstract:"Returns the cumulative lognormal distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/lognormdist-function-f8d194cb-9ee3-4034-8c75-1bdb3884100b"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, LOGNORM.DIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},MODE:{description:"Returns the most common value in a data set",abstract:"Returns the most common value in a data set",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/mode-function-e45192ce-9122-4980-82ed-4bdc34973120"}],functionParameter:{number1:{name:"number1",detail:"The first number, cell reference, or range for which you want calculate the mode."},number2:{name:"number2",detail:"Additional numbers, cell references or ranges for which you want calculate the mode, up to a maximum of 255."}}},NEGBINOMDIST:{description:"Returns the negative binomial distribution",abstract:"Returns the negative binomial distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/negbinomdist-function-f59b0a37-bae2-408d-b115-a315609ba714"}],functionParameter:{numberF:{name:"number_f",detail:"The number of failures."},numberS:{name:"number_s",detail:"The threshold number of successes."},probabilityS:{name:"probability_s",detail:"The probability of a success."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NEGBINOMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORMDIST:{description:"Returns the normal cumulative distribution",abstract:"Returns the normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/normdist-function-126db625-c53e-4591-9a22-c9ff422d6d58"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, NORMDIST returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},NORMINV:{description:"Returns the inverse of the normal cumulative distribution",abstract:"Returns the inverse of the normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/norminv-function-87981ab8-2de0-4cb0-b1aa-e21d4cb879b8"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the normal distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},standardDev:{name:"standard_dev",detail:"The standard deviation of the distribution."}}},NORMSDIST:{description:"Returns the standard normal cumulative distribution",abstract:"Returns the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/normsdist-function-463369ea-0345-445d-802a-4ff0d6ce7cac"}],functionParameter:{z:{name:"z",detail:"The value for which you want the distribution."}}},NORMSINV:{description:"Returns the inverse of the standard normal cumulative distribution",abstract:"Returns the inverse of the standard normal cumulative distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/normsinv-function-8d1bce66-8e4d-4f3b-967c-30eed61f019d"}],functionParameter:{probability:{name:"probability",detail:"A probability corresponding to the normal distribution."}}},PERCENTILE:{description:"Returns the k-th percentile of values in a data set (Includes 0 and 1)",abstract:"Returns the k-th percentile of values in a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentile-function-91b43a53-543c-4708-93de-d626debdddca"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},k:{name:"k",detail:"The percentile value in the range 0 and 1 (Includes 0 and 1)."}}},PERCENTRANK:{description:"Returns the percentage rank of a value in a data set (Includes 0 and 1)",abstract:"Returns the percentage rank of a value in a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/percentrank-function-f1b5836c-9619-4847-9fc9-080ec9024442"}],functionParameter:{array:{name:"array",detail:"The array or range of data that defines relative standing."},x:{name:"x",detail:"The value for which you want to know the rank."},significance:{name:"significance",detail:"A value that identifies the number of significant digits for the returned percentage value. If omitted, PERCENTRANK.INC uses three digits (0.xxx)."}}},POISSON:{description:"Returns the Poisson distribution",abstract:"Returns the Poisson distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/poisson-function-d81f7294-9d7c-4f75-bc23-80aa8624173a"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},mean:{name:"mean",detail:"The arithmetic mean of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, POISSON returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},QUARTILE:{description:"Returns the quartile of a data set (Includes 0 and 1)",abstract:"Returns the quartile of a data set (Includes 0 and 1)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/quartile-function-93cf8f62-60cd-4fdb-8a92-8451041e1a2a"}],functionParameter:{array:{name:"array",detail:"The array or range of data for which you want quartile values."},quart:{name:"quart",detail:"The quartile value to return."}}},RANK:{description:"Returns the rank of a number in a list of numbers",abstract:"Returns the rank of a number in a list of numbers",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/rank-function-6a2fc49d-1831-4a03-9d8c-c279cf99f723"}],functionParameter:{number:{name:"number",detail:"The number whose rank you want to find."},ref:{name:"ref",detail:"A reference to a list of numbers. Nonnumeric values in ref are ignored."},order:{name:"order",detail:"A number specifying how to rank number. If order is 0 (zero) or omitted, Microsoft Excel ranks number as if ref were a list sorted in descending order. If order is any nonzero value, Microsoft Excel ranks number as if ref were a list sorted in ascending order."}}},STDEV:{description:"Estimates standard deviation based on a sample. The standard deviation is a measure of how widely values are dispersed from the average value (the mean).",abstract:"Estimates standard deviation based on a sample",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdev-function-51fecaaa-231e-4bbb-9230-33650a72c9b0"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a sample of a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a sample of a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},STDEVP:{description:"Calculates standard deviation based on the entire population given as arguments.",abstract:"Calculates standard deviation based on the entire population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/stdevp-function-1f7c1c88-1bec-4422-8242-e9f7dc8bb195"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a population. You can also use a single array or a reference to an array instead of arguments separated by commas."}}},TDIST:{description:"Returns the probability for the Student t-distribution",abstract:"Returns the probability for the Student t-distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tdist-function-630a7695-4021-4853-9468-4a1f9dcdd192"}],functionParameter:{x:{name:"x",detail:"The numeric value at which to evaluate the distribution."},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."},tails:{name:"tails",detail:"Specifies the number of distribution tails to return. If Tails = 1, TDIST returns the one-tailed distribution. If Tails = 2, TDIST returns the two-tailed distribution."}}},TINV:{description:"Returns the inverse of the probability for the Student t-distribution (two-tailed)",abstract:"Returns the inverse of the probability for the Student t-distribution (two-tailed)",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/tinv-function-a7c85b9d-90f5-41fe-9ca5-1cd2f3e1ed7c"}],functionParameter:{probability:{name:"probability",detail:"The probability associated with the Student's t-distribution."},degFreedom:{name:"degFreedom",detail:"An integer indicating the number of degrees of freedom."}}},TTEST:{description:"Returns the probability associated with a Student's t-test",abstract:"Returns the probability associated with a Student's t-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ttest-function-1696ffc1-4811-40fd-9d13-a0eaad83c7ae"}],functionParameter:{array1:{name:"array1",detail:"The first array or range of data."},array2:{name:"array2",detail:"The second array or range of data."},tails:{name:"tails",detail:"Specifies the number of distribution tails. If tails = 1, TTEST uses the one-tailed distribution. If tails = 2, TTEST uses the two-tailed distribution."},type:{name:"type",detail:"The kind of t-Test to perform."}}},VAR:{description:"Estimates variance based on a sample.",abstract:"Estimates variance based on a sample",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/var-function-1f2b7ab2-954d-4e17-ba2c-9e58b15a7da2"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a sample of a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a sample of a population."}}},VARP:{description:"Calculates variance based on the entire population.",abstract:"Calculates variance based on the entire population",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/varp-function-26a541c4-ecee-464d-a731-bd4c575b1a6b"}],functionParameter:{number1:{name:"number1",detail:"The first number argument corresponding to a population."},number2:{name:"number2",detail:"Number arguments 2 to 255 corresponding to a population."}}},WEIBULL:{description:"Returns the Weibull distribution",abstract:"Returns the Weibull distribution",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/weibull-function-b83dc2c6-260b-4754-bef2-633196f6fdcc"}],functionParameter:{x:{name:"x",detail:"The value for which you want the distribution."},alpha:{name:"alpha",detail:"A parameter of the distribution."},beta:{name:"beta",detail:"A parameter of the distribution."},cumulative:{name:"cumulative",detail:"A logical value that determines the form of the function. If cumulative is TRUE, WEIBULL returns the cumulative distribution function; if FALSE, it returns the probability density function."}}},ZTEST:{description:"Returns the one-tailed probability-value of a z-test",abstract:"Returns the one-tailed probability-value of a z-test",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/ztest-function-8f33be8a-6bd6-4ecc-8e3a-d9a4420c4a6a"}],functionParameter:{array:{name:"array",detail:"The array or range of data against which to test x."},x:{name:"x",detail:"The value to test."},sigma:{name:"sigma",detail:"The population (known) standard deviation. If omitted, the sample standard deviation is used."}}}},...{ENCODEURL:{description:"Returns a URL-encoded string",abstract:"Returns a URL-encoded string",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/encodeurl-function-07c7fb90-7c60-4bff-8687-fac50fe33d0e"}],functionParameter:{text:{name:"text",detail:"A string to be URL encoded"}}},FILTERXML:{description:"Returns specific data from the XML content by using the specified XPath",abstract:"Returns specific data from the XML content by using the specified XPath",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/filterxml-function-4df72efc-11ec-4951-86f5-c1374812f5b7"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}},WEBSERVICE:{description:"Returns data from a web service",abstract:"Returns data from a web service",links:[{title:"Instruction",url:"https://support.microsoft.com/en-us/office/webservice-function-0546a35a-ecc6-4739-aed7-c0b7ce1562c4"}],functionParameter:{number1:{name:"number1",detail:"first"},number2:{name:"number2",detail:"second"}}}},...{ARRAY_CONSTRAIN:{description:"Constrains an array result to a specified size.",abstract:"Constrains an array result to a specified size.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/3267036?hl=en&sjid=8484774178571403392-AP"}],functionParameter:{inputRange:{name:"input_range",detail:"The range to constrain."},numRows:{name:"num_rows",detail:"The number of rows the result should contain."},numCols:{name:"num_cols",detail:"The number of columns the result should contain"}}},FLATTEN:{description:"Flattens all the values from one or more ranges into a single column.",abstract:"Flattens all the values from one or more ranges into a single column.",links:[{title:"Instruction",url:"https://support.google.com/docs/answer/10307761?hl=zh-Hans&sjid=17375453483079636084-AP"}],functionParameter:{range1:{name:"range1",detail:"The first range to flatten."},range2:{name:"range2",detail:"Additional ranges to flatten."}}}},...{}},prompt:{helpExample:"EXEMPLE",helpAbstract:"À PROPOS",required:"Requis.",optional:"Optionnel."},error:{title:"Erreur",divByZero:"Erreur de division par zéro",name:"Erreur de nom invalide",value:"Erreur de valeur",num:"Erreur de nombre",na:"Erreur de valeur non disponible",cycle:"Erreur de référence circulaire",ref:"Erreur de référence de cellule invalide",spill:"La plage de débordement n'est pas vide",calc:"Erreur de calcul",error:"Erreur",connect:"Récupération des données",null:"Erreur nulle"},functionType:{financial:"Financier",date:"Date & Heure",math:"Math & Trigo",statistical:"Statistique",lookup:"Recherche & Référence",database:"Base de données",text:"Texte",logical:"Logique",information:"Information",engineering:"Ingénierie",cube:"Cube",compatibility:"Compatibilité",web:"Web",array:"Tableau",univer:"Univer",user:"Définies par l'utilisateur",definedname:"Nom défini"},moreFunctions:{confirm:"Confirmer",prev:"Précédent",next:"Suivant",searchFunctionPlaceholder:"Rechercher une fonction",allFunctions:"Toutes les fonctions",syntax:"SYNTAXE"},operation:{pasteFormula:"Coller la formule"}}}});
|
|
70
70
|
|
|
71
71
|
|
|
72
72
|
// @univerjs/sheets-numfmt-ui/locale/fr-FR
|