diff --git a/docs/guide/built-in-functions.md b/docs/guide/built-in-functions.md index e3069f93b..fe842dd94 100644 --- a/docs/guide/built-in-functions.md +++ b/docs/guide/built-in-functions.md @@ -230,83 +230,83 @@ Total number of functions: **{{ $page.functionsCount }}** ### Math and trigonometry -| Function ID | Description | Syntax | -|:----------------|:--------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------| -| ABS | Returns the absolute value of a number. | ABS(Number) | -| ACOS | Returns the inverse trigonometric cosine of a number. | ACOS(Number) | -| ACOSH | Returns the inverse hyperbolic cosine of a number. | ACOSH(Number) | -| ACOT | Returns the inverse trigonometric cotangent of a number. | ACOT(Number) | -| ACOTH | Returns the inverse hyperbolic cotangent of a number. | ACOTH(Number) | -| ARABIC | Converts number from roman form. | ARABIC(String) | -| ASIN | Returns the inverse trigonometric sine of a number. | ASIN(Number) | -| ASINH | Returns the inverse hyperbolic sine of a number. | ASINH(Number) | -| ATAN | Returns the inverse trigonometric tangent of a number. | ATAN(Number) | -| ATAN2 | Returns the inverse trigonometric tangent of the specified x and y coordinates. | ATAN2(Numberx, Numbery) | -| ATANH | Returns the inverse hyperbolic tangent of a number. | ATANH(Number) | -| BASE | Converts a positive integer to a specified base into a text from the numbering system. | BASE(Number, Radix, [Minimumlength]) | -| CEILING | Rounds a number up to the nearest multiple of Significance. | CEILING(Number, Significance) | -| CEILING.MATH | Rounds a number up to the nearest multiple of Significance. | CEILING.MATH(Number[, Significance[, Mode]]) | -| CEILING.PRECISE | Rounds a number up to the nearest multiple of Significance. | CEILING.PRECISE(Number[, Significance]) | -| COMBIN | Returns number of combinations (without repetitions). | COMBIN(Number, Number) | -| COMBINA | Returns number of combinations (with repetitions). | COMBINA(Number, Number) | -| COS | Returns the cosine of the given angle (in radians). | COS(Number) | -| COSH | Returns the hyperbolic cosine of the given value. | COSH(Number) | -| COT | Returns the cotangent of the given angle (in radians). | COT(Number) | -| COTH | Returns the hyperbolic cotangent of the given value. | COTH(Number) | -| COUNTUNIQUE | Counts the number of unique values in a list of specified values and ranges. | COUNTUNIQUE(Value1, Value2, ...ValueN) | -| CSC | Returns the cosecans of the given angle (in radians). | CSC(Number) | -| CSCH | Returns the hyperbolic cosecant of the given value. | CSCH(Number) | -| DECIMAL | Converts text with characters from a number system to a positive integer in the base radix given. | DECIMAL("Text", Radix) | -| DEGREES | Converts radians into degrees. | DEGREES(Number) | -| EVEN | Rounds a positive number up to the next even integer and a negative number down to the next even integer. | EVEN(Number) | -| EXP | Returns constant e raised to the power of a number. | EXP(Number) | -| FACT | Returns a factorial of a number. | FACT(Number) | -| FACTDOUBLE | Returns a double factorial of a number. | FACTDOUBLE(Number) | -| FLOOR | Rounds a number down to the nearest multiple of Significance. | FLOOR(Number, Significance) | -| FLOOR.MATH | Rounds a number down to the nearest multiple of Significance. | FLOOR.MATH(Number[, Significance[, Mode]]) | -| FLOOR.PRECISE | Rounds a number down to the nearest multiple of Significance. | FLOOR.PRECISE(Number[, Significance]) | -| GCD | Computes greatest common divisor of numbers. | GCD(Number1, Number2, ...NumberN) | -| INT | Rounds a number down to the nearest integer. | INT(Number) | -| ISO.CEILING | Rounds a number up to the nearest multiple of Significance. | ISO.CEILING(Number[, Significance]) | -| LCM | Computes least common multiplicity of numbers. | LCM(Number1, Number2, ...NumberN) | -| LN | Returns the natural logarithm based on the constant e of a number. | LN(Number) | -| LOG | Returns the logarithm of a number to the specified base. | LOG(Number, Base) | -| LOG10 | Returns the base-10 logarithm of a number. | LOG10(Number) | -| MOD | Returns the remainder when one integer is divided by another. | MOD(Dividend, Divisor) | -| MROUND | Rounds number to the neares multiplicity. | MROUND(Number, Base) | -| MULTINOMIAL | Returns number of multiset combinations. | MULTINOMIAL(Number1, Number2, ...NumberN) | -| ODD | Rounds a positive number up to the nearest odd integer and a negative number down to the nearest odd integer. | ODD(Number) | -| PI | Returns 3.14159265358979, the value of the mathematical constant PI to 14 decimal places. | PI() | -| POWER | Returns a number raised to another number. | POWER(Base, Exponent) | -| PRODUCT | Returns product of numbers. | PRODUCT(Number1, Number2, ...NumberN) | -| QUOTIENT | Returns integer part of a division. | QUOTIENT(Dividend, Divisor) | -| RADIANS | Converts degrees to radians. | RADIANS(Number) | -| RAND | Returns a random number between 0 and 1. | RAND() | -| RANDBETWEEN | Returns a random integer between two numbers. | RAND(Lowerbound, Upperbound) | -| ROMAN | Converts number to roman form. | ROMAN(Number[, Mode]) | -| ROUND | Rounds a number to a certain number of decimal places. | ROUND(Number, Count) | -| ROUNDDOWN | Rounds a number down, toward zero, to a certain precision. | ROUNDDOWN(Number, Count) | -| ROUNDUP | Rounds a number up, away from zero, to a certain precision. | ROUNDUP(Number, Count) | -| SEC | Returns the secant of the given angle (in radians). | SEC(Number) | -| SECH | Returns the hyperbolic secant of the given angle (in radians). | SEC(Number) | -| SERIESSUM | Evaluates series at a point. | SERIESSUM(Number, Number, Number, Coefficients) | -| SIN | Returns the sine of the given angle (in radians). | SIN(Number) | -| SINH | Returns the hyperbolic sine of the given value. | SINH(Number) | -| SIGN | Returns sign of a number. | SIGN(Number) | -| SQRT | Returns the positive square root of a number. | SQRT(Number) | -| SQRTPI | Returns sqrt of number times pi. | SQRTPI(Number) | -| SUBTOTAL | Computes aggregation using function specified by number. | SUBTOTAL(Function, Number1, Number2, ...NumberN) | -| SUM | Sums up the values of the specified cells. | SUM(Number1, Number2, ...NumberN) | -| SUMIF | Sums up the values of cells that belong to the specified range and meet the specified condition. | SUMIF(Range, Criteria, Sumrange) | -| SUMIFS | Sums up the values of cells that belong to the specified range and meet the specified sets of conditions. | SUMIFS(Sum_Range , Criterion_range1 , Criterion1 [, Criterion_range2, Criterion2 [, ...Criterion_rangeN, CriterionN]]) | -| SUMPRODUCT | Multiplies corresponding elements in the given arrays, and returns the sum of those products. | SUMPRODUCT(Array1, Array2, ...ArrayN) | -| SUMSQ | Returns the sum of the squares of the arguments | SUMSQ(Number1, Number2, ...NumberN) | -| SUMX2MY2 | Returns the sum of the square differences. | SUMX2MY2(Range1, Range2) | -| SUMX2PY2 | Returns the sum of the square sums. | SUMX2PY2(Range1, Range2) | -| SUMXMY2 | Returns the sum of the square of differences. | SUMXMY2(Range1, Range2) | -| TAN | Returns the tangent of the given angle (in radians). | TAN(Number) | -| TANH | Returns the hyperbolic tangent of the given value. | TANH(Number) | -| TRUNC | Truncates a number by removing decimal places. | TRUNC(Number, Count) | +| Function ID | Description | Syntax | +|:----------------|:--------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------| +| ABS | Returns the absolute value of a number. | ABS(Number) | +| ACOS | Returns the inverse trigonometric cosine of a number. | ACOS(Number) | +| ACOSH | Returns the inverse hyperbolic cosine of a number. | ACOSH(Number) | +| ACOT | Returns the inverse trigonometric cotangent of a number. | ACOT(Number) | +| ACOTH | Returns the inverse hyperbolic cotangent of a number. | ACOTH(Number) | +| ARABIC | Converts number from roman form. | ARABIC(String) | +| ASIN | Returns the inverse trigonometric sine of a number. | ASIN(Number) | +| ASINH | Returns the inverse hyperbolic sine of a number. | ASINH(Number) | +| ATAN | Returns the inverse trigonometric tangent of a number. | ATAN(Number) | +| ATAN2 | Returns the inverse trigonometric tangent of the specified x and y coordinates. | ATAN2(Numberx, Numbery) | +| ATANH | Returns the inverse hyperbolic tangent of a number. | ATANH(Number) | +| BASE | Converts a positive integer to a specified base into a text from the numbering system. | BASE(Number, Radix, [Minimumlength]) | +| CEILING | Rounds a number up to the nearest multiple of Significance. | CEILING(Number, Significance) | +| CEILING.MATH | Rounds a number up to the nearest multiple of Significance. | CEILING.MATH(Number[, Significance[, Mode]]) | +| CEILING.PRECISE | Rounds a number up to the nearest multiple of Significance. | CEILING.PRECISE(Number[, Significance]) | +| COMBIN | Returns number of combinations (without repetitions). | COMBIN(Number, Number) | +| COMBINA | Returns number of combinations (with repetitions). | COMBINA(Number, Number) | +| COS | Returns the cosine of the given angle (in radians). | COS(Number) | +| COSH | Returns the hyperbolic cosine of the given value. | COSH(Number) | +| COT | Returns the cotangent of the given angle (in radians). | COT(Number) | +| COTH | Returns the hyperbolic cotangent of the given value. | COTH(Number) | +| COUNTUNIQUE | Counts the number of unique values in a list of specified values and ranges. | COUNTUNIQUE(Value1, Value2, ...ValueN) | +| CSC | Returns the cosecans of the given angle (in radians). | CSC(Number) | +| CSCH | Returns the hyperbolic cosecant of the given value. | CSCH(Number) | +| DECIMAL | Converts text with characters from a number system to a positive integer in the base radix given. | DECIMAL("Text", Radix) | +| DEGREES | Converts radians into degrees. | DEGREES(Number) | +| EVEN | Rounds a positive number up to the next even integer and a negative number down to the next even integer. | EVEN(Number) | +| EXP | Returns constant e raised to the power of a number. | EXP(Number) | +| FACT | Returns a factorial of a number. | FACT(Number) | +| FACTDOUBLE | Returns a double factorial of a number. | FACTDOUBLE(Number) | +| FLOOR | Rounds a number down to the nearest multiple of Significance. | FLOOR(Number, Significance) | +| FLOOR.MATH | Rounds a number down to the nearest multiple of Significance. | FLOOR.MATH(Number[, Significance[, Mode]]) | +| FLOOR.PRECISE | Rounds a number down to the nearest multiple of Significance. | FLOOR.PRECISE(Number[, Significance]) | +| GCD | Computes greatest common divisor of numbers. | GCD(Number1, Number2, ...NumberN) | +| INT | Rounds a number down to the nearest integer. | INT(Number) | +| ISO.CEILING | Rounds a number up to the nearest multiple of Significance. | ISO.CEILING(Number[, Significance]) | +| LCM | Computes least common multiplicity of numbers. | LCM(Number1, Number2, ...NumberN) | +| LN | Returns the natural logarithm based on the constant e of a number. | LN(Number) | +| LOG | Returns the logarithm of a number to the specified base. | LOG(Number, Base) | +| LOG10 | Returns the base-10 logarithm of a number. | LOG10(Number) | +| MOD | Returns the remainder when one integer is divided by another. | MOD(Dividend, Divisor) | +| MROUND | Rounds number to the neares multiplicity. | MROUND(Number, Base) | +| MULTINOMIAL | Returns number of multiset combinations. | MULTINOMIAL(Number1, Number2, ...NumberN) | +| ODD | Rounds a positive number up to the nearest odd integer and a negative number down to the nearest odd integer. | ODD(Number) | +| PI | Returns 3.14159265358979, the value of the mathematical constant PI to 14 decimal places. | PI() | +| POWER | Returns a number raised to another number. | POWER(Base, Exponent) | +| PRODUCT | Returns product of numbers. | PRODUCT(Number1, Number2, ...NumberN) | +| QUOTIENT | Returns integer part of a division. | QUOTIENT(Dividend, Divisor) | +| RADIANS | Converts degrees to radians. | RADIANS(Number) | +| RAND | Returns a random number between 0 and 1. | RAND() | +| RANDBETWEEN | Returns a random integer between two numbers. | RAND(Lowerbound, Upperbound) | +| ROMAN | Converts number to roman form. | ROMAN(Number[, Mode]) | +| ROUND | Rounds a number to a certain number of decimal places. | ROUND(Number, Count) | +| ROUNDDOWN | Rounds a number down, toward zero, to a certain precision. | ROUNDDOWN(Number, Count) | +| ROUNDUP | Rounds a number up, away from zero, to a certain precision. | ROUNDUP(Number, Count) | +| SEC | Returns the secant of the given angle (in radians). | SEC(Number) | +| SECH | Returns the hyperbolic secant of the given angle (in radians). | SEC(Number) | +| SERIESSUM | Evaluates series at a point. | SERIESSUM(Number, Number, Number, Coefficients) | +| SIN | Returns the sine of the given angle (in radians). | SIN(Number) | +| SINH | Returns the hyperbolic sine of the given value. | SINH(Number) | +| SIGN | Returns sign of a number. | SIGN(Number) | +| SQRT | Returns the positive square root of a number. | SQRT(Number) | +| SQRTPI | Returns sqrt of number times pi. | SQRTPI(Number) | +| SUBTOTAL | Computes aggregation using function specified by number. | SUBTOTAL(Function, Number1, Number2, ...NumberN) | +| SUM | Sums up the values of the specified cells. | SUM(Number1, Number2, ...NumberN) | +| SUMIF | Sums up the values of cells that belong to the specified range and meet the specified condition. | SUMIF(Range, Criteria, Sumrange) | +| SUMIFS | Sums up the values of cells that belong to the specified range and meet the specified sets of conditions. | SUMIFS(Sum_Range, Criterion_range1, Criterion1 [, Criterion_range2, Criterion2 [, ...Criterion_rangeN, CriterionN]]) | +| SUMPRODUCT | Multiplies corresponding elements in the given arrays, and returns the sum of those products. | SUMPRODUCT(Array1, Array2, ...ArrayN) | +| SUMSQ | Returns the sum of the squares of the arguments | SUMSQ(Number1, Number2, ...NumberN) | +| SUMX2MY2 | Returns the sum of the square differences. | SUMX2MY2(Range1, Range2) | +| SUMX2PY2 | Returns the sum of the square sums. | SUMX2PY2(Range1, Range2) | +| SUMXMY2 | Returns the sum of the square of differences. | SUMXMY2(Range1, Range2) | +| TAN | Returns the tangent of the given angle (in radians). | TAN(Number) | +| TANH | Returns the hyperbolic tangent of the given value. | TANH(Number) | +| TRUNC | Truncates a number by removing decimal places. | TRUNC(Number, Count) | ### Matrix functions