Excel Functions: Complete List by Category

Excel ships with more than 450 built-in functions. Most people only ever use 10 or 15. The rest sit there, quietly capable of saving you hours, if you know they exist.

This page lists all of them.

Every function is grouped by category, with a one-line description so you can scan, find what you need, and jump to the full tutorial.

New to Excel functions? Start with the short primer below. Already know the basics? Skip to whichever category you need.

What is an Excel function?

A function is a built-in formula that takes one or more inputs and returns a result. You type an equals sign, the function name, and the inputs in parentheses.

=SUM(A1:A10)
=IF(B2>100, "High", "Low")
=VLOOKUP("Apple", A:C, 3, FALSE)

Functions are the core of what makes Excel a spreadsheet rather than a glorified table.

Once you start combining them, you can pull data from another sheet, clean a messy text column, calculate a loan payment, or build a forecast. All without writing a single line of code.

How to use this page

The functions are organized by purpose, the same way Microsoft groups them in the Formulas tab:

  • Logical: if-this-then-that decisions
  • Lookup & Reference: finding values across tables
  • Text: cleaning, splitting, joining, reformatting text
  • Date & Time: date math and calendar calculations
  • Math & Trig: arithmetic, rounding, trigonometry
  • Statistical: averages, counts, ranks, regressions
  • Financial: loans, investments, depreciation
  • Information: checking what a cell contains
  • Database: query-style aggregates over a structured range
  • Dynamic Array: modern functions that spill into multiple cells
  • Engineering: number-base conversion, complex numbers, bitwise math
  • Web: pulling data from the web

Each section starts with a short note on when you would reach for that family. After that, a table with the function name and a one-line description.

Logical Functions

Use these when your formula needs to make a decision. The most common pattern is “if this condition is true, do A, otherwise do B”. Almost everything more advanced is a variation on that idea.

FunctionDescription
IFReturns one value if a condition is TRUE and another if it is FALSE
IFSTests multiple conditions in order and returns the value for the first one that is TRUE
IFERRORReturns a custom result if a formula errors, otherwise returns the formula’s result
IFNAReturns a custom result if a formula returns #N/A, otherwise returns the formula’s result
ANDReturns TRUE only if every argument is TRUE
ORReturns TRUE if at least one argument is TRUE
NOTReverses the logic of its argument (TRUE becomes FALSE, FALSE becomes TRUE)
XORReturns TRUE if an odd number of its arguments are TRUE
SWITCHEvaluates an expression against a list of values and returns the matching result
TRUEReturns the logical value TRUE
FALSEReturns the logical value FALSE
LETAssigns names to calculation results so a formula can reuse them
LAMBDACreates a custom, reusable function from a formula

Lookup & Reference Functions

Use these when the value you need is in another row, another sheet, or another file, and you want Excel to fetch it for you. VLOOKUP is the famous one, but XLOOKUP has largely replaced it for new work.

FunctionDescription
VLOOKUPLooks up a value in the first column of a range and returns a value from another column in the same row
HLOOKUPLike VLOOKUP but searches across the first row of a range instead of the first column
XLOOKUPModern replacement for VLOOKUP and HLOOKUP. Searches in any direction and handles errors built-in
LOOKUPOlder, simpler lookup function that searches a single row or column
INDEXReturns the value at a given row and column position inside a range
MATCHReturns the position of a value within a row or column
XMATCHModern replacement for MATCH with wildcard and reverse-search support
OFFSETReturns a reference shifted by a given number of rows and columns from a starting cell
INDIRECTConverts a text string into a real cell reference
CHOOSEReturns one of a list of values based on an index number
CHOOSEROWSReturns the specified rows from an array
CHOOSECOLSReturns the specified columns from an array
ADDRESSBuilds a cell reference string from row and column numbers
ROWReturns the row number of a reference
ROWSReturns the number of rows in a reference
COLUMNReturns the column number of a reference
COLUMNSReturns the number of columns in a reference
AREASReturns the number of areas in a reference
FORMULATEXTReturns the formula in a referenced cell as text
HYPERLINKCreates a clickable link in a cell
TRANSPOSEFlips a vertical range to horizontal or vice versa
GETPIVOTDATAPulls a specific value from a pivot table
RTDRetrieves real-time data from a server program

Text Functions

Use these when you need to clean, parse, combine, or reformat text. Almost every “the data is messy and I need to fix it” problem ends here.

FunctionDescription
CONCATJoins multiple text strings or ranges into one string
CONCATENATEOlder version of CONCAT, kept for backward compatibility
TEXTJOINJoins text values with a chosen delimiter, with the option to skip empty cells
TEXTSPLITSplits text into rows or columns by a delimiter
TEXTBEFOREReturns the text before a given delimiter
TEXTAFTERReturns the text after a given delimiter
LEFTReturns the leftmost N characters of a text string
RIGHTReturns the rightmost N characters of a text string
MIDReturns N characters from the middle of a text string starting at a given position
LENReturns the number of characters in a text string
FINDReturns the position of one text string inside another (case-sensitive)
SEARCHReturns the position of one text string inside another (not case-sensitive, supports wildcards)
REPLACEReplaces part of a text string with new text, by position
SUBSTITUTEReplaces specific text inside a string with new text
TRIMRemoves extra spaces from text, leaving single spaces between words
CLEANRemoves non-printable characters from text
UPPERConverts text to uppercase
LOWERConverts text to lowercase
PROPERCapitalizes the first letter of each word
TEXTConverts a number to text using a chosen format string
VALUEConverts a text string that looks like a number into a real number
NUMBERVALUEConverts text to a number with locale-aware decimal and group separators
EXACTReturns TRUE if two text strings are identical (case-sensitive)
REPTRepeats a text string a given number of times
CHARReturns the character that matches a given ASCII number
UNICHARReturns the character that matches a given Unicode number
CODEReturns the ASCII number of the first character in a string
UNICODEReturns the Unicode number of the first character in a string
TReturns the text value of an argument, or empty if it is not text
FIXEDFormats a number with fixed decimals and returns it as text
DOLLARFormats a number as currency and returns it as text
ARRAYTOTEXTReturns an array of values as a single text string
VALUETOTEXTReturns the text representation of any value
ASCConverts full-width characters to half-width
JISConverts half-width characters to full-width
DBCSConverts half-width English letters to full-width
PHONETICExtracts the phonetic characters from a Japanese text string
BAHTTEXTConverts a number to Thai text with a baht suffix

Date & Time Functions

Use these for any calendar math: aging, deadlines, business-day calculations, age from a birthdate, date differences, day-of-week logic.

FunctionDescription
TODAYReturns the current date
NOWReturns the current date and time
DATEBuilds a date from a year, month, and day
TIMEBuilds a time from an hour, minute, and second
YEARReturns the year from a date
MONTHReturns the month from a date
DAYReturns the day of the month from a date
HOURReturns the hour from a time value
MINUTEReturns the minute from a time value
SECONDReturns the second from a time value
WEEKDAYReturns the day of the week as a number from 1 to 7
WEEKNUMReturns the week number of a date in the year
ISOWEEKNUMReturns the ISO week number of a date
EOMONTHReturns the last day of the month, N months before or after a date
EDATEReturns the date N months before or after a given date
DATEDIFReturns the difference between two dates in years, months, or days
NETWORKDAYSReturns the number of working days between two dates
NETWORKDAYS.INTLLike NETWORKDAYS but lets you customize which days count as weekends
WORKDAYReturns the date N working days before or after a given date
WORKDAY.INTLLike WORKDAY with custom weekend definitions
DAYSReturns the number of days between two dates
DAYS360Returns the number of days between two dates assuming a 360-day year
DATEVALUEConverts a date stored as text into a real date serial number
TIMEVALUEConverts a time stored as text into a real time serial number
YEARFRACReturns the fraction of a year between two dates

Math & Trig Functions

Use these for arithmetic, rounding, randomization, and trigonometry. SUM is the famous one, but there are dozens of rounding and randomization helpers most people never discover.

FunctionDescription
SUMAdds up numbers in a range
SUMIFAdds numbers that meet a single condition
SUMIFSAdds numbers that meet multiple conditions
SUMPRODUCTMultiplies arrays element by element and returns the sum of the products
SUMSQReturns the sum of the squares of its arguments
SUMX2MY2Returns the sum of the difference of squares of two arrays
SUMX2PY2Returns the sum of the sum of squares of two arrays
SUMXMY2Returns the sum of squares of differences of two arrays
PRODUCTMultiplies its arguments together
QUOTIENTReturns the integer portion of a division
MODReturns the remainder after a division
ROUNDRounds a number to a given number of decimal places
ROUNDUPRounds a number up, away from zero
ROUNDDOWNRounds a number down, toward zero
MROUNDRounds a number to the nearest multiple of another number
INTRounds a number down to the nearest integer
TRUNCRemoves the decimal portion of a number
EVENRounds a number up to the nearest even integer
ODDRounds a number up to the nearest odd integer
FLOORRounds a number down to the nearest multiple
FLOOR.MATHRounds down with control over how negatives are handled
CEILINGRounds a number up to the nearest multiple
CEILING.MATHRounds up with control over how negatives are handled
ABSReturns the absolute value of a number
SIGNReturns 1, 0, or -1 depending on the sign of the number
POWERRaises a number to a given power
SQRTReturns the square root of a number
SQRTPIReturns the square root of a number multiplied by pi
EXPReturns e raised to a given power
LNReturns the natural logarithm of a number
LOGReturns the logarithm of a number to a given base
LOG10Returns the base-10 logarithm of a number
FACTReturns the factorial of a number
FACTDOUBLEReturns the double factorial of a number
GCDReturns the greatest common divisor of a set of numbers
LCMReturns the least common multiple of a set of numbers
COMBINReturns the number of combinations of a given size
COMBINAReturns combinations with repetitions allowed
PERMUTReturns the number of permutations of a given size
PERMUTATIONAReturns permutations with repetitions allowed
RANDReturns a random number between 0 and 1
RANDBETWEENReturns a random integer between two bounds
RANDARRAYReturns an array of random numbers
ROMANConverts an Arabic numeral to Roman numerals as text
ARABICConverts a Roman numeral string to an Arabic number
BASEConverts a number to text in a given numeric base
DECIMALConverts text in a given base to a decimal number
SUBTOTALReturns a subtotal of a range, ignoring other subtotals
AGGREGATELike SUBTOTAL but with more functions and the ability to ignore errors
SEQUENCEReturns an array of sequential numbers
MUNITReturns an identity matrix of a given size
MMULTReturns the matrix product of two arrays
MINVERSEReturns the matrix inverse of an array
MDETERMReturns the matrix determinant of an array
SERIESSUMReturns the sum of a power series
PIReturns the value of pi
SINReturns the sine of an angle
COSReturns the cosine of an angle
TANReturns the tangent of an angle
ASINReturns the arcsine of a number
ACOSReturns the arccosine of a number
ATANReturns the arctangent of a number
ATAN2Returns the arctangent from x and y coordinates
SINHReturns the hyperbolic sine of a number
COSHReturns the hyperbolic cosine of a number
TANHReturns the hyperbolic tangent of a number
ASINHReturns the inverse hyperbolic sine of a number
ACOSHReturns the inverse hyperbolic cosine of a number
ATANHReturns the inverse hyperbolic tangent of a number
DEGREESConverts radians to degrees
RADIANSConverts degrees to radians

Statistical Functions

Use these whenever you need to summarize a column of numbers. Averages, counts, ranks, percentiles, regressions, distributions. The IF and IFS variants like COUNTIF and AVERAGEIFS are the everyday workhorses.

FunctionDescription
AVERAGEReturns the arithmetic mean of a range
AVERAGEALike AVERAGE but counts text and logical values as zero
AVERAGEIFReturns the average of cells that meet a single condition
AVERAGEIFSReturns the average of cells that meet multiple conditions
MEDIANReturns the middle value in a range
MODEReturns the most frequently occurring value in a range
MODE.SNGLReturns the single most common value in a range
MODE.MULTReturns an array of the most common values in a range
MAXReturns the largest number in a range
MAXALike MAX but counts text and logical values
MAXIFSReturns the maximum of cells that meet multiple conditions
MINReturns the smallest number in a range
MINALike MIN but counts text and logical values
MINIFSReturns the minimum of cells that meet multiple conditions
COUNTCounts the cells in a range that contain numbers
COUNTACounts non-empty cells in a range
COUNTBLANKCounts empty cells in a range
COUNTIFCounts cells that meet a single condition
COUNTIFSCounts cells that meet multiple conditions
LARGEReturns the Nth largest value in a range
SMALLReturns the Nth smallest value in a range
RANK.EQReturns the rank of a number in a list, with ties getting the same rank
RANK.AVGReturns the average rank of a number when there are ties
PERCENTILE.INCReturns the Nth percentile of a range, inclusive
PERCENTILE.EXCReturns the Nth percentile of a range, exclusive
PERCENTRANK.INCReturns the percentile rank of a value, inclusive
PERCENTRANK.EXCReturns the percentile rank of a value, exclusive
QUARTILE.INCReturns the quartile of a range, inclusive
QUARTILE.EXCReturns the quartile of a range, exclusive
FREQUENCYReturns a frequency distribution as an array
STDEV.SReturns the sample standard deviation
STDEV.PReturns the population standard deviation
STDEVALike STDEV.S but counts text and logical values
STDEVPALike STDEV.P but counts text and logical values
VAR.SReturns the sample variance
VAR.PReturns the population variance
VARALike VAR.S but counts text and logical values
VARPALike VAR.P but counts text and logical values
DEVSQReturns the sum of squared deviations from the mean
AVEDEVReturns the average of absolute deviations from the mean
GEOMEANReturns the geometric mean of a range
HARMEANReturns the harmonic mean of a range
TRIMMEANReturns the mean of a range with the top and bottom percentages excluded
KURTReturns the kurtosis of a distribution
SKEWReturns the skewness of a distribution
SKEW.PReturns the skewness of a population
CORRELReturns the correlation coefficient between two ranges
PEARSONReturns the Pearson correlation coefficient
RSQReturns the squared Pearson correlation coefficient
COVARIANCE.SReturns the sample covariance of two ranges
COVARIANCE.PReturns the population covariance of two ranges
SLOPEReturns the slope of a linear regression line
INTERCEPTReturns the y-intercept of a linear regression line
LINESTReturns the parameters of a linear best-fit line
LOGESTReturns the parameters of an exponential best-fit curve
FORECAST.LINEARPredicts a future value using linear regression
FORECAST.ETSPredicts a future value using exponential smoothing
TRENDReturns predicted values along a linear trend
GROWTHReturns predicted values along an exponential trend
STANDARDIZEReturns a normalized z-score
CONFIDENCE.NORMReturns the confidence interval for a normal distribution
NORM.DISTReturns the normal distribution probability
NORM.INVReturns the inverse of the normal distribution
NORM.S.DISTReturns the standard normal distribution
NORM.S.INVReturns the inverse of the standard normal distribution
T.DISTReturns the Student t distribution
T.INVReturns the inverse of the Student t distribution
CHISQ.DISTReturns the chi-square distribution
CHISQ.INVReturns the inverse of the chi-square distribution
F.DISTReturns the F probability distribution
F.INVReturns the inverse of the F distribution
BINOM.DISTReturns the binomial distribution probability
POISSON.DISTReturns the Poisson distribution probability
EXPON.DISTReturns the exponential distribution probability
GAMMA.DISTReturns the gamma distribution probability
BETA.DISTReturns the beta distribution probability
HYPGEOM.DISTReturns the hypergeometric distribution probability
PROBReturns the probability that values fall within a given range

Financial Functions

Use these for loans, savings, investments, depreciation, and bond pricing. PMT is the most-used; the rest cover the long tail of finance work.

FunctionDescription
PMTReturns the periodic payment for a loan or annuity
IPMTReturns the interest portion of a loan payment for a given period
PPMTReturns the principal portion of a loan payment for a given period
CUMIPMTReturns the cumulative interest paid between two periods
CUMPRINCReturns the cumulative principal paid between two periods
PVReturns the present value of an investment
FVReturns the future value of an investment
FVSCHEDULEReturns the future value with a series of variable interest rates
NPVReturns the net present value of a series of cash flows
XNPVReturns the net present value for cash flows on irregular dates
IRRReturns the internal rate of return for a series of cash flows
XIRRReturns the IRR for cash flows on irregular dates
MIRRReturns the modified internal rate of return
RATEReturns the interest rate per period of a loan or annuity
NPERReturns the number of periods in a loan or annuity
NOMINALReturns the nominal annual interest rate
EFFECTReturns the effective annual interest rate
RRIReturns the equivalent interest rate for the growth of an investment
PDURATIONReturns the number of periods required for an investment to reach a target value
DURATIONReturns the Macaulay duration of a security
MDURATIONReturns the modified Macaulay duration of a security
DBReturns the depreciation of an asset using the fixed-declining-balance method
DDBReturns the depreciation using the double-declining-balance method
SLNReturns the straight-line depreciation of an asset
SYDReturns the sum-of-years depreciation of an asset
VDBReturns the depreciation using a variable declining-balance method
ACCRINTReturns the accrued interest on a security that pays periodic interest
ACCRINTMReturns the accrued interest on a security that pays at maturity
COUPDAYBSReturns the days from the start of the coupon period to the settlement date
COUPDAYSReturns the days in the coupon period containing the settlement date
COUPDAYSNCReturns the days from settlement to the next coupon date
COUPNCDReturns the next coupon date after settlement
COUPPCDReturns the previous coupon date before settlement
COUPNUMReturns the number of coupons payable between settlement and maturity
DISCReturns the discount rate for a security
INTRATEReturns the interest rate for a fully invested security
RECEIVEDReturns the amount received at maturity for a fully invested security
YIELDReturns the yield on a security that pays periodic interest
YIELDDISCReturns the annual yield for a discounted security
YIELDMATReturns the annual yield of a security that pays interest at maturity
PRICEReturns the price per $100 face value of a security with periodic interest
PRICEDISCReturns the price per $100 face value of a discounted security
PRICEMATReturns the price per $100 face value of a security that pays interest at maturity
ODDFPRICEReturns the price per $100 face value of a security with an odd first period
ODDFYIELDReturns the yield of a security with an odd first period
ODDLPRICEReturns the price per $100 face value of a security with an odd last period
ODDLYIELDReturns the yield of a security with an odd last period
TBILLEQReturns the bond-equivalent yield for a Treasury bill
TBILLPRICEReturns the price per $100 face value for a Treasury bill
TBILLYIELDReturns the yield for a Treasury bill
DOLLARDEConverts a dollar price expressed as a fraction to a decimal
DOLLARFRConverts a dollar price expressed as a decimal to a fraction

Information Functions

Use these to check what is in a cell before doing something with it. The IS-prefixed family is the bread and butter. Almost always paired with IF.

FunctionDescription
ISBLANKReturns TRUE if the cell is empty
ISERRORReturns TRUE if the value is any error
ISERRReturns TRUE if the value is any error except #N/A
ISNAReturns TRUE if the value is the #N/A error
ISNUMBERReturns TRUE if the value is a number
ISTEXTReturns TRUE if the value is text
ISNONTEXTReturns TRUE if the value is not text
ISLOGICALReturns TRUE if the value is a logical value
ISREFReturns TRUE if the value is a reference
ISFORMULAReturns TRUE if the cell contains a formula
ISEVENReturns TRUE if the number is even
ISODDReturns TRUE if the number is odd
ISOMITTEDIn LAMBDA, returns TRUE if the argument is missing
TYPEReturns a number indicating the data type of a value
ERROR.TYPEReturns a number indicating which error a value is
NConverts a value to a number
NAReturns the #N/A error
INFOReturns information about the current operating environment
CELLReturns information about a cell’s formatting, location, or contents
SHEETReturns the sheet number of a referenced sheet
SHEETSReturns the number of sheets in a reference

Database Functions

Use these when you have a table with field headers and need to run a quick query against it. They are not commonly used today. Pivot tables and FILTER have largely replaced them, but they remain in Excel for backward compatibility.

FunctionDescription
DSUMSums values in a database column that match given criteria
DAVERAGEAverages values in a database column that match given criteria
DCOUNTCounts numeric values in a database column that match given criteria
DCOUNTACounts non-empty cells in a database column that match given criteria
DGETReturns a single value from a database column that matches the criteria
DMAXReturns the maximum value in a database column that matches the criteria
DMINReturns the minimum value in a database column that matches the criteria
DPRODUCTMultiplies values in a database column that match the criteria
DSTDEVReturns the sample standard deviation of matching values
DSTDEVPReturns the population standard deviation of matching values
DVARReturns the sample variance of matching values
DVARPReturns the population variance of matching values

Dynamic Array Functions

Use these in Excel 365 and Excel 2021 onwards. They return a range of results that automatically spills into surrounding cells, no Ctrl+Shift+Enter required. If you are writing modern Excel formulas, you are probably already living in this section.

FunctionDescription
FILTERReturns the rows of a range that meet a condition
SORTSorts a range by one or more columns
SORTBYSorts a range by the values in another range
UNIQUEReturns the unique values from a range
SEQUENCEReturns an array of sequential numbers
RANDARRAYReturns an array of random numbers
EXPANDPads an array with a given value to a target size
TOROWReshapes an array into a single row
TOCOLReshapes an array into a single column
TAKEReturns a specified number of rows or columns from the start or end of an array
DROPDrops a specified number of rows or columns from an array
CHOOSEROWSReturns chosen rows from an array
CHOOSECOLSReturns chosen columns from an array
HSTACKStacks arrays horizontally
VSTACKStacks arrays vertically
WRAPROWSWraps a 1D array into rows of a given length
WRAPCOLSWraps a 1D array into columns of a given length
BYROWApplies a LAMBDA to each row of an array
BYCOLApplies a LAMBDA to each column of an array
MAPApplies a LAMBDA to each value of one or more arrays
REDUCEReduces an array to a single value with a LAMBDA
SCANReturns the running totals of applying a LAMBDA to an array
MAKEARRAYBuilds an array of a given size from a LAMBDA
GROUPBYGroups rows of data and aggregates each group
PIVOTBYBuilds a pivot-table-style result inside a formula
PERCENTOFReturns each value as a percent of the total

Engineering Functions

Use these for number-base conversion, complex numbers, bitwise math, and unit conversion. Most spreadsheets never need them, but if you work in engineering or hardware, they save real time.

FunctionDescription
BIN2DECConverts a binary number to decimal
BIN2HEXConverts a binary number to hexadecimal
BIN2OCTConverts a binary number to octal
DEC2BINConverts a decimal number to binary
DEC2HEXConverts a decimal number to hexadecimal
DEC2OCTConverts a decimal number to octal
HEX2BINConverts a hexadecimal number to binary
HEX2DECConverts a hexadecimal number to decimal
HEX2OCTConverts a hexadecimal number to octal
OCT2BINConverts an octal number to binary
OCT2DECConverts an octal number to decimal
OCT2HEXConverts an octal number to hexadecimal
CONVERTConverts a number from one unit of measure to another
BITANDBitwise AND of two numbers
BITORBitwise OR of two numbers
BITXORBitwise exclusive OR of two numbers
BITLSHIFTShifts a number left by a given number of bits
BITRSHIFTShifts a number right by a given number of bits
DELTAReturns 1 if two numbers are equal, 0 otherwise
GESTEPReturns 1 if a number is greater than or equal to a step, 0 otherwise
ERFReturns the error function
ERF.PRECISEReturns the error function (more precise)
ERFCReturns the complementary error function
ERFC.PRECISEReturns the complementary error function (more precise)
COMPLEXBuilds a complex number from real and imaginary parts
IMABSReturns the absolute value of a complex number
IMAGINARYReturns the imaginary part of a complex number
IMARGUMENTReturns the angle of a complex number in radians
IMCONJUGATEReturns the complex conjugate of a complex number
IMREALReturns the real part of a complex number
IMSUMSums complex numbers
IMSUBSubtracts complex numbers
IMPRODUCTMultiplies complex numbers
IMDIVDivides complex numbers
IMPOWERRaises a complex number to a power
IMSQRTReturns the square root of a complex number
IMEXPReturns the exponential of a complex number
IMLNReturns the natural log of a complex number
IMLOG10Returns the base-10 log of a complex number
IMLOG2Returns the base-2 log of a complex number
IMSINReturns the sine of a complex number
IMCOSReturns the cosine of a complex number
IMTANReturns the tangent of a complex number
IMSINHReturns the hyperbolic sine of a complex number
IMCOSHReturns the hyperbolic cosine of a complex number
IMSECReturns the secant of a complex number
IMSECHReturns the hyperbolic secant of a complex number
IMCSCReturns the cosecant of a complex number
IMCSCHReturns the hyperbolic cosecant of a complex number
IMCOTReturns the cotangent of a complex number

Web Functions

Use these to pull live data from the internet directly into a worksheet. WEBSERVICE is the most flexible; FILTERXML pairs with it to parse the response.

FunctionDescription
WEBSERVICEReturns data from a web service
FILTERXMLReturns specific data from XML content using XPath
ENCODEURLReturns a URL-encoded string

Frequently asked questions

How many functions does Excel have? There are over 450 built-in functions in Excel, depending on which version you have. Excel 365 has the most because Microsoft keeps adding dynamic-array and lambda-related functions. Older versions like Excel 2016 and 2019 are missing the dynamic-array family.

Which Excel functions should I learn first? Start with SUM, AVERAGE, COUNT, IF, VLOOKUP (or XLOOKUP), CONCATENATE (or CONCAT), LEFT, RIGHT, MID, and TODAY. These ten cover most everyday spreadsheet work. After that, learn SUMIF, COUNTIF, INDEX/MATCH, and the IS-family of information functions.

What is the difference between a function and a formula in Excel? A formula is anything that starts with an equals sign and produces a result. A function is a built-in operation Excel provides, like SUM or VLOOKUP. So =A1+B1 is a formula but not a function. =SUM(A1:B1) is a formula that uses a function.

Are some Excel functions only available in newer versions? Yes. Dynamic-array functions like FILTER, SORT, UNIQUE, SEQUENCE, and the LAMBDA-related family are only available in Excel 365 and Excel 2021. If you open a workbook that uses these in older Excel, you will see the result locked in place but you cannot edit the formula.

What is the most useful Excel function? For most people, IF or VLOOKUP. IF lets you build conditional logic, and VLOOKUP (or its modern replacement XLOOKUP) lets you pull data from other tables. Together they cover an enormous percentage of practical spreadsheet work.

How do I know which function to use? Open the Formulas tab in the ribbon and browse by category. Each category lists the functions and Excel shows a tooltip describing what each one does. The list on this page is grouped the same way, so once you find the category, you can scan for the function you need.

I am a huge fan of Microsoft Excel and love sharing my knowledge through articles and tutorials. I work as a business analyst and use Microsoft Excel extensively in my daily tasks. My aim is to help you unleash the full potential of Excel and become a data-slaying wizard yourself.