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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.CHITEST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Compatibility: Returns the test for independence

In Excel: CHITEST()

Returns:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.ENCODEURL(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Web: Returns a URL-encoded string

In Excel: ENCODEURL()

Returns:
Func
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:
Func
excelbird.fn.ERF(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Engineering: Returns the error function

In Excel: ERF()

Returns:
Func
excelbird.fn.ERFC(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Engineering: Returns the complementary error function

In Excel: ERFC()

Returns:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.EXPONDIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Compatibility: Returns the exponential distribution

In Excel: EXPONDIST()

Returns:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.FALSE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Logical: Returns the logical value FALSE

In Excel: FALSE()

Returns:
Func
excelbird.fn.FDIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Compatibility: Returns the F probability distribution

In Excel: FDIST()

Returns:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.FISHER(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Statistical: Returns the Fisher transformation

In Excel: FISHER()

Returns:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.GAMMA(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Statistical: Returns the Gamma function value

In Excel: GAMMA()

Returns:
Func
excelbird.fn.GAMMADIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Compatibility: Returns the gamma distribution

In Excel: GAMMADIST()

Returns:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.GEOMEAN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Statistical: Returns the geometric mean

In Excel: GEOMEAN()

Returns:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.HARMEAN(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Statistical: Returns the harmonic mean

In Excel: HARMEAN()

Returns:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func

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:
Func
excelbird.fn.HYPGEOMDIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Compatibility: Returns the hypergeometric distribution

In Excel: HYPGEOMDIST()

Returns:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.LET(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Logical: Assigns names to calculation results

In Excel: LET()

Returns:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.LOGNORMDIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Compatibility: Returns the cumulative lognormal distribution

In Excel: LOGNORMDIST()

Returns:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.LOWER(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Text: Converts text to lowercase

In Excel: LOWER()

Returns:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.NEGBINOMDIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Compatibility: Returns the negative binomial distribution

In Excel: NEGBINOMDIST()

Returns:
Func
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:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.NORMDIST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Compatibility: Returns the normal cumulative distribution

In Excel: NORMDIST()

Returns:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.POISSON(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Compatibility: Returns the Poisson distribution

In Excel: POISSON()

Returns:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.PRODUCT(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Math and trigonometry: Multiplies its arguments

In Excel: PRODUCT()

Returns:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.REPLACE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Text: Replaces characters within text

In Excel: REPLACE()

Returns:
Func
excelbird.fn.REPLACEB(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Text: Replaces characters within text

In Excel: REPLACEB()

Returns:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.STANDARDIZE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Statistical: Returns a normalized value

In Excel: STANDARDIZE()

Returns:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.SUM(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Math and trigonometry: Adds its arguments

In Excel: SUM()

Returns:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.T(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Text: Converts its arguments to text

In Excel: T()

Returns:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.TRIM(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Text: Removes spaces from text

In Excel: TRIM()

Returns:
Func
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:
Func
excelbird.fn.TRUE(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Logical: Returns the logical value TRUE

In Excel: TRUE()

Returns:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.UPPER(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Text: Converts text to uppercase

In Excel: UPPER()

Returns:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
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:
Func
excelbird.fn.ZTEST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Compatibility: Returns the one-tailed probability-value of a z-test

In Excel: ZTEST()

Returns:
Func
excelbird.fn.Z_TEST(*inner: Any, res_type: type | None = None, **kwargs: Any) Func[source]#

Statistical: Returns the one-tailed probability-value of a z-test

In Excel: Z.TEST()

Returns:
Func