xb.fn (Excel builtin functions)#
All ~500 Excel functions can be accessed in Python, from the excelbird.fn module.
Each is documented with the same short summary as provided by Microsoft’s documentation.
Allows for autocomplete and documentation preview in your IDE.
Syntax Example: Excel’s T.DIST.2T() is T_DIST_2T() in excelbird.
Note
Each function is short for an excelbird.Func
fn.ABS(some_cell)
is the same as
Func("ABS(", some_cell, ")")
- excelbird.fn.ABS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the absolute value of a number
In Excel:
ABS()- Returns:
- excelbird.fn.ACCRINT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the accrued interest for a security that pays periodic interest
In Excel:
ACCRINT()- Returns:
- excelbird.fn.ACCRINTM(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the accrued interest for a security that pays interest at maturity
In Excel:
ACCRINTM()- Returns:
- excelbird.fn.ACOS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the arccosine of a number
In Excel:
ACOS()- Returns:
- excelbird.fn.ACOSH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the inverse hyperbolic cosine of a number
In Excel:
ACOSH()- Returns:
- excelbird.fn.ACOT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the arccotangent of a number
In Excel:
ACOT()- Returns:
- excelbird.fn.ACOTH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the hyperbolic arccotangent of a number
In Excel:
ACOTH()- Returns:
- excelbird.fn.ADDRESS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Returns a reference as text to a single cell in a worksheet
In Excel:
ADDRESS()- Returns:
- excelbird.fn.AGGREGATE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns an aggregate in a list or database
In Excel:
AGGREGATE()- Returns:
- excelbird.fn.AMORDEGRC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the depreciation for each accounting period by using a depreciation coefficient
In Excel:
AMORDEGRC()- Returns:
- excelbird.fn.AMORLINC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the depreciation for each accounting period
In Excel:
AMORLINC()- Returns:
- excelbird.fn.AND(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Logical: Returns TRUE if all of its arguments are TRUE
In Excel:
AND()- Returns:
- excelbird.fn.ARABIC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Converts a Roman number to Arabic, as a number
In Excel:
ARABIC()- Returns:
- excelbird.fn.AREAS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Returns the number of areas in a reference
In Excel:
AREAS()- Returns:
- excelbird.fn.ARRAYTOTEXT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Returns an array of text values from any specified range
In Excel:
ARRAYTOTEXT()- Returns:
- excelbird.fn.ASC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Changes full-width (double-byte) English letters or katakana within a character string to half-width (single-byte) characters
In Excel:
ASC()- Returns:
- excelbird.fn.ASIN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the arcsine of a number
In Excel:
ASIN()- Returns:
- excelbird.fn.ASINH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the inverse hyperbolic sine of a number
In Excel:
ASINH()- Returns:
- excelbird.fn.ATAN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the arctangent of a number
In Excel:
ATAN()- Returns:
- excelbird.fn.ATAN2(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the arctangent from x- and y-coordinates
In Excel:
ATAN2()- Returns:
- excelbird.fn.ATANH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the inverse hyperbolic tangent of a number
In Excel:
ATANH()- Returns:
- excelbird.fn.AVEDEV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the average of the absolute deviations of data points from their mean
In Excel:
AVEDEV()- Returns:
- excelbird.fn.AVERAGE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the average of its arguments
In Excel:
AVERAGE()- Returns:
- excelbird.fn.AVERAGEA(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the average of its arguments, including numbers, text, and logical values
In Excel:
AVERAGEA()- Returns:
- excelbird.fn.AVERAGEIF(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the average (arithmetic mean) of all the cells in a range that meet a given criteria
In Excel:
AVERAGEIF()- Returns:
- excelbird.fn.AVERAGEIFS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the average (arithmetic mean) of all cells that meet multiple criteria.
In Excel:
AVERAGEIFS()- Returns:
- excelbird.fn.BAHTTEXT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Converts a number to text, using the ß (baht) currency format
In Excel:
BAHTTEXT()- Returns:
- excelbird.fn.BASE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Converts a number into a text representation with the given radix (base)
In Excel:
BASE()- Returns:
- excelbird.fn.BESSELI(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the modified Bessel function In(x)
In Excel:
BESSELI()- Returns:
- excelbird.fn.BESSELJ(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the Bessel function Jn(x)
In Excel:
BESSELJ()- Returns:
- excelbird.fn.BESSELK(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the modified Bessel function Kn(x)
In Excel:
BESSELK()- Returns:
- excelbird.fn.BESSELY(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the Bessel function Yn(x)
In Excel:
BESSELY()- Returns:
- excelbird.fn.BETADIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the beta cumulative distribution function
In Excel:
BETADIST()- Returns:
- excelbird.fn.BETAINV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the inverse of the cumulative distribution function for a specified beta distribution
In Excel:
BETAINV()- Returns:
- excelbird.fn.BETA_DIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the beta cumulative distribution function
In Excel:
BETA.DIST()- Returns:
- excelbird.fn.BETA_INV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the inverse of the cumulative distribution function for a specified beta distribution
In Excel:
BETA.INV()- Returns:
- excelbird.fn.BIN2DEC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Converts a binary number to decimal
In Excel:
BIN2DEC()- Returns:
- excelbird.fn.BIN2HEX(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Converts a binary number to hexadecimal
In Excel:
BIN2HEX()- Returns:
- excelbird.fn.BIN2OCT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Converts a binary number to octal
In Excel:
BIN2OCT()- Returns:
- excelbird.fn.BINOMDIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the individual term binomial distribution probability
In Excel:
BINOMDIST()- Returns:
- excelbird.fn.BINOM_DIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the individual term binomial distribution probability
In Excel:
BINOM.DIST()- Returns:
- excelbird.fn.BINOM_DIST_RANGE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the probability of a trial result using a binomial distribution
In Excel:
BINOM.DIST.RANGE()- Returns:
- excelbird.fn.BINOM_INV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value
In Excel:
BINOM.INV()- Returns:
- excelbird.fn.BITAND(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns a ‘Bitwise And’ of two numbers
In Excel:
BITAND()- Returns:
- excelbird.fn.BITLSHIFT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns a value number shifted left by shift_amount bits
In Excel:
BITLSHIFT()- Returns:
- excelbird.fn.BITOR(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns a bitwise OR of 2 numbers
In Excel:
BITOR()- Returns:
- excelbird.fn.BITRSHIFT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns a value number shifted right by shift_amount bits
In Excel:
BITRSHIFT()- Returns:
- excelbird.fn.BITXOR(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns a bitwise ‘Exclusive Or’ of two numbers
In Excel:
BITXOR()- Returns:
- excelbird.fn.BYCOL(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Logical: Applies a LAMBDA to each column and returns an array of the results
In Excel:
BYCOL()- Returns:
- excelbird.fn.BYROW(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Logical: Applies a LAMBDA to each row and returns an array of the results
In Excel:
BYROW()- Returns:
- excelbird.fn.CALL(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Add-in and Automation: Calls a procedure in a dynamic link library or code resource
In Excel:
CALL()- Returns:
- excelbird.fn.CEILING(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Rounds a number to the nearest integer or to the nearest multiple of significance
In Excel:
CEILING()- Returns:
- excelbird.fn.CEILING_MATH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Rounds a number up, to the nearest integer or to the nearest multiple of significance
In Excel:
CEILING.MATH()- Returns:
- excelbird.fn.CEILING_PRECISE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Rounds a number the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded up.
In Excel:
CEILING.PRECISE()- Returns:
- excelbird.fn.CELL(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Information: Returns information about the formatting, location, or contents of a cell
In Excel:
CELL()- Returns:
- excelbird.fn.CHAR(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Returns the character specified by the code number
In Excel:
CHAR()- Returns:
- excelbird.fn.CHIDIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the one-tailed probability of the chi-squared distribution
In Excel:
CHIDIST()- Returns:
- excelbird.fn.CHIINV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the inverse of the one-tailed probability of the chi-squared distribution
In Excel:
CHIINV()- Returns:
- excelbird.fn.CHISQ_DIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the cumulative beta probability density function
In Excel:
CHISQ.DIST()- Returns:
- excelbird.fn.CHISQ_DIST_RT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the one-tailed probability of the chi-squared distribution
In Excel:
CHISQ.DIST.RT()- Returns:
- excelbird.fn.CHISQ_INV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the cumulative beta probability density function
In Excel:
CHISQ.INV()- Returns:
- excelbird.fn.CHISQ_INV_RT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the inverse of the one-tailed probability of the chi-squared distribution
In Excel:
CHISQ.INV.RT()- Returns:
- excelbird.fn.CHISQ_TEST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the test for independence
In Excel:
CHISQ.TEST()- Returns:
- excelbird.fn.CHITEST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the test for independence
In Excel:
CHITEST()- Returns:
- excelbird.fn.CHOOSE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Chooses a value from a list of values
In Excel:
CHOOSE()- Returns:
- excelbird.fn.CHOOSECOLS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Returns the specified columns from an array
In Excel:
CHOOSECOLS()- Returns:
- excelbird.fn.CHOOSEROWS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Returns the specified rows from an array
In Excel:
CHOOSEROWS()- Returns:
- excelbird.fn.CLEAN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Removes all nonprintable characters from text
In Excel:
CLEAN()- Returns:
- excelbird.fn.CODE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Returns a numeric code for the first character in a text string
In Excel:
CODE()- Returns:
- excelbird.fn.COLUMN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Returns the column number of a reference
In Excel:
COLUMN()- Returns:
- excelbird.fn.COLUMNS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Returns the number of columns in a reference
In Excel:
COLUMNS()- Returns:
- excelbird.fn.COMBIN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the number of combinations for a given number of objects
In Excel:
COMBIN()- Returns:
- excelbird.fn.COMBINA(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Converts real and imaginary coefficients into a complex number
In Excel:
COMBINA()- Returns:
- excelbird.fn.CONCAT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Combines the text from multiple ranges and/or strings, but it doesn’t provide the delimiter or IgnoreEmpty arguments.
In Excel:
CONCAT()- Returns:
- excelbird.fn.CONCATENATE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Joins several text items into one text item
In Excel:
CONCATENATE()- Returns:
- excelbird.fn.CONFIDENCE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the confidence interval for a population mean
In Excel:
CONFIDENCE()- Returns:
- excelbird.fn.CONFIDENCE_NORM(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the confidence interval for a population mean
In Excel:
CONFIDENCE.NORM()- Returns:
- excelbird.fn.CONFIDENCE_T(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the confidence interval for a population mean, using a Student’s t distribution
In Excel:
CONFIDENCE.T()- Returns:
- excelbird.fn.CONVERT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Converts a number from one measurement system to another
In Excel:
CONVERT()- Returns:
- excelbird.fn.CORREL(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the correlation coefficient between two data sets
In Excel:
CORREL()- Returns:
- excelbird.fn.COS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the cosine of a number
In Excel:
COS()- Returns:
- excelbird.fn.COSH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the hyperbolic cosine of a number
In Excel:
COSH()- Returns:
- excelbird.fn.COT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the hyperbolic cosine of a number
In Excel:
COT()- Returns:
- excelbird.fn.COTH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the cotangent of an angle
In Excel:
COTH()- Returns:
- excelbird.fn.COUNT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Counts how many numbers are in the list of arguments
In Excel:
COUNT()- Returns:
- excelbird.fn.COUNTA(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Counts how many values are in the list of arguments
In Excel:
COUNTA()- Returns:
- excelbird.fn.COUNTBLANK(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Counts the number of blank cells within a range
In Excel:
COUNTBLANK()- Returns:
- excelbird.fn.COUNTIF(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Counts the number of cells within a range that meet the given criteria
In Excel:
COUNTIF()- Returns:
- excelbird.fn.COUNTIFS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Counts the number of cells within a range that meet multiple criteria
In Excel:
COUNTIFS()- Returns:
- excelbird.fn.COUPDAYBS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the number of days from the beginning of the coupon period to the settlement date
In Excel:
COUPDAYBS()- Returns:
- excelbird.fn.COUPDAYS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the number of days in the coupon period that contains the settlement date
In Excel:
COUPDAYS()- Returns:
- excelbird.fn.COUPDAYSNC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the number of days from the settlement date to the next coupon date
In Excel:
COUPDAYSNC()- Returns:
- excelbird.fn.COUPNCD(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the next coupon date after the settlement date
In Excel:
COUPNCD()- Returns:
- excelbird.fn.COUPNUM(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the number of coupons payable between the settlement date and maturity date
In Excel:
COUPNUM()- Returns:
- excelbird.fn.COUPPCD(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the previous coupon date before the settlement date
In Excel:
COUPPCD()- Returns:
- excelbird.fn.COVAR(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns covariance, the average of the products of paired deviations
In Excel:
COVAR()- Returns:
- excelbird.fn.COVARIANCE_P(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns covariance, the average of the products of paired deviations
In Excel:
COVARIANCE.P()- Returns:
- excelbird.fn.COVARIANCE_S(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the sample covariance, the average of the products deviations for each data point pair in two data sets
In Excel:
COVARIANCE.S()- Returns:
- excelbird.fn.CRITBINOM(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value
In Excel:
CRITBINOM()- Returns:
- excelbird.fn.CSC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the cosecant of an angle
In Excel:
CSC()- Returns:
- excelbird.fn.CSCH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the hyperbolic cosecant of an angle
In Excel:
CSCH()- Returns:
- excelbird.fn.CUBEKPIMEMBER(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Cube: Returns a key performance indicator (KPI) name, property, and measure, and displays the name and property in the cell. A KPI is a quantifiable measurement, such as monthly gross profit or quarterly employee turnover, used to monitor an organization’s performance.
In Excel:
CUBEKPIMEMBER()- Returns:
- excelbird.fn.CUBEMEMBER(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Cube: Returns a member or tuple in a cube hierarchy. Use to validate that the member or tuple exists in the cube.
In Excel:
CUBEMEMBER()- Returns:
- excelbird.fn.CUBEMEMBERPROPERTY(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Cube: Returns the value of a member property in the cube. Use to validate that a member name exists within the cube and to return the specified property for this member.
In Excel:
CUBEMEMBERPROPERTY()- Returns:
- excelbird.fn.CUBERANKEDMEMBER(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Cube: Returns the nth, or ranked, member in a set. Use to return one or more elements in a set, such as the top sales performer or top 10 students.
In Excel:
CUBERANKEDMEMBER()- Returns:
- excelbird.fn.CUBESET(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Cube: Defines a calculated set of members or tuples by sending a set expression to the cube on the server, which creates the set, and then returns that set to Microsoft Office Excel.
In Excel:
CUBESET()- Returns:
- excelbird.fn.CUBESETCOUNT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Cube: Returns the number of items in a set.
In Excel:
CUBESETCOUNT()- Returns:
- excelbird.fn.CUBEVALUE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Cube: Returns an aggregated value from a cube.
In Excel:
CUBEVALUE()- Returns:
- excelbird.fn.CUMIPMT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the cumulative interest paid between two periods
In Excel:
CUMIPMT()- Returns:
- excelbird.fn.CUMPRINC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the cumulative principal paid on a loan between two periods
In Excel:
CUMPRINC()- Returns:
- excelbird.fn.DATE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Returns the serial number of a particular date
In Excel:
DATE()- Returns:
- excelbird.fn.DATEDIF(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Calculates the number of days, months, or years between two dates. This function is useful in formulas where you need to calculate an age.
In Excel:
DATEDIF()- Returns:
- excelbird.fn.DATEVALUE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Converts a date in the form of text to a serial number
In Excel:
DATEVALUE()- Returns:
- excelbird.fn.DAVERAGE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Database: Returns the average of selected database entries
In Excel:
DAVERAGE()- Returns:
- excelbird.fn.DAY(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Converts a serial number to a day of the month
In Excel:
DAY()- Returns:
- excelbird.fn.DAYS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Returns the number of days between two dates
In Excel:
DAYS()- Returns:
- excelbird.fn.DAYS360(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Calculates the number of days between two dates based on a 360-day year
In Excel:
DAYS360()- Returns:
- excelbird.fn.DB(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the depreciation of an asset for a specified period by using the fixed-declining balance method
In Excel:
DB()- Returns:
- excelbird.fn.DBCS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Changes half-width (single-byte) English letters or katakana within a character string to full-width (double-byte) characters
In Excel:
DBCS()- Returns:
- excelbird.fn.DCOUNT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Database: Counts the cells that contain numbers in a database
In Excel:
DCOUNT()- Returns:
- excelbird.fn.DCOUNTA(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Database: Counts nonblank cells in a database
In Excel:
DCOUNTA()- Returns:
- excelbird.fn.DDB(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the depreciation of an asset for a specified period by using the double-declining balance method or some other method that you specify
In Excel:
DDB()- Returns:
- excelbird.fn.DEC2BIN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Converts a decimal number to binary
In Excel:
DEC2BIN()- Returns:
- excelbird.fn.DEC2HEX(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Converts a decimal number to hexadecimal
In Excel:
DEC2HEX()- Returns:
- excelbird.fn.DEC2OCT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Converts a decimal number to octal
In Excel:
DEC2OCT()- Returns:
- excelbird.fn.DECIMAL(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Converts a text representation of a number in a given base into a decimal number
In Excel:
DECIMAL()- Returns:
- excelbird.fn.DEGREES(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Converts radians to degrees
In Excel:
DEGREES()- Returns:
- excelbird.fn.DELTA(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Tests whether two values are equal
In Excel:
DELTA()- Returns:
- excelbird.fn.DEVSQ(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the sum of squares of deviations
In Excel:
DEVSQ()- Returns:
- excelbird.fn.DGET(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Database: Extracts from a database a single record that matches the specified criteria
In Excel:
DGET()- Returns:
- excelbird.fn.DISC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the discount rate for a security
In Excel:
DISC()- Returns:
- excelbird.fn.DMAX(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Database: Returns the maximum value from selected database entries
In Excel:
DMAX()- Returns:
- excelbird.fn.DMIN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Database: Returns the minimum value from selected database entries
In Excel:
DMIN()- Returns:
- excelbird.fn.DOLLAR(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Converts a number to text, using the $ (dollar) currency format
In Excel:
DOLLAR()- Returns:
- excelbird.fn.DOLLARDE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Converts a dollar price, expressed as a fraction, into a dollar price, expressed as a decimal number
In Excel:
DOLLARDE()- Returns:
- excelbird.fn.DOLLARFR(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Converts a dollar price, expressed as a decimal number, into a dollar price, expressed as a fraction
In Excel:
DOLLARFR()- Returns:
- excelbird.fn.DPRODUCT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Database: Multiplies the values in a particular field of records that match the criteria in a database
In Excel:
DPRODUCT()- Returns:
- excelbird.fn.DROP(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Excludes a specified number of rows or columns from the start or end of an array
In Excel:
DROP()- Returns:
- excelbird.fn.DSTDEV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Database: Estimates the standard deviation based on a sample of selected database entries
In Excel:
DSTDEV()- Returns:
- excelbird.fn.DSTDEVP(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Database: Calculates the standard deviation based on the entire population of selected database entries
In Excel:
DSTDEVP()- Returns:
- excelbird.fn.DSUM(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Database: Adds the numbers in the field column of records in the database that match the criteria
In Excel:
DSUM()- Returns:
- excelbird.fn.DURATION(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the annual duration of a security with periodic interest payments
In Excel:
DURATION()- Returns:
- excelbird.fn.DVAR(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Database: Estimates variance based on a sample from selected database entries
In Excel:
DVAR()- Returns:
- excelbird.fn.DVARP(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Database: Calculates variance based on the entire population of selected database entries
In Excel:
DVARP()- Returns:
- excelbird.fn.EDATE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Returns the serial number of the date that is the indicated number of months before or after the start date
In Excel:
EDATE()- Returns:
- excelbird.fn.EFFECT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the effective annual interest rate
In Excel:
EFFECT()- Returns:
- excelbird.fn.ENCODEURL(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Web: Returns a URL-encoded string
In Excel:
ENCODEURL()- Returns:
- excelbird.fn.EOMONTH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Returns the serial number of the last day of the month before or after a specified number of months
In Excel:
EOMONTH()- Returns:
- excelbird.fn.ERF(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the error function
In Excel:
ERF()- Returns:
- excelbird.fn.ERFC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the complementary error function
In Excel:
ERFC()- Returns:
- excelbird.fn.ERFC_PRECISE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the complementary ERF function integrated between x and infinity
In Excel:
ERFC.PRECISE()- Returns:
- excelbird.fn.ERF_PRECISE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the error function
In Excel:
ERF.PRECISE()- Returns:
- excelbird.fn.ERROR_TYPE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Information: Returns a number corresponding to an error type
In Excel:
ERROR.TYPE()- Returns:
- excelbird.fn.EUROCONVERT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Add-in and Automation: Converts a number to euros, converts a number from euros to a euro member currency, or converts a number from one euro member currency to another by using the euro as an intermediary (triangulation).
In Excel:
EUROCONVERT()- Returns:
- excelbird.fn.EVEN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Rounds a number up to the nearest even integer
In Excel:
EVEN()- Returns:
- excelbird.fn.EXACT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Checks to see if two text values are identical
In Excel:
EXACT()- Returns:
- excelbird.fn.EXP(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns <i class=”ocpItalic”>e</i> raised to the power of a given number
In Excel:
EXP()- Returns:
- excelbird.fn.EXPAND(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Expands or pads an array to specified row and column dimensions
In Excel:
EXPAND()- Returns:
- excelbird.fn.EXPONDIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the exponential distribution
In Excel:
EXPONDIST()- Returns:
- excelbird.fn.EXPON_DIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the exponential distribution
In Excel:
EXPON.DIST()- Returns:
- excelbird.fn.FACT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the factorial of a number
In Excel:
FACT()- Returns:
- excelbird.fn.FACTDOUBLE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the double factorial of a number
In Excel:
FACTDOUBLE()- Returns:
- excelbird.fn.FALSE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Logical: Returns the logical value FALSE
In Excel:
FALSE()- Returns:
- excelbird.fn.FDIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the F probability distribution
In Excel:
FDIST()- Returns:
- excelbird.fn.FILTER(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Filters a range of data based on criteria you define
In Excel:
FILTER()- Returns:
- excelbird.fn.FILTERXML(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Web: Returns specific data from the XML content by using the specified XPath
In Excel:
FILTERXML()- Returns:
- excelbird.fn.FIND(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Finds one text value within another (case-sensitive)
In Excel:
FIND()- Returns:
- excelbird.fn.FINDB(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Finds one text value within another (case-sensitive)
In Excel:
FINDB()- Returns:
- excelbird.fn.FINV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the inverse of the F probability distribution
In Excel:
FINV()- Returns:
- excelbird.fn.FISHER(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the Fisher transformation
In Excel:
FISHER()- Returns:
- excelbird.fn.FISHERINV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the inverse of the Fisher transformation
In Excel:
FISHERINV()- Returns:
- excelbird.fn.FIXED(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Formats a number as text with a fixed number of decimals
In Excel:
FIXED()- Returns:
- excelbird.fn.FLOOR(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Rounds a number down, toward zero
In Excel:
FLOOR()- Returns:
- excelbird.fn.FLOOR_MATH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Rounds a number down, to the nearest integer or to the nearest multiple of significance
In Excel:
FLOOR.MATH()- Returns:
- excelbird.fn.FLOOR_PRECISE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Rounds a number the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded up.
In Excel:
FLOOR.PRECISE()- Returns:
- excelbird.fn.FORECAST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns a value along a linear trend
In Excel:
FORECAST()- Returns:
- excelbird.fn.FORMULATEXT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Returns the formula at the given reference as text
In Excel:
FORMULATEXT()- Returns:
- excelbird.fn.FREQUENCY(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns a frequency distribution as a vertical array
In Excel:
FREQUENCY()- Returns:
- excelbird.fn.FTEST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the result of an F-test
In Excel:
FTEST()- Returns:
- excelbird.fn.FV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the future value of an investment
In Excel:
FV()- Returns:
- excelbird.fn.FVSCHEDULE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the future value of an initial principal after applying a series of compound interest rates
In Excel:
FVSCHEDULE()- Returns:
- excelbird.fn.F_DIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the F probability distribution
In Excel:
F.DIST()- Returns:
- excelbird.fn.F_DIST_RT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the F probability distribution
In Excel:
F.DIST.RT()- Returns:
- excelbird.fn.F_INV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the inverse of the F probability distribution
In Excel:
F.INV()- Returns:
- excelbird.fn.F_INV_RT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the inverse of the F probability distribution
In Excel:
F.INV.RT()- Returns:
- excelbird.fn.F_TEST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the result of an F-test
In Excel:
F.TEST()- Returns:
- excelbird.fn.GAMMA(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the Gamma function value
In Excel:
GAMMA()- Returns:
- excelbird.fn.GAMMADIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the gamma distribution
In Excel:
GAMMADIST()- Returns:
- excelbird.fn.GAMMAINV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the inverse of the gamma cumulative distribution
In Excel:
GAMMAINV()- Returns:
- excelbird.fn.GAMMALN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the natural logarithm of the gamma function, Γ(x)
In Excel:
GAMMALN()- Returns:
- excelbird.fn.GAMMALN_PRECISE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the natural logarithm of the gamma function, Γ(x)
In Excel:
GAMMALN.PRECISE()- Returns:
- excelbird.fn.GAMMA_DIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the gamma distribution
In Excel:
GAMMA.DIST()- Returns:
- excelbird.fn.GAMMA_INV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the inverse of the gamma cumulative distribution
In Excel:
GAMMA.INV()- Returns:
- excelbird.fn.GAUSS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns 0.5 less than the standard normal cumulative distribution
In Excel:
GAUSS()- Returns:
- excelbird.fn.GCD(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the greatest common divisor
In Excel:
GCD()- Returns:
- excelbird.fn.GEOMEAN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the geometric mean
In Excel:
GEOMEAN()- Returns:
- excelbird.fn.GESTEP(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Tests whether a number is greater than a threshold value
In Excel:
GESTEP()- Returns:
- excelbird.fn.GETPIVOTDATA(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Returns data stored in a PivotTable report
In Excel:
GETPIVOTDATA()- Returns:
- excelbird.fn.GROWTH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns values along an exponential trend
In Excel:
GROWTH()- Returns:
- excelbird.fn.HARMEAN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the harmonic mean
In Excel:
HARMEAN()- Returns:
- excelbird.fn.HEX2BIN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Converts a hexadecimal number to binary
In Excel:
HEX2BIN()- Returns:
- excelbird.fn.HEX2DEC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Converts a hexadecimal number to decimal
In Excel:
HEX2DEC()- Returns:
- excelbird.fn.HEX2OCT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Converts a hexadecimal number to octal
In Excel:
HEX2OCT()- Returns:
- excelbird.fn.HLOOKUP(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Looks in the top row of an array and returns the value of the indicated cell
In Excel:
HLOOKUP()- Returns:
- excelbird.fn.HOUR(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Converts a serial number to an hour
In Excel:
HOUR()- Returns:
- excelbird.fn.HSTACK(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Appends arrays horizontally and in sequence to return a larger array
In Excel:
HSTACK()- Returns:
- excelbird.fn.HYPERLINK(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Creates a shortcut or jump that opens a document stored on a network server, an intranet, or the Internet
In Excel:
HYPERLINK()- Returns:
- excelbird.fn.HYPGEOMDIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the hypergeometric distribution
In Excel:
HYPGEOMDIST()- Returns:
- excelbird.fn.HYPGEOM_DIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the hypergeometric distribution
In Excel:
HYPGEOM.DIST()- Returns:
- excelbird.fn.IF(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Logical: Specifies a logical test to perform
In Excel:
IF()- Returns:
- excelbird.fn.IFERROR(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Logical: Returns a value you specify if a formula evaluates to an error; otherwise, returns the result of the formula
In Excel:
IFERROR()- Returns:
- excelbird.fn.IFNA(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Logical: Returns the value you specify if the expression resolves to #N/A, otherwise returns the result of the expression
In Excel:
IFNA()- Returns:
- excelbird.fn.IFS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Logical: Checks whether one or more conditions are met and returns a value that corresponds to the first TRUE condition.
In Excel:
IFS()- Returns:
- excelbird.fn.IMABS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the absolute value (modulus) of a complex number
In Excel:
IMABS()- Returns:
- excelbird.fn.IMAGINARY(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the imaginary coefficient of a complex number
In Excel:
IMAGINARY()- Returns:
- excelbird.fn.IMARGUMENT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the argument theta, an angle expressed in radians
In Excel:
IMARGUMENT()- Returns:
- excelbird.fn.IMCONJUGATE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the complex conjugate of a complex number
In Excel:
IMCONJUGATE()- Returns:
- excelbird.fn.IMCOS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the cosine of a complex number
In Excel:
IMCOS()- Returns:
- excelbird.fn.IMCOSH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the hyperbolic cosine of a complex number
In Excel:
IMCOSH()- Returns:
- excelbird.fn.IMCOT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the cotangent of a complex number
In Excel:
IMCOT()- Returns:
- excelbird.fn.IMCSC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the cosecant of a complex number
In Excel:
IMCSC()- Returns:
- excelbird.fn.IMCSCH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the hyperbolic cosecant of a complex number
In Excel:
IMCSCH()- Returns:
- excelbird.fn.IMDIV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the quotient of two complex numbers
In Excel:
IMDIV()- Returns:
- excelbird.fn.IMEXP(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the exponential of a complex number
In Excel:
IMEXP()- Returns:
- excelbird.fn.IMLN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the natural logarithm of a complex number
In Excel:
IMLN()- Returns:
- excelbird.fn.IMLOG10(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the base-10 logarithm of a complex number
In Excel:
IMLOG10()- Returns:
- excelbird.fn.IMLOG2(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the base-2 logarithm of a complex number
In Excel:
IMLOG2()- Returns:
- excelbird.fn.IMPOWER(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns a complex number raised to an integer power
In Excel:
IMPOWER()- Returns:
- excelbird.fn.IMPRODUCT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the product of complex numbers
In Excel:
IMPRODUCT()- Returns:
- excelbird.fn.IMREAL(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the real coefficient of a complex number
In Excel:
IMREAL()- Returns:
- excelbird.fn.IMSEC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the secant of a complex number
In Excel:
IMSEC()- Returns:
- excelbird.fn.IMSECH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the hyperbolic secant of a complex number
In Excel:
IMSECH()- Returns:
- excelbird.fn.IMSIN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the sine of a complex number
In Excel:
IMSIN()- Returns:
- excelbird.fn.IMSINH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the hyperbolic sine of a complex number
In Excel:
IMSINH()- Returns:
- excelbird.fn.IMSQRT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the square root of a complex number
In Excel:
IMSQRT()- Returns:
- excelbird.fn.IMSUB(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the difference between two complex numbers
In Excel:
IMSUB()- Returns:
- excelbird.fn.IMSUM(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the sum of complex numbers
In Excel:
IMSUM()- Returns:
- excelbird.fn.IMTAN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Returns the tangent of a complex number
In Excel:
IMTAN()- Returns:
- excelbird.fn.INDEX(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Uses an index to choose a value from a reference or array
In Excel:
INDEX()- Returns:
- excelbird.fn.INDIRECT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Returns a reference indicated by a text value
In Excel:
INDIRECT()- Returns:
- excelbird.fn.INFO(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Information: Returns information about the current operating environment
In Excel:
INFO()- Returns:
- excelbird.fn.INT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Rounds a number down to the nearest integer
In Excel:
INT()- Returns:
- excelbird.fn.INTERCEPT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the intercept of the linear regression line
In Excel:
INTERCEPT()- Returns:
- excelbird.fn.INTRATE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the interest rate for a fully invested security
In Excel:
INTRATE()- Returns:
- excelbird.fn.IPMT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the interest payment for an investment for a given period
In Excel:
IPMT()- Returns:
- excelbird.fn.IRR(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the internal rate of return for a series of cash flows
In Excel:
IRR()- Returns:
- excelbird.fn.ISBLANK(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Information: Returns TRUE if the value is blank
In Excel:
ISBLANK()- Returns:
- excelbird.fn.ISERR(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Information: Returns TRUE if the value is any error value except #N/A
In Excel:
ISERR()- Returns:
- excelbird.fn.ISERROR(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Information: Returns TRUE if the value is any error value
In Excel:
ISERROR()- Returns:
- excelbird.fn.ISEVEN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Information: Returns TRUE if the number is even
In Excel:
ISEVEN()- Returns:
- excelbird.fn.ISFORMULA(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Information: Returns TRUE if there is a reference to a cell that contains a formula
In Excel:
ISFORMULA()- Returns:
- excelbird.fn.ISLOGICAL(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Information: Returns TRUE if the value is a logical value
In Excel:
ISLOGICAL()- Returns:
- excelbird.fn.ISNA(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Information: Returns TRUE if the value is the #N/A error value
In Excel:
ISNA()- Returns:
- excelbird.fn.ISNONTEXT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Information: Returns TRUE if the value is not text
In Excel:
ISNONTEXT()- Returns:
- excelbird.fn.ISNUMBER(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Information: Returns TRUE if the value is a number
In Excel:
ISNUMBER()- Returns:
- excelbird.fn.ISODD(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Information: Returns TRUE if the number is odd
In Excel:
ISODD()- Returns:
- excelbird.fn.ISOMITTED(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Information: Checks whether the value in a LAMBDA is missing and returns TRUE or FALSE
In Excel:
ISOMITTED()- Returns:
- excelbird.fn.ISOWEEKNUM(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Returns the number of the ISO week number of the year for a given date
In Excel:
ISOWEEKNUM()- Returns:
- excelbird.fn.ISO_CEILING(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns a number that is rounded up to the nearest integer or to the nearest multiple of significance
In Excel:
ISO.CEILING()- Returns:
- excelbird.fn.ISPMT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Calculates the interest paid during a specific period of an investment
In Excel:
ISPMT()- Returns:
- excelbird.fn.ISREF(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Information: Returns TRUE if the value is a reference
In Excel:
ISREF()- Returns:
- excelbird.fn.ISTEXT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Information: Returns TRUE if the value is text
In Excel:
ISTEXT()- Returns:
- excelbird.fn.JIS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Changes half-width (single-byte) characters within a string to full-width (double-byte) characters
In Excel:
JIS()- Returns:
- excelbird.fn.KURT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the kurtosis of a data set
In Excel:
KURT()- Returns:
- excelbird.fn.LAMBDA(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Logical: Create custom, reusable functions and call them by a friendly name
In Excel:
LAMBDA()- Returns:
- excelbird.fn.LARGE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the k-th largest value in a data set
In Excel:
LARGE()- Returns:
- excelbird.fn.LCM(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the least common multiple
In Excel:
LCM()- Returns:
- excelbird.fn.LEFT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Returns the leftmost characters from a text value
In Excel:
LEFT()- Returns:
- excelbird.fn.LEFTB(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Returns the leftmost characters from a text value
In Excel:
LEFTB()- Returns:
- excelbird.fn.LEN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Returns the number of characters in a text string
In Excel:
LEN()- Returns:
- excelbird.fn.LENB(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Returns the number of characters in a text string
In Excel:
LENB()- Returns:
- excelbird.fn.LET(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Logical: Assigns names to calculation results
In Excel:
LET()- Returns:
- excelbird.fn.LINEST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the parameters of a linear trend
In Excel:
LINEST()- Returns:
- excelbird.fn.LN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the natural logarithm of a number
In Excel:
LN()- Returns:
- excelbird.fn.LOG(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the logarithm of a number to a specified base
In Excel:
LOG()- Returns:
- excelbird.fn.LOG10(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the base-10 logarithm of a number
In Excel:
LOG10()- Returns:
- excelbird.fn.LOGEST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the parameters of an exponential trend
In Excel:
LOGEST()- Returns:
- excelbird.fn.LOGINV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the inverse of the lognormal cumulative distribution
In Excel:
LOGINV()- Returns:
- excelbird.fn.LOGNORMDIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the cumulative lognormal distribution
In Excel:
LOGNORMDIST()- Returns:
- excelbird.fn.LOGNORM_DIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the cumulative lognormal distribution
In Excel:
LOGNORM.DIST()- Returns:
- excelbird.fn.LOGNORM_INV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the inverse of the lognormal cumulative distribution
In Excel:
LOGNORM.INV()- Returns:
- excelbird.fn.LOOKUP(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Looks up values in a vector or array
In Excel:
LOOKUP()- Returns:
- excelbird.fn.LOWER(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Converts text to lowercase
In Excel:
LOWER()- Returns:
- excelbird.fn.MAKEARRAY(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Logical: Returns a calculated array of a specified row and column size, by applying a LAMBDA
In Excel:
MAKEARRAY()- Returns:
- excelbird.fn.MAP(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Logical: 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
In Excel:
MAP()- Returns:
- excelbird.fn.MATCH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Looks up values in a reference or array
In Excel:
MATCH()- Returns:
- excelbird.fn.MAX(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the maximum value in a list of arguments
In Excel:
MAX()- Returns:
- excelbird.fn.MAXA(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the maximum value in a list of arguments, including numbers, text, and logical values
In Excel:
MAXA()- Returns:
- excelbird.fn.MAXIFS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the maximum value among cells specified by a given set of conditions or criteria
In Excel:
MAXIFS()- Returns:
- excelbird.fn.MDETERM(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the matrix determinant of an array
In Excel:
MDETERM()- Returns:
- excelbird.fn.MDURATION(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the Macauley modified duration for a security with an assumed par value of $100
In Excel:
MDURATION()- Returns:
- excelbird.fn.MEDIAN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the median of the given numbers
In Excel:
MEDIAN()- Returns:
- excelbird.fn.MID(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Returns a specific number of characters from a text string starting at the position you specify
In Excel:
MID()- Returns:
- excelbird.fn.MIDB(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Returns a specific number of characters from a text string starting at the position you specify
In Excel:
MIDB()- Returns:
- excelbird.fn.MIN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the minimum value in a list of arguments
In Excel:
MIN()- Returns:
- excelbird.fn.MINA(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the smallest value in a list of arguments, including numbers, text, and logical values
In Excel:
MINA()- Returns:
- excelbird.fn.MINIFS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the minimum value among cells specified by a given set of conditions or criteria.
In Excel:
MINIFS()- Returns:
- excelbird.fn.MINUTE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Converts a serial number to a minute
In Excel:
MINUTE()- Returns:
- excelbird.fn.MINVERSE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the matrix inverse of an array
In Excel:
MINVERSE()- Returns:
- excelbird.fn.MIRR(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the internal rate of return where positive and negative cash flows are financed at different rates
In Excel:
MIRR()- Returns:
- excelbird.fn.MMULT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the matrix product of two arrays
In Excel:
MMULT()- Returns:
- excelbird.fn.MOD(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the remainder from division
In Excel:
MOD()- Returns:
- excelbird.fn.MODE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the most common value in a data set
In Excel:
MODE()- Returns:
- excelbird.fn.MODE_MULT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns a vertical array of the most frequently occurring, or repetitive values in an array or range of data
In Excel:
MODE.MULT()- Returns:
- excelbird.fn.MODE_SNGL(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the most common value in a data set
In Excel:
MODE.SNGL()- Returns:
- excelbird.fn.MONTH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Converts a serial number to a month
In Excel:
MONTH()- Returns:
- excelbird.fn.MROUND(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns a number rounded to the desired multiple
In Excel:
MROUND()- Returns:
- excelbird.fn.MULTINOMIAL(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the multinomial of a set of numbers
In Excel:
MULTINOMIAL()- Returns:
- excelbird.fn.MUNIT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the unit matrix or the specified dimension
In Excel:
MUNIT()- Returns:
- excelbird.fn.N(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Information: Returns a value converted to a number
In Excel:
N()- Returns:
- excelbird.fn.NA(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Information: Returns the error value #N/A
In Excel:
NA()- Returns:
- excelbird.fn.NEGBINOMDIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the negative binomial distribution
In Excel:
NEGBINOMDIST()- Returns:
- excelbird.fn.NEGBINOM_DIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the negative binomial distribution
In Excel:
NEGBINOM.DIST()- Returns:
- excelbird.fn.NETWORKDAYS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Returns the number of whole workdays between two dates
In Excel:
NETWORKDAYS()- Returns:
- excelbird.fn.NETWORKDAYS_INTL(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Returns the number of whole workdays between two dates using parameters to indicate which and how many days are weekend days
In Excel:
NETWORKDAYS.INTL()- Returns:
- excelbird.fn.NOMINAL(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the annual nominal interest rate
In Excel:
NOMINAL()- Returns:
- excelbird.fn.NORMDIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the normal cumulative distribution
In Excel:
NORMDIST()- Returns:
- excelbird.fn.NORMINV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the inverse of the normal cumulative distribution
In Excel:
NORMINV()- Returns:
- excelbird.fn.NORMSDIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the standard normal cumulative distribution
In Excel:
NORMSDIST()- Returns:
- excelbird.fn.NORMSINV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the inverse of the standard normal cumulative distribution
In Excel:
NORMSINV()- Returns:
- excelbird.fn.NORM_DIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the normal cumulative distribution
In Excel:
NORM.DIST()- Returns:
- excelbird.fn.NORM_INV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the inverse of the normal cumulative distribution
In Excel:
NORM.INV()- Returns:
- excelbird.fn.NORM_S_DIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the standard normal cumulative distribution
In Excel:
NORM.S.DIST()- Returns:
- excelbird.fn.NORM_S_INV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the inverse of the standard normal cumulative distribution
In Excel:
NORM.S.INV()- Returns:
- excelbird.fn.NOT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Logical: Reverses the logic of its argument
In Excel:
NOT()- Returns:
- excelbird.fn.NOW(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Returns the serial number of the current date and time
In Excel:
NOW()- Returns:
- excelbird.fn.NPER(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the number of periods for an investment
In Excel:
NPER()- Returns:
- excelbird.fn.NPV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the net present value of an investment based on a series of periodic cash flows and a discount rate
In Excel:
NPV()- Returns:
- excelbird.fn.NUMBERVALUE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Converts text to number in a locale-independent manner
In Excel:
NUMBERVALUE()- Returns:
- excelbird.fn.OCT2BIN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Converts an octal number to binary
In Excel:
OCT2BIN()- Returns:
- excelbird.fn.OCT2DEC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Converts an octal number to decimal
In Excel:
OCT2DEC()- Returns:
- excelbird.fn.OCT2HEX(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Engineering: Converts an octal number to hexadecimal
In Excel:
OCT2HEX()- Returns:
- excelbird.fn.ODD(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Rounds a number up to the nearest odd integer
In Excel:
ODD()- Returns:
- excelbird.fn.ODDFPRICE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the price per $100 face value of a security with an odd first period
In Excel:
ODDFPRICE()- Returns:
- excelbird.fn.ODDFYIELD(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the yield of a security with an odd first period
In Excel:
ODDFYIELD()- Returns:
- excelbird.fn.ODDLPRICE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the price per $100 face value of a security with an odd last period
In Excel:
ODDLPRICE()- Returns:
- excelbird.fn.ODDLYIELD(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the yield of a security with an odd last period
In Excel:
ODDLYIELD()- Returns:
- excelbird.fn.OFFSET(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Returns a reference offset from a given reference
In Excel:
OFFSET()- Returns:
- excelbird.fn.OR(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Logical: Returns TRUE if any argument is TRUE
In Excel:
OR()- Returns:
- excelbird.fn.PDURATION(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the number of periods required by an investment to reach a specified value
In Excel:
PDURATION()- Returns:
- excelbird.fn.PEARSON(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the Pearson product moment correlation coefficient
In Excel:
PEARSON()- Returns:
- excelbird.fn.PERCENTILE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the k-th percentile of values in a range
In Excel:
PERCENTILE()- Returns:
- excelbird.fn.PERCENTILE_EXC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the k-th percentile of values in a range, where k is in the range 0..1, exclusive
In Excel:
PERCENTILE.EXC()- Returns:
- excelbird.fn.PERCENTILE_INC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the k-th percentile of values in a range
In Excel:
PERCENTILE.INC()- Returns:
- excelbird.fn.PERCENTRANK(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the percentage rank of a value in a data set
In Excel:
PERCENTRANK()- Returns:
- excelbird.fn.PERCENTRANK_EXC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the rank of a value in a data set as a percentage (0..1, exclusive) of the data set
In Excel:
PERCENTRANK.EXC()- Returns:
- excelbird.fn.PERCENTRANK_INC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the percentage rank of a value in a data set
In Excel:
PERCENTRANK.INC()- Returns:
- excelbird.fn.PERMUT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the number of permutations for a given number of objects
In Excel:
PERMUT()- Returns:
- excelbird.fn.PERMUTATIONA(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the number of permutations for a given number of objects (with repetitions) that can be selected from the total objects
In Excel:
PERMUTATIONA()- Returns:
- excelbird.fn.PHI(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the value of the density function for a standard normal distribution
In Excel:
PHI()- Returns:
- excelbird.fn.PHONETIC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Extracts the phonetic (furigana) characters from a text string
In Excel:
PHONETIC()- Returns:
- excelbird.fn.PI(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the value of pi
In Excel:
PI()- Returns:
- excelbird.fn.PMT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the periodic payment for an annuity
In Excel:
PMT()- Returns:
- excelbird.fn.POISSON(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the Poisson distribution
In Excel:
POISSON()- Returns:
- excelbird.fn.POISSON_DIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the Poisson distribution
In Excel:
POISSON.DIST()- Returns:
- excelbird.fn.POWER(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the result of a number raised to a power
In Excel:
POWER()- Returns:
- excelbird.fn.PPMT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the payment on the principal for an investment for a given period
In Excel:
PPMT()- Returns:
- excelbird.fn.PRICE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the price per $100 face value of a security that pays periodic interest
In Excel:
PRICE()- Returns:
- excelbird.fn.PRICEDISC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the price per $100 face value of a discounted security
In Excel:
PRICEDISC()- Returns:
- excelbird.fn.PRICEMAT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the price per $100 face value of a security that pays interest at maturity
In Excel:
PRICEMAT()- Returns:
- excelbird.fn.PROB(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the probability that values in a range are between two limits
In Excel:
PROB()- Returns:
- excelbird.fn.PRODUCT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Multiplies its arguments
In Excel:
PRODUCT()- Returns:
- excelbird.fn.PROPER(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Capitalizes the first letter in each word of a text value
In Excel:
PROPER()- Returns:
- excelbird.fn.PV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the present value of an investment
In Excel:
PV()- Returns:
- excelbird.fn.QUARTILE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the quartile of a data set
In Excel:
QUARTILE()- Returns:
- excelbird.fn.QUARTILE_EXC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the quartile of the data set, based on percentile values from 0..1, exclusive
In Excel:
QUARTILE.EXC()- Returns:
- excelbird.fn.QUARTILE_INC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the quartile of a data set
In Excel:
QUARTILE.INC()- Returns:
- excelbird.fn.QUOTIENT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the integer portion of a division
In Excel:
QUOTIENT()- Returns:
- excelbird.fn.RADIANS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Converts degrees to radians
In Excel:
RADIANS()- Returns:
- excelbird.fn.RAND(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns a random number between 0 and 1
In Excel:
RAND()- Returns:
- excelbird.fn.RANDARRAY(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns an array of random numbers between 0 and 1. However, you can specify the number of rows and columns to fill, minimum and maximum values, and whether to return whole numbers or decimal values.
In Excel:
RANDARRAY()- Returns:
- excelbird.fn.RANDBETWEEN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns a random number between the numbers you specify
In Excel:
RANDBETWEEN()- Returns:
- excelbird.fn.RANK(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the rank of a number in a list of numbers
In Excel:
RANK()- Returns:
- excelbird.fn.RANK_AVG(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the rank of a number in a list of numbers
In Excel:
RANK.AVG()- Returns:
- excelbird.fn.RANK_EQ(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the rank of a number in a list of numbers
In Excel:
RANK.EQ()- Returns:
- excelbird.fn.RATE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the interest rate per period of an annuity
In Excel:
RATE()- Returns:
- excelbird.fn.RECEIVED(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the amount received at maturity for a fully invested security
In Excel:
RECEIVED()- Returns:
- excelbird.fn.REDUCE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Logical: Reduces an array to an accumulated value by applying a LAMBDA to each value and returning the total value in the accumulator
In Excel:
REDUCE()- Returns:
- excelbird.fn.REGISTER_ID(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Add-in and Automation: Returns the register ID of the specified dynamic link library (DLL) or code resource that has been previously registered
In Excel:
REGISTER.ID()- Returns:
- excelbird.fn.REPLACE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Replaces characters within text
In Excel:
REPLACE()- Returns:
- excelbird.fn.REPLACEB(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Replaces characters within text
In Excel:
REPLACEB()- Returns:
- excelbird.fn.REPT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Repeats text a given number of times
In Excel:
REPT()- Returns:
- excelbird.fn.RIGHT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Returns the rightmost characters from a text value
In Excel:
RIGHT()- Returns:
- excelbird.fn.RIGHTB(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Returns the rightmost characters from a text value
In Excel:
RIGHTB()- Returns:
- excelbird.fn.ROMAN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Converts an arabic numeral to roman, as text
In Excel:
ROMAN()- Returns:
- excelbird.fn.ROUND(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Rounds a number to a specified number of digits
In Excel:
ROUND()- Returns:
- excelbird.fn.ROUNDDOWN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Rounds a number down, toward zero
In Excel:
ROUNDDOWN()- Returns:
- excelbird.fn.ROUNDUP(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Rounds a number up, away from zero
In Excel:
ROUNDUP()- Returns:
- excelbird.fn.ROW(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Returns the row number of a reference
In Excel:
ROW()- Returns:
- excelbird.fn.ROWS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Returns the number of rows in a reference
In Excel:
ROWS()- Returns:
- excelbird.fn.RRI(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns an equivalent interest rate for the growth of an investment
In Excel:
RRI()- Returns:
- excelbird.fn.RSQ(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the square of the Pearson product moment correlation coefficient
In Excel:
RSQ()- Returns:
- excelbird.fn.RTD(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Retrieves real-time data from a program that supports COM automation
In Excel:
RTD()- Returns:
- excelbird.fn.SCAN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Logical: Scans an array by applying a LAMBDA to each value and returns an array that has each intermediate value
In Excel:
SCAN()- Returns:
- excelbird.fn.SEARCH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Finds one text value within another (not case-sensitive)
In Excel:
SEARCH()- Returns:
- excelbird.fn.SEARCHB(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Finds one text value within another (not case-sensitive)
In Excel:
SEARCHB()- Returns:
- excelbird.fn.SEC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the secant of an angle
In Excel:
SEC()- Returns:
- excelbird.fn.SECH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the hyperbolic secant of an angle
In Excel:
SECH()- Returns:
- excelbird.fn.SECOND(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Converts a serial number to a second
In Excel:
SECOND()- Returns:
- excelbird.fn.SEQUENCE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Generates a list of sequential numbers in an array, such as 1, 2, 3, 4
In Excel:
SEQUENCE()- Returns:
- excelbird.fn.SERIESSUM(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the sum of a power series based on the formula
In Excel:
SERIESSUM()- Returns:
- excelbird.fn.SHEET(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Information: Returns the sheet number of the referenced sheet
In Excel:
SHEET()- Returns:
- excelbird.fn.SHEETS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Information: Returns the number of sheets in a reference
In Excel:
SHEETS()- Returns:
- excelbird.fn.SIGN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the sign of a number
In Excel:
SIGN()- Returns:
- excelbird.fn.SIN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the sine of the given angle
In Excel:
SIN()- Returns:
- excelbird.fn.SINH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the hyperbolic sine of a number
In Excel:
SINH()- Returns:
- excelbird.fn.SKEW(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the skewness of a distribution
In Excel:
SKEW()- Returns:
- excelbird.fn.SKEW_P(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the skewness of a distribution based on a population: a characterization of the degree of asymmetry of a distribution around its mean
In Excel:
SKEW.P()- Returns:
- excelbird.fn.SLN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the straight-line depreciation of an asset for one period
In Excel:
SLN()- Returns:
- excelbird.fn.SLOPE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the slope of the linear regression line
In Excel:
SLOPE()- Returns:
- excelbird.fn.SMALL(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the k-th smallest value in a data set
In Excel:
SMALL()- Returns:
- excelbird.fn.SORT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Sorts the contents of a range or array
In Excel:
SORT()- Returns:
- excelbird.fn.SORTBY(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Sorts the contents of a range or array based on the values in a corresponding range or array
In Excel:
SORTBY()- Returns:
- excelbird.fn.SQRT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns a positive square root
In Excel:
SQRT()- Returns:
- excelbird.fn.SQRTPI(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the square root of (number * pi)
In Excel:
SQRTPI()- Returns:
- excelbird.fn.STANDARDIZE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns a normalized value
In Excel:
STANDARDIZE()- Returns:
- excelbird.fn.STDEV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Estimates standard deviation based on a sample
In Excel:
STDEV()- Returns:
- excelbird.fn.STDEVA(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Estimates standard deviation based on a sample, including numbers, text, and logical values
In Excel:
STDEVA()- Returns:
- excelbird.fn.STDEVP(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Calculates standard deviation based on the entire population
In Excel:
STDEVP()- Returns:
- excelbird.fn.STDEVPA(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Calculates standard deviation based on the entire population, including numbers, text, and logical values
In Excel:
STDEVPA()- Returns:
- excelbird.fn.STDEV_P(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Calculates standard deviation based on the entire population
In Excel:
STDEV.P()- Returns:
- excelbird.fn.STDEV_S(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Estimates standard deviation based on a sample
In Excel:
STDEV.S()- Returns:
- excelbird.fn.STEYX(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the standard error of the predicted y-value for each x in the regression
In Excel:
STEYX()- Returns:
- excelbird.fn.STOCKHISTORY(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Retrieves historical data about a financial instrument
In Excel:
STOCKHISTORY()- Returns:
- excelbird.fn.SUBSTITUTE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Substitutes new text for old text in a text string
In Excel:
SUBSTITUTE()- Returns:
- excelbird.fn.SUBTOTAL(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns a subtotal in a list or database
In Excel:
SUBTOTAL()- Returns:
- excelbird.fn.SUM(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Adds its arguments
In Excel:
SUM()- Returns:
- excelbird.fn.SUMIF(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Adds the cells specified by a given criteria
In Excel:
SUMIF()- Returns:
- excelbird.fn.SUMIFS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Adds the cells in a range that meet multiple criteria
In Excel:
SUMIFS()- Returns:
- excelbird.fn.SUMPRODUCT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the sum of the products of corresponding array components
In Excel:
SUMPRODUCT()- Returns:
- excelbird.fn.SUMSQ(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the sum of the squares of the arguments
In Excel:
SUMSQ()- Returns:
- excelbird.fn.SUMX2MY2(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the sum of the difference of squares of corresponding values in two arrays
In Excel:
SUMX2MY2()- Returns:
- excelbird.fn.SUMX2PY2(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the sum of the sum of squares of corresponding values in two arrays
In Excel:
SUMX2PY2()- Returns:
- excelbird.fn.SUMXMY2(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the sum of squares of differences of corresponding values in two arrays
In Excel:
SUMXMY2()- Returns:
- excelbird.fn.SWITCH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Logical: 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.
In Excel:
SWITCH()- Returns:
- excelbird.fn.SYD(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the sum-of-years’ digits depreciation of an asset for a specified period
In Excel:
SYD()- Returns:
- excelbird.fn.T(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Converts its arguments to text
In Excel:
T()- Returns:
- excelbird.fn.TAKE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Returns a specified number of contiguous rows or columns from the start or end of an array
In Excel:
TAKE()- Returns:
- excelbird.fn.TAN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the tangent of a number
In Excel:
TAN()- Returns:
- excelbird.fn.TANH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Returns the hyperbolic tangent of a number
In Excel:
TANH()- Returns:
- excelbird.fn.TBILLEQ(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the bond-equivalent yield for a Treasury bill
In Excel:
TBILLEQ()- Returns:
- excelbird.fn.TBILLPRICE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the price per $100 face value for a Treasury bill
In Excel:
TBILLPRICE()- Returns:
- excelbird.fn.TBILLYIELD(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the yield for a Treasury bill
In Excel:
TBILLYIELD()- Returns:
- excelbird.fn.TDIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the Student’s t-distribution
In Excel:
TDIST()- Returns:
- excelbird.fn.TEXT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Formats a number and converts it to text
In Excel:
TEXT()- Returns:
- excelbird.fn.TEXTAFTER(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Returns text that occurs after given character or string
In Excel:
TEXTAFTER()- Returns:
- excelbird.fn.TEXTBEFORE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Returns text that occurs before a given character or string
In Excel:
TEXTBEFORE()- Returns:
- excelbird.fn.TEXTJOIN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Combines the text from multiple ranges and/or strings
In Excel:
TEXTJOIN()- Returns:
- excelbird.fn.TEXTSPLIT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Splits text strings by using column and row delimiters
In Excel:
TEXTSPLIT()- Returns:
- excelbird.fn.TIME(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Returns the serial number of a particular time
In Excel:
TIME()- Returns:
- excelbird.fn.TIMEVALUE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Converts a time in the form of text to a serial number
In Excel:
TIMEVALUE()- Returns:
- excelbird.fn.TINV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the inverse of the Student’s t-distribution
In Excel:
TINV()- Returns:
- excelbird.fn.TOCOL(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Returns the array in a single column
In Excel:
TOCOL()- Returns:
- excelbird.fn.TODAY(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Returns the serial number of today’s date
In Excel:
TODAY()- Returns:
- excelbird.fn.TOROW(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Returns the array in a single row
In Excel:
TOROW()- Returns:
- excelbird.fn.TRANSPOSE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Returns the transpose of an array
In Excel:
TRANSPOSE()- Returns:
- excelbird.fn.TREND(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns values along a linear trend
In Excel:
TREND()- Returns:
- excelbird.fn.TRIM(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Removes spaces from text
In Excel:
TRIM()- Returns:
- excelbird.fn.TRIMMEAN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the mean of the interior of a data set
In Excel:
TRIMMEAN()- Returns:
- excelbird.fn.TRUE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Logical: Returns the logical value TRUE
In Excel:
TRUE()- Returns:
- excelbird.fn.TRUNC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Math and trigonometry: Truncates a number to an integer
In Excel:
TRUNC()- Returns:
- excelbird.fn.TTEST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Returns the probability associated with a Student’s t-test
In Excel:
TTEST()- Returns:
- excelbird.fn.TYPE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Information: Returns a number indicating the data type of a value
In Excel:
TYPE()- Returns:
- excelbird.fn.T_DIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the Percentage Points (probability) for the Student t-distribution
In Excel:
T.DIST()- Returns:
- excelbird.fn.T_DIST_2T(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the Percentage Points (probability) for the Student t-distribution
In Excel:
T.DIST.2T()- Returns:
- excelbird.fn.T_DIST_RT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the Student’s t-distribution
In Excel:
T.DIST.RT()- Returns:
- excelbird.fn.T_INV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the t-value of the Student’s t-distribution as a function of the probability and the degrees of freedom
In Excel:
T.INV()- Returns:
- excelbird.fn.T_INV_2T(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the inverse of the Student’s t-distribution
In Excel:
T.INV.2T()- Returns:
- excelbird.fn.T_TEST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the probability associated with a Student’s t-test
In Excel:
T.TEST()- Returns:
- excelbird.fn.UNICHAR(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Returns the Unicode character that is references by the given numeric value
In Excel:
UNICHAR()- Returns:
- excelbird.fn.UNICODE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Returns the number (code point) that corresponds to the first character of the text
In Excel:
UNICODE()- Returns:
- excelbird.fn.UNIQUE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Returns a list of unique values in a list or range
In Excel:
UNIQUE()- Returns:
- excelbird.fn.UPPER(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Converts text to uppercase
In Excel:
UPPER()- Returns:
- excelbird.fn.VALUE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Converts a text argument to a number
In Excel:
VALUE()- Returns:
- excelbird.fn.VALUETOTEXT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Text: Returns text from any specified value
In Excel:
VALUETOTEXT()- Returns:
- excelbird.fn.VAR(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Estimates variance based on a sample
In Excel:
VAR()- Returns:
- excelbird.fn.VARA(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Estimates variance based on a sample, including numbers, text, and logical values
In Excel:
VARA()- Returns:
- excelbird.fn.VARP(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Calculates variance based on the entire population
In Excel:
VARP()- Returns:
- excelbird.fn.VARPA(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Calculates variance based on the entire population, including numbers, text, and logical values
In Excel:
VARPA()- Returns:
- excelbird.fn.VAR_P(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Calculates variance based on the entire population
In Excel:
VAR.P()- Returns:
- excelbird.fn.VAR_S(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Estimates variance based on a sample
In Excel:
VAR.S()- Returns:
- excelbird.fn.VDB(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the depreciation of an asset for a specified or partial period by using a declining balance method
In Excel:
VDB()- Returns:
- excelbird.fn.VLOOKUP(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Looks in the first column of an array and moves across the row to return the value of a cell
In Excel:
VLOOKUP()- Returns:
- excelbird.fn.VSTACK(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Look and reference: Appends arrays vertically and in sequence to return a larger array
In Excel:
VSTACK()- Returns:
- excelbird.fn.WEBSERVICE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Web: Returns data from a web service.
In Excel:
WEBSERVICE()- Returns:
- excelbird.fn.WEEKDAY(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Converts a serial number to a day of the week
In Excel:
WEEKDAY()- Returns:
- excelbird.fn.WEEKNUM(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Converts a serial number to a number representing where the week falls numerically with a year
In Excel:
WEEKNUM()- Returns:
- excelbird.fn.WEIBULL(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Compatibility: Calculates variance based on the entire population, including numbers, text, and logical values
In Excel:
WEIBULL()- Returns:
- excelbird.fn.WEIBULL_DIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Statistical: Returns the Weibull distribution
In Excel:
WEIBULL.DIST()- Returns:
- excelbird.fn.WORKDAY(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Returns the serial number of the date before or after a specified number of workdays
In Excel:
WORKDAY()- Returns:
- excelbird.fn.WORKDAY_INTL(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Returns the serial number of the date before or after a specified number of workdays using parameters to indicate which and how many days are weekend days
In Excel:
WORKDAY.INTL()- Returns:
- excelbird.fn.WRAPCOLS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Look and reference: Wraps the provided row or column of values by columns after a specified number of elements
In Excel:
WRAPCOLS()- Returns:
- excelbird.fn.WRAPROWS(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Look and reference: Wraps the provided row or column of values by rows after a specified number of elements
In Excel:
WRAPROWS()- Returns:
- excelbird.fn.XIRR(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the internal rate of return for a schedule of cash flows that is not necessarily periodic
In Excel:
XIRR()- Returns:
- excelbird.fn.XLOOKUP(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Searches a range or an array, and returns an item corresponding to the first match it finds. If a match doesn’t exist, then XLOOKUP can return the closest (approximate) match.
In Excel:
XLOOKUP()- Returns:
- excelbird.fn.XMATCH(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Lookup and reference: Returns the relative position of an item in an array or range of cells.
In Excel:
XMATCH()- Returns:
- excelbird.fn.XNPV(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the net present value for a schedule of cash flows that is not necessarily periodic
In Excel:
XNPV()- Returns:
- excelbird.fn.XOR(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Logical: Returns a logical exclusive OR of all arguments
In Excel:
XOR()- Returns:
- excelbird.fn.YEAR(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Converts a serial number to a year
In Excel:
YEAR()- Returns:
- excelbird.fn.YEARFRAC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Date and time: Returns the year fraction representing the number of whole days between start_date and end_date
In Excel:
YEARFRAC()- Returns:
- excelbird.fn.YIELD(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the yield on a security that pays periodic interest
In Excel:
YIELD()- Returns:
- excelbird.fn.YIELDDISC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the annual yield for a discounted security; for example, a Treasury bill
In Excel:
YIELDDISC()- Returns:
- excelbird.fn.YIELDMAT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#
Financial: Returns the annual yield of a security that pays interest at maturity
In Excel:
YIELDMAT()- Returns: