Excel Formula Directory
Explore our comprehensive library of spreadsheet formulas with examples, use cases, and our interactive formula generator.
Showing 233 formulas
ABS
=ABS(-15)
Calculating the absolute value of a number to remove negativity for further calculations
View formula detailsACOS
=ACOS(0.5)
Finding the angle (in radians) from a cosine value for trigonometric calculations
View formula detailsACOSH
=ACOSH(2)
Finding the inverse hyperbolic cosine for exponential or logarithmic analysis
View formula detailsASIN
=ASIN(0.5)
Determining the angle (in radians) from a sine value for trigonometric problems
View formula detailsASINH
=ASINH(1)
Calculating the inverse hyperbolic sine for logarithmic or exponential modeling
View formula detailsATAN
=ATAN(1)
Finding the angle (in radians) from a tangent value for trigonometric analysis
View formula detailsATAN2
=ATAN2(1, 1)
Calculating the angle (in radians) from x and y coordinates for directional analysis
View formula detailsATANH
=ATANH(0.5)
Finding the inverse hyperbolic tangent for logarithmic or statistical analysis
View formula detailsCEILING
=CEILING(3.7, 1)
Rounding a number up to the nearest specified multiple for pricing or scheduling
View formula detailsCOMBIN
=COMBIN(5, 2)
Calculating the number of combinations for selecting items without regard to order
View formula detailsCOS
=COS(1.0472)
Calculating the cosine of an angle for trigonometric modeling
View formula detailsCOSH
=COSH(1)
Calculating the hyperbolic cosine for exponential or physical modeling
View formula detailsDEGREES
=DEGREES(1.0472)
Converting radians to degrees for angle readability
View formula detailsEVEN
=EVEN(3.2)
Rounding a number up to the nearest even integer for pairing or batching
View formula detailsEXP
=EXP(1)
Calculating the exponential value (e^x) for growth or decay models
View formula detailsFACT
=FACT(5)
Calculating the factorial of a number for permutations or probability
View formula detailsFACTDOUBLE
=FACTDOUBLE(7)
Calculating the double factorial for specialized combinatorial problems
View formula detailsFLOOR
=FLOOR(3.7, 1)
Rounding a number down to the nearest specified multiple for conservative estimates
View formula detailsGCD
=GCD(48, 18)
Finding the greatest common divisor of numbers for simplifying fractions or ratios
View formula detailsINT
=INT(3.7)
Extracting the integer part of a number for discrete calculations
View formula detailsLCM
=LCM(12, 18)
Finding the least common multiple of numbers for scheduling or alignment
View formula detailsLN
=LN(2.71828)
Calculating the natural logarithm for growth or decay analysis
View formula detailsLOG
=LOG(100, 10)
Calculating the logarithm with a custom base for scaling or comparison
View formula detailsLOG10
=LOG10(100)
Calculating the base-10 logarithm for scientific or engineering scales
View formula detailsMDETERM
=MDETERM(A1:B2)
Calculating the determinant of a matrix for linear algebra applications
View formula detailsMINVERSE
=MINVERSE(A1:B2)
Finding the inverse of a matrix for solving linear equations
View formula detailsMMULT
=MMULT(A1:B2, C1:D2)
Multiplying two matrices for transformations or data analysis
View formula detailsMOD
=MOD(10, 3)
Finding the remainder of a division for cyclic or grouping tasks
View formula detailsMROUND
=MROUND(3.7, 1)
Rounding a number to the nearest specified multiple for precise adjustments
View formula detailsMULTINOMIAL
=MULTINOMIAL(2, 3, 4)
Calculating the multinomial coefficient for probability distributions
View formula detailsODD
=ODD(3.2)
Rounding a number up to the nearest odd integer for specific alignments
View formula detailsPI
=PI()
Inserting the value of π for circular or trigonometric calculations
View formula detailsPOWER
=POWER(2, 3)
Raising a number to a specified power for exponential calculations
View formula detailsPRODUCT
=PRODUCT(A1:A3)
Multiplying a range of numbers for aggregate calculations
View formula detailsQUOTIENT
=QUOTIENT(10, 3)
Finding the integer quotient of a division for whole-number results
View formula detailsRADIANS
=RADIANS(180)
Converting degrees to radians for trigonometric calculations
View formula detailsRAND
=RAND()
Generating a random decimal between 0 and 1 for simulations
View formula detailsRANDBETWEEN
=RANDBETWEEN(1, 10)
Generating a random integer between two values for discrete sampling
View formula detailsROMAN
=ROMAN(2023)
Converting numbers to Roman numerals for outlines or labels
View formula detailsROUND
=ROUND(3.14159, 2)
Rounding a number to a specified decimal place for precision control
View formula detailsROUNDDOWN
=ROUNDDOWN(3.14159, 2)
Rounding a number down to a specified decimal place for conservative estimates
View formula detailsROUNDUP
=ROUNDUP(3.14159, 2)
Rounding a number up to a specified decimal place for generous estimates
View formula detailsSEC
=SEC(0)
Calculating the secant of an angle for advanced trigonometric analysis
View formula detailsSECH
=SECH(0)
Calculating the hyperbolic secant for exponential modeling
View formula detailsSIGN
=SIGN(-5)
Determining the sign of a number for directional analysis
View formula detailsSIN
=SIN(1.5708)
Calculating the sine of an angle for trigonometric modeling
View formula detailsSINH
=SINH(1)
Calculating the hyperbolic sine for exponential analysis
View formula detailsSQRT
=SQRT(16)
Calculating the square root of a number for geometric or statistical analysis
View formula detailsSQRTPI
=SQRTPI(2)
Calculating the square root of a number times π for circular calculations
View formula detailsSUBTOTAL
=SUBTOTAL(9, A1:A10)
Calculating aggregates (sum, average, etc.) while ignoring filtered rows
View formula detailsSUM
=SUM(A1:A5)
Adding up a range of numbers for totals
View formula detailsSUMIF
=SUMIF(A1:A5, ">10")
Summing numbers based on a single condition for filtered totals
View formula detailsSUMIFS
=SUMIFS(A1:A5, B1:B5, ">10", C1:C5, "<20")
Summing numbers based on multiple conditions for detailed analysis
View formula detailsSUMPRODUCT
=SUMPRODUCT(A1:A3, B1:B3)
Multiplying and summing arrays for weighted totals or dot products
View formula detailsSUMSQ
=SUMSQ(A1:A3)
Summing the squares of numbers for variance or distance calculations
View formula detailsTAN
=TAN(0.7854)
Calculating the tangent of an angle for slope or trigonometric analysis
View formula detailsTANH
=TANH(1)
Calculating the hyperbolic tangent for bounded exponential modeling
View formula detailsTRUNC
=TRUNC(3.14159, 2)
Truncating a number to a specified decimal place for precise trimming
View formula detailsAVERAGE
=AVERAGE(A1:A5)
Finding the mean of a range of numbers for statistical analysis
View formula detailsAVERAGEA
=AVERAGEA(A1:A5)
Finding the mean including text and logical values for broader averaging
View formula detailsAVERAGEIF
=AVERAGEIF(A1:A5, ">10")
Finding the mean of numbers meeting a single condition
View formula detailsAVERAGEIFS
=AVERAGEIFS(A1:A5, B1:B5, ">10", C1:C5, "<20")
Finding the mean of numbers meeting multiple conditions
View formula detailsCOUNT
=COUNT(A1:A5)
Counting numeric cells in a range for data tallying
View formula detailsCOUNTA
=COUNTA(A1:A5)
Counting non-empty cells in a range for completeness checks
View formula detailsCOUNTBLANK
=COUNTBLANK(A1:A5)
Counting empty cells in a range for data gap analysis
View formula detailsCOUNTIF
=COUNTIF(A1:A5, ">10")
Counting cells meeting a single condition for selective tallies
View formula detailsCOUNTIFS
=COUNTIFS(A1:A5, ">10", B1:B5, "<20")
Counting cells meeting multiple conditions for detailed analysis
View formula detailsMAX
=MAX(A1:A5)
Finding the largest numeric value in a range for peak analysis
View formula detailsMAXA
=MAXA(A1:A5)
Finding the largest value including text and logicals for broader peaks
View formula detailsMEDIAN
=MEDIAN(A1:A5)
Finding the middle value in a range for central tendency
View formula detailsMIN
=MIN(A1:A5)
Finding the smallest numeric value in a range for low-point analysis
View formula detailsMINA
=MINA(A1:A5)
Finding the smallest value including text and logicals for broader lows
View formula detailsMODE
=MODE(A1:A5)
Finding the most frequent numeric value in a range
View formula detailsPERCENTILE
=PERCENTILE(A1:A5, 0.75)
Finding a value at a specific percentile in a range
View formula detailsQUARTILE
=QUARTILE(A1:A5, 2)
Finding quartile values in a range for distribution analysis
View formula detailsRANK
=RANK(A1, A1:A5)
Finding the rank of a number within a list for ordering
View formula detailsSTDEV
=STDEV(A1:A5)
Estimating sample standard deviation for statistical analysis
View formula detailsSTDEVA
=STDEVA(A1:A5)
Estimating sample standard deviation including text and logical values
View formula detailsSTDEVP
=STDEVP(A1:A5)
Calculating population standard deviation for full datasets
View formula detailsSTDEVPA
=STDEVPA(A1:A5)
Calculating population standard deviation including text and logicals
View formula detailsVAR
=VAR(A1:A5)
Estimating sample variance for variability analysis
View formula detailsVARA
=VARA(A1:A5)
Estimating sample variance including text and logical values
View formula detailsVARP
=VARP(A1:A5)
Calculating population variance for full datasets
View formula detailsVARPA
=VARPA(A1:A5)
Calculating population variance including text and logical values
View formula detailsCHAR
=CHAR(65)
Converting a code to its character for text formatting
View formula detailsCLEAN
=CLEAN(A1)
Removing non-printable characters from text for cleanup
View formula detailsCODE
=CODE("A")
Returning the ASCII code of a character for text analysis
View formula detailsCONCATENATE (deprecated, use CONCAT)
=CONCATENATE(A1, " ", B1)
Combining multiple text strings into one (deprecated, use CONCAT)
View formula detailsCONCAT
=CONCAT(A1, " ", B1)
Combining text strings or ranges into one
View formula detailsDOLLAR
=DOLLAR(1234.56)
Formatting a number as currency text
View formula detailsEXACT
=EXACT(A1, B1)
Comparing two text strings for exact match (case-sensitive)
View formula detailsFIND
=FIND("e", "Hello")
Locating the position of text within a string (case-sensitive)
View formula detailsFIXED
=FIXED(1234.567, 1)
Formatting a number as text with fixed decimals
View formula detailsLEFT
=LEFT("Hello", 2)
Extracting characters from the start of a text string
View formula detailsLEN
=LEN("Hello")
Counting the length of a text string
View formula detailsLOWER
=LOWER("Hello")
Converting text to lowercase for standardization
View formula detailsMID
=MID("Hello", 2, 3)
Extracting a substring from the middle of text
View formula detailsPROPER
=PROPER("hello world")
Capitalizing the first letter of each word in text
View formula detailsREPLACE
=REPLACE("Hello", 2, 3, "xyz")
Replacing a portion of text with new text
View formula detailsREPT
=REPT("*", 5)
Repeating text a specified number of times for patterns or formatting
View formula detailsRIGHT
=RIGHT("Hello", 2)
Extracting characters from the end of a text string
View formula detailsSEARCH
=SEARCH("e", "Hello")
Locating the position of text within a string (case-insensitive)
View formula detailsSUBSTITUTE
=SUBSTITUTE("Hello World", "World", "Excel")
Replacing specific text with new text in a string
View formula detailsTEXT
=TEXT(1234.567, "$#,##0.00")
Converting a number to text with a specified format
View formula detailsTEXTJOIN
=TEXTJOIN(", ", TRUE, A1:A5)
Combining text from multiple ranges with a delimiter
View formula detailsTRIM
=TRIM(" Hello World ")
Removing excess spaces from text for clean data
View formula detailsUPPER
=UPPER("Hello")
Converting text to uppercase for standardization
View formula detailsVALUE
=VALUE("$1,234.56")
Converting text that represents a number to a numeric value
View formula detailsAND
=AND(A1>0, A1<10)
Testing if all conditions are TRUE for logical operations
View formula detailsFALSE
=FALSE()
Returning the logical value FALSE for conditional formulas
View formula detailsIF
=IF(A1>10, "High", "Low")
Performing a conditional test and returning different values based on the result
View formula detailsIFERROR
=IFERROR(A1/B1, "Division Error")
Handling errors in formulas by providing an alternative result
View formula detailsIFNA
=IFNA(VLOOKUP(A1, B1:C10, 2, FALSE), "Not Found")
Handling #N/A errors with an alternative result
View formula detailsIFS
=IFS(A1>90, "A", A1>80, "B", A1>70, "C", TRUE, "D")
Testing multiple conditions and returning different results
View formula detailsNOT
=NOT(A1>10)
Reversing the logical value of an expression
View formula detailsOR
=OR(A1>0, A1<-10)
Testing if any condition is TRUE for logical operations
View formula detailsSWITCH
=SWITCH(A1, 1, "One", 2, "Two", 3, "Three", "Other")
Evaluating an expression against multiple values and returning a matching result
View formula detailsTRUE
=TRUE()
Returning the logical value TRUE for conditional formulas
View formula detailsXOR
=XOR(A1>0, A1<10)
Testing if exactly one condition is TRUE for exclusive logical operations
View formula detailsADDRESS
=ADDRESS(2, 3, 4)
Creating a cell reference as text by providing row and column numbers
View formula detailsCHOOSE
=CHOOSE(2, "Apple", "Banana", "Cherry")
Selecting a value from a list based on position
View formula detailsCOLUMN
=COLUMN(B10)
Returning the column number of a reference for position-based calculations
View formula detailsCOLUMNS
=COLUMNS(A1:C10)
Counting the number of columns in a range for dimension analysis
View formula detailsHLOOKUP
=HLOOKUP("Apple", A1:E3, 3, FALSE)
Looking up a value in the top row and returning a value from a specified row
View formula detailsINDEX
=INDEX(A1:D10, 3, 2)
Returning a value from a table based on its position
View formula detailsINDIRECT
=INDIRECT("A" & ROW())
Converting a text string into a cell reference for dynamic referencing
View formula detailsLOOKUP
=LOOKUP(90, A2:A20, B2:B20)
Finding an approximate match in a sorted range or two arrays
View formula detailsMATCH
=MATCH("Apple", A1:A10, 0)
Finding the position of a value in a range
View formula detailsOFFSET
=OFFSET(A1, 2, 1, 3, 2)
Creating dynamic references with a specified offset from a starting reference
View formula detailsROW
=ROW(B10)
Returning the row number of a reference for position-based calculations
View formula detailsROWS
=ROWS(A1:C10)
Counting the number of rows in a range for dimension analysis
View formula detailsTRANSPOSE
=TRANSPOSE(A1:A10)
Converting a vertical range to horizontal or vice versa
View formula detailsVLOOKUP
=VLOOKUP("Smith", A1:D20, 3, FALSE)
Looking up a value in the first column and returning a value from the same row
View formula detailsXLOOKUP
=XLOOKUP("Smith", A2:A20, C2:C20, "Not Found", 0, 1)
Looking up values with enhanced flexibility and control
View formula detailsXMATCH
=XMATCH("Apple", A1:A10, 0, 1)
Finding the position of a value in a range with enhanced options
View formula detailsDATE
=DATE(2023, 12, 31)
Creating a date value from year, month, and day components
View formula detailsDATEDIF
=DATEDIF("1/1/2023", "12/31/2023", "m")
Calculating the difference between two dates in various units
View formula detailsDATEVALUE
=DATEVALUE("December 31, 2023")
Converting a date stored as text to a serial number
View formula detailsDAY
=DAY("2023-12-15")
Extracting the day of the month from a date value
View formula detailsDAYS
=DAYS("2023-12-31", "2023-01-01")
Calculating the number of days between two dates
View formula detailsDAYS360
=DAYS360("1/1/2023", "12/31/2023")
Calculating days between dates based on a 360-day year
View formula detailsEDATE
=EDATE("1/15/2023", 3)
Calculating a date that is a specified number of months before or after another date
View formula detailsEOMONTH
=EOMONTH("1/15/2023", 3)
Calculating the last day of a month that is a specified number of months from a date
View formula detailsHOUR
=HOUR("3:45:30 PM")
Extracting the hour component from a time value
View formula detailsISOWEEKNUM
=ISOWEEKNUM("2023-01-01")
Finding the ISO week number of a date for standardized week numbering
View formula detailsMINUTE
=MINUTE("3:45:30 PM")
Extracting the minute component from a time value
View formula detailsMONTH
=MONTH("2023-04-15")
Extracting the month number from a date value
View formula detailsNETWORKDAYS
=NETWORKDAYS("2023-01-01", "2023-01-31")
Calculating the number of working days between two dates
View formula detailsNOW
=NOW()
Retrieving the current date and time that updates when the workbook recalculates
View formula detailsSECOND
=SECOND("3:45:30 PM")
Extracting the seconds component from a time value
View formula detailsTIME
=TIME(15, 45, 30)
Creating a time value from hour, minute, and second components
View formula detailsTIMEVALUE
=TIMEVALUE("3:45:30 PM")
Converting a time stored as text to a serial number
View formula detailsTODAY
=TODAY()
Retrieving the current date that updates when the workbook recalculates
View formula detailsWEEKDAY
=WEEKDAY("2023-03-15", 1)
Determining the day of the week from a date
View formula detailsWEEKNUM
=WEEKNUM("2023-03-15", 1)
Calculating the week number within a year for a given date
View formula detailsWORKDAY
=WORKDAY("2023-03-15", 10)
Calculating a date that is a specified number of working days away
View formula detailsYEAR
=YEAR("2023-03-15")
Extracting the year component from a date value
View formula detailsYEARFRAC
=YEARFRAC("2023-01-01", "2023-06-30", 0)
Calculating the fraction of a year between two dates
View formula detailsACCRINT
=ACCRINT("2022-01-01", "2022-03-01", "2022-12-31", 0.05, 1000, 2, 0)
Calculating accrued interest for a security that pays periodic interest
View formula detailsAMORDEGRC
=AMORDEGRC(1000, "2022-01-01", "2022-12-31", 100, 5, 0.15, 1)
Calculating depreciation using the French accounting system's degressive method
View formula detailsAMORLINC
=AMORLINC(1000, "2022-01-01", "2022-12-31", 100, 5, 0.15, 1)
Calculating depreciation using the French accounting system's linear method
View formula detailsCOUPDAYBS
=COUPDAYBS("2022-04-15", "2023-04-15", 2, 0)
Calculating the days from the beginning of the coupon period to the settlement date
View formula detailsCOUPDAYS
=COUPDAYS("2022-04-15", "2023-04-15", 2, 0)
Calculating the number of days in the coupon period containing the settlement date
View formula detailsCUMIPMT
=CUMIPMT(0.05/12, 360, 200000, 1, 12, 0)
Calculating cumulative interest paid on a loan between two periods
View formula detailsCUMPRINC
=CUMPRINC(0.05/12, 360, 200000, 1, 12, 0)
Calculating cumulative principal paid on a loan between two periods
View formula detailsDB
=DB(10000, 1000, 5, 1)
Calculating asset depreciation using the declining balance method
View formula detailsDDB
=DDB(10000, 1000, 5, 1)
Calculating asset depreciation using the double-declining balance method
View formula detailsFV
=FV(0.05/12, 60, -200, 0)
Calculating the future value of an investment with regular payments
View formula detailsIPMT
=IPMT(0.05/12, 1, 360, 200000)
Calculating the interest payment for a specific period of a loan
View formula detailsIRR
=IRR({-10000, 2500, 3000, 3500, 4000, 4500})
Calculating the internal rate of return for a series of cash flows
View formula detailsISPMT
=ISPMT(0.05/12, 1, 360, 200000)
Calculating the interest payment for a loan with straight-line amortization
View formula detailsMIRR
=MIRR({-10000, 3000, 4000, 5000, 6000}, 0.05, 0.08)
Calculating the modified internal rate of return for a series of cash flows
View formula detailsNPER
=NPER(0.05/12, -1000, 100000)
Calculating the number of periods required for an investment or loan
View formula detailsNPV
=NPV(0.1, 10000, 15000, 20000, 25000, 30000)
Calculating the net present value of an investment based on a series of cash flows
View formula detailsPMT
=PMT(0.05/12, 360, 200000)
Calculating the payment for a loan based on constant payments and interest rate
View formula detailsPPMT
=PPMT(0.05/12, 1, 360, 200000)
Calculating the principal payment for a specific period of a loan
View formula detailsPV
=PV(0.05/12, 360, -1000)
Calculating the present value of an investment based on future payments
View formula detailsRATE
=RATE(360, -1000, 200000)
Calculating the interest rate for a loan or investment
View formula detailsSLN
=SLN(10000, 1000, 5)
Calculating the straight-line depreciation of an asset for a single period
View formula detailsSYD
=SYD(10000, 1000, 5, 1)
Calculating the sum-of-years-digits depreciation of an asset for a specified period
View formula detailsERROR.TYPE
=ERROR.TYPE(A1)
Returning a number corresponding to a specific Excel error type
View formula detailsISBLANK
=ISBLANK(A1)
Checking if a cell is empty
View formula detailsISERR
=ISERR(A1)
Checking if a value is any error except #N/A
View formula detailsISERROR
=ISERROR(A1)
Checking if a value is any error type
View formula detailsISEVEN
=ISEVEN(4)
Checking if a number is even
View formula detailsISFORMULA
=ISFORMULA(A1)
Checking if a cell contains a formula
View formula detailsISLOGICAL
=ISLOGICAL(TRUE)
Checking if a value is a logical value (TRUE or FALSE)
View formula detailsISNA
=ISNA(VLOOKUP("Item", A1:B10, 2, FALSE))
Checking if a value is the #N/A error
View formula detailsISNONTEXT
=ISNONTEXT(A1)
Checking if a value is not text
View formula detailsISNUMBER
=ISNUMBER(A1)
Checking if a value is a number
View formula detailsISODD
=ISODD(3)
Checking if a number is odd
View formula detailsISREF
=ISREF(A1)
Checking if a value is a cell reference
View formula detailsISTEXT
=ISTEXT(A1)
Checking if a value is text
View formula detailsN
=N("123")
Converting values to numbers for calculations
View formula detailsNA
=NA()
Returning the #N/A error value to indicate unavailable data
View formula detailsTYPE
=TYPE(A1)
Returning a number indicating the data type of a value
View formula detailsBIN2DEC
=BIN2DEC("1010")
Converting a binary number to decimal format
View formula detailsBIN2HEX
=BIN2HEX("1010")
Converting a binary number to hexadecimal format
View formula detailsBIN2OCT
=BIN2OCT("1010")
Converting a binary number to octal format
View formula detailsCOMPLEX
=COMPLEX(3, 4, "i")
Creating a complex number from real and imaginary coefficients
View formula detailsCONVERT
=CONVERT(1, "m", "ft")
Converting a measurement from one unit to another
View formula detailsDEC2BIN
=DEC2BIN(10)
Converting a decimal number to binary format for numeral system conversion
View formula detailsDEC2HEX
=DEC2HEX(255)
Converting a decimal number to hexadecimal format for compact number representation
View formula detailsDEC2OCT
=DEC2OCT(8)
Converting a decimal number to octal format for specific numeral system requirements
View formula detailsHEX2BIN
=HEX2BIN("1F")
Converting a hexadecimal number to binary format for digital system analysis
View formula detailsHEX2DEC
=HEX2DEC("FF")
Converting a hexadecimal number to decimal format for standard numerical calculations
View formula detailsHEX2OCT
=HEX2OCT("1F")
Converting a hexadecimal number to octal format for specific numerical system transformations
View formula detailsIMABS
=IMABS("3+4i")
Calculating the absolute value (modulus) of a complex number
View formula detailsIMAGINARY
=IMAGINARY("3+4i")
Extracting the imaginary coefficient of a complex number
View formula detailsIMARGUMENT
=IMARGUMENT("3+4i")
Calculating the argument (theta) of a complex number in radians
View formula detailsIMCONJUGATE
=IMCONJUGATE("3+4i")
Calculating the complex conjugate of a complex number
View formula detailsIMDIV
=IMDIV("3+4i", "2-i")
Dividing two complex numbers
View formula detailsIMEXP
=IMEXP("1+i")
Calculating the exponential of a complex number
View formula detailsIMLN
=IMLN("3+4i")
Calculating the natural logarithm of a complex number
View formula detailsIMLOG10
=IMLOG10("3+4i")
Calculating the base-10 logarithm of a complex number
View formula detailsIMLOG2
=IMLOG2("3+4i")
Calculating the base-2 logarithm of a complex number
View formula detailsIMPOWER
=IMPOWER("3+4i", 2)
Raising a complex number to a power
View formula detailsIMPRODUCT
=IMPRODUCT("3+4i", "2-i")
Multiplying complex numbers together
View formula detailsIMREAL
=IMREAL("3+4i")
Extracting the real coefficient from a complex number for complex number analysis
View formula detailsIMSIN
=IMSIN("3+4i")
Calculating the sine of a complex number for complex analysis
View formula detailsIMSQRT
=IMSQRT("-4")
Calculating the square root of a complex number for complex analysis
View formula detailsIMSUB
=IMSUB("3+4i", "1+2i")
Subtracting one complex number from another for complex number operations
View formula detailsIMTAN
=IMTAN("3+4i")
Calculating the tangent of a complex number for complex analysis
View formula detailsOCT2BIN
=OCT2BIN("37")
Converting an octal number to binary for number base conversion
View formula detailsOCT2DEC
=OCT2DEC("37")
Converting an octal number to decimal for number base conversion
View formula detailsOCT2HEX
=OCT2HEX("37")
Converting an octal number to hexadecimal for number base conversion
View formula detailsDAVERAGE
=DAVERAGE(database, "Salary", criteria_range)
Calculating the average of values in a database that match specific criteria
View formula detailsDCOUNT
=DCOUNT(database, "Units", criteria_range)
Counting numeric cells in a database column that match specific criteria
View formula detailsDCOUNTA
=DCOUNTA(database, "Comments", criteria_range)
Counting non-blank cells in a database column that match specific criteria
View formula detailsDGET
=DGET(database, "Phone", criteria_range)
Extracting a single value from a database that matches specific criteria
View formula detailsDMAX
=DMAX(database, "Sales", criteria_range)
Finding the maximum value in a database column that matches specific criteria
View formula detailsDMIN
=DMIN(database, "Price", criteria_range)
Finding the minimum value in a database column that matches specific criteria
View formula detailsDSUM
=DSUM(database, "Revenue", criteria_range)
Adding up values in a database column that match specific criteria
View formula detailsCan't find the formula you need?
Use our AI-powered Formula Generator to create custom formulas for any task. Simply describe what you want to calculate in plain language.
Popular formula requests:
- Calculate the sum of values when multiple conditions are met
- Extract specific text between two characters
- Look up values across multiple sheets with fallback options
- Calculate business days between two dates excluding holidays
Unlock the Full Power of Sheet Alchemy
Get access to all our formula generators, script generators, and conversion tools with a free Sheet Alchemy account.