100+ Excel Functions
100+ Excel Functions
VBA Functions
Excel AND function can be used when you want to check multiple
Excel AND
conditions. It returns TRUE only when all the given conditions are
Function
true.
Excel FALSE Excel FALSE function returns the logical value FALSE. It does not
Function take any input arguments.
Excel IFS Function is best suited for situations where you want to
Excel IFS test multiple conditions at once and then return the result based on it.
Function This is helpful as you don’t have to create long nested IF formulas
that can get confusing.
Excel NOT Excel NOT function can be used when you want to reverse the value
Function of a logical argument (TRUE/FALSE).
Excel OR Excel OR function can be used when you want to check multiple
Function conditions. It returns TRUE if any of the given condition is true.
Excel TRUE Excel TRUE function returns the logical value TRUE. It does not
Function take any input arguments.
Excel Functions – Lookup &
Reference
Excel Function Description
Excel COLUMN Excel COLUMN function can be used when you want to get the
Function column number of a specified cell.
Excel COLUMNS function can be used when you want to get the
Excel
number of columns in a specified range or array. It returns a number
COLUMNS
that represents the total number of columns in the specified range or
Function
array.
Excel HLOOKUP function is best suited for situations when you are
Excel
looking for a matching data point in a row, and when the matching
HLOOKUP
data point is found, you go down that column and fetch a value from
Function
a cell which is specified a number of rows below the top row.
Excel INDEX function can be used when you have the position (row
Excel INDEX number and column number) of a value in a table, and you want to
Function fetch that value. This is often use with the MATCH function and is a
powerful alternative to the VLOOKUP function.
Excel Excel INDIRECT function can be used when you have the references
INDIRECT as text and you want to get the values from those references. It
Function returns the reference specified by the text string.
Excel MATCH function can be used when you want to get the
Excel MATCH
relative position of a lookup value in a list or an array. It returns a
Function
number that represents the position of the lookup value in the array.
Excel Function Description
Excel ROW Function function can be used when you want to get the
Excel ROW
row number of a cell reference. For example, =ROW(B4) would
Function
return 4, as it is in the fourth row.
Excel ROWS Function can be used when you want to get the number
Excel ROWS
of rows in a specified range or array. It returns a number that
Function
represents the total number of rows in the specified range or array.
Excel VLOOKUP function is best suited for situations when you are
Excel looking for a matching data point in a column, and when the
VLOOKUP matching data point is found, you go to the right in that row and fetch
Function a value from a cell which is a specified number of columns to the
right.
Excel FILTER function is a new function for Office 365 users that
Excel FILTER
allows you to quickly filter and extract data based on the given
Function
condition (or multiple conditions).
Excel Functions – Math
Excel Function Description
Excel INT Function can be used when you want to get the
Excel INT Function
integer portion of a number.
Excel MOD function can be used when you want to get the
remainder when one number is divided by another. It returns
Excel MOD Function
a numerical value that represents the remainder when one
number is divided by another.
Excel ROUND Excel ROUND function can be used when you want to
Function return a number rounded to a specified number of digits.
Excel SUMIFS Excel SUMIFS function can be used when you want to add
Function the values in a range if multiple specified criteria are met.
Excel COUNT Excel COUNT function can be used to count the number of
Function cells that contain numbers.
Excel Function Description
Excel COUNTA Excel COUNTA function can be used when you want to
Function count all the cells in a range that are not empty.
Excel COUNTBLANK Excel COUNTBALNK function can be used when you have
Function to count all the empty cells in a range.
Excel COUNTIF Excel COUNTIF function can be used when you want to
Function count the number of cells that meet a specified criterion.
Excel MAX function can be used when you want to get the
Excel MAX Function
largest value from a set of values.
Excel MIN function can be used when you want to get the
Excel MIN Function
smallest value from a set of values.
Excel LEN function can be used when you want to get the
Excel LEN Function total number of characters in a specified string. This is useful
when you want to know the length of a string in a cell.
Excel PROPER
Function Excel PROPER function can be used when you want to
capitalize the first character of every word. Numbers, special
Excel Function Description
Excel SUBSTITUTE
Function Excel SUBSTITUTE function can be used when you want to
substitute text with new specified text in a string. It returns a
text string where an old text has been substituted by the new
one.
Excel ISBLANK
Function
Excel ISERROR
Function
Excel ISNA Function Excel IS function returns TRUE when specified condition is
Excel ISNUMBER TRUE. For example, ISNA would return TRUE if the cell
Function has a #N/A! error.
Excel ISEVEN
Function
Excel ISODD Function
Excel ISLOGICAL
Function
Excel ISTEXT
Function
Excel PMT function helps you calculate the payment you need to
Excel PMT
make for a loan when you know the total loan amount, interest rate,
Function
and the number of constant payments.
Excel NPV Excel NPV function allows you to calculate the Net Present Value of
Function all the cashflows when you know the discount rate
Excel IRR Excel IRR function allows you to calculate the Internal Rate of
Function Return when you have the cashflows data
VBA Functions
Excel Function Description
VBA TRIM function allows you to remove the leading and trailing
VBA TRIM
spaces from a text string in Excel. It can be a useful VBA function if
Function
you want to quickly clean the data.
VBA SPLIT function alllows you to split a text string based on the
VBA SPLIT
delimiter. For example, if you want to split text based on a comma
Function
or tab or colon, you can do that with the SPLIT function.
VBA MsgBox is a function that displays a dialog box that you can
VBA MsgBox
use to inform your users by showing a custom message or get some
Function
basic inputs (such as Yes/No or OK/Cancel).
VBA INSTR VBA InStr function finds the position of a specified substring within
Function the string and returns the first position of its occurrence.
VBA UCase Excel VBA UCASE function takes a string as the input and converts
Function all the lower case characters into upper case.
VBA LCase Excel VBA LCASE function takes a string as the input and converts
Function all the upper case characters into lower case.
VBA DIR Use VBA DIR function when you want to get the name of the file or
Function a folder, using their path name
Useful Excel Resources: