List of Excel Formulas and Functions
List of Excel Formulas and Functions
TABLE OF CONTENTS
Full List of Excel Functions and Formulas helps you to understand the
functions with Example Formulas. There are 500+ Excel Functions available in
○ Why Use Excel Functions? the latest version of Excel and counting. You can go to each formula and find
its description and use
• List of Excel Formulas and Functi…
○ Popular Functions Unlock the power of data analysis and manipulation with Excel functions! This
○ Information Functions comprehensive guide equips you with the knowledge to conquer
○ Text Functions spreadsheets like a pro, even if you’re a complete beginner. We’ll delve into
○ Date and Time Functions
○ Logical Functions the essential Excel functions list, categorized for easy understanding, and
○ Lookup and Reference Functions Homeequip Blog the skills to tackle
you with Tutorials Freereal-world
Templatesscenarios with confidence.
Premium Templates
○ Math and Trigonometry Functio…
Why Use Excel Functions?
○ Statistical Functions
○ Financial Functions Excel functions are pre-built formulas that automate calculations and data
○ Compatibility Functions manipulation, saving you time and effort. Imagine manually calculating
○ Cube Functions averages or formatting dates across hundreds of cells – functions eliminate
○ Database Functions
this drudgery! But the benefits go beyond efficiency:
○ Engineering Functions Accuracy: Functions minimize errors compared to manual calculations.
○ Web Functions Complexity: Functions can handle advanced tasks beyond basic
○ Conclusion: Mastering the Art … formulas.
Consistency: Functions ensure consistent formatting and calculations
throughout your spreadsheets.
Popular Functions
Home 1. IF: Evaluates
Blog Tutorials and
a condition Freereturns value
a specific
Templates if true,
Premium another if
Templates
false. Powerful for building complex decision-making formulas.
2. AND: Returns TRUE only if all specified conditions are true.
3. OR: Returns TRUE if any specified condition is true.
4. SUM: Adds values across a range of cells. A fundamental function for
basic calculations.
5. AVERAGE: Calculates the average of a set of numbers.
6. COUNT: Counts the number of cells containing numbers, text, or logical
values.
7. CONCAT: Combines multiple text strings into a single string. Useful for
merging names, addresses, etc.
8. LEFT: Extracts a specific number of characters from the left side of a
text string.
9. RIGHT: Extracts a specific number of characters from the right side of a
text string.
10. LEN:Counts the number of characters in a text string.
11. TODAY: Returns the current date.
12. VLOOKUP: Searches for a specific value in a leftmost column and
returns a corresponding value from another column in the same row. A
workhorse for lookups across worksheets.
13. INDEX & MATCH: A powerful combination for flexible lookups within
your spreadsheets.
14. COUNTIF: Counts the number of cells meeting a specific criteria.
15. SUMIF: Sums the values in a range based on a specific condition.
HomeInformation
Blog Free Templates
Functions
Tutorials Premium Templates
Get to Know Your Spreadsheet Better with Information Functions! These
tools reveal details about cells, formatting, and workbook properties.
Whether you need to check a cell’s data type (ISNUMBER, ISTEXT) or access
workbook information (INFO), these functions provide valuable insights into
the inner workings of your spreadsheet.
The
ERROR.TYPE Syntax:
function ERROR.TYPE(error_val)
returns a
Formula:
number that
ERROR.TYPE ERROR.TYPE(#VALUE!)This
corresponds to
will return the number 2,
a specific error
which corresponds to the
value in
#VALUE! error.
Microsoft
Excel.
Syntax: ISBLANK(value)
The ISBLANK
function in Formula: ISBLANK(A1)This
ISBLANK Excel checks if formula will return TRUE if
a cell is empty cell A1 is empty, and FALSE if
or not. it is not.
The ISERROR
function is
used to check Syntax: ISERROR(value)
ISERROR if a value is an
Formula: ISERROR(A1)
error and
returns either
TRUE or FALSE.
The ISEVEN
function is Syntax: ISEVEN(number)
used to
Formula: ISEVEN(2) will
ISEVEN determine
return TRUE because 2 is an
whether a
even number.
number is even
or odd.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
The
ISFORMULA
function in
Excel is used to Syntax: ISFORMULA(cell)
check if a cell
contains a Formula: To check if cell A1
ISFORMULA formula. It contains a formula, the
returns TRUE if following formula can be
the cell used:=ISFORMULA(A1)
contains a
formula and
FALSE if it does
not.
The ISLOGICAL
function is Syntax: ISLOGICAL(value)
used to check
ISLOGICAL if a value is a Formula: ISLOGICAL(TRUE)
logical value returns TRUE
(TRUE or
FALSE).
The
ISNONTEXT
function is Syntax: ISNONTEXT(value)
used to check
Formula:
if a value is not
ISNONTEXT ISNONTEXT(“Hello”)This will
text. It returns
return FALSE as “Hello” is
TRUE if the
text.
value is not text
and FALSE if it
is text.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
The ISNUMBER Syntax: ISNUMBER(value)
function is
Formula: ISNUMBER(A1) will
used to
ISNUMBER return TRUE if A1 contains a
determine if a
number, and FALSE if A1 does
value is a
not contain a number.
number or not.
The ISODD
function is
used to check Syntax: ISODD(number)
if a number is
odd. It returns Formula: ISODD(3)This will
ISODD
TRUE if the return TRUE because 3 is an
number is odd odd number.
and FALSE if
the number is
even.
The ISTEXT
function is a
built-in
function in Syntax: ISTEXT(value)
Excel that
Formula: ISTEXT(A1)This
checks to see if
ISTEXT formula will return TRUE if the
a cell contains
value in cell A1 is text and
text. It returns
FALSE if not.
TRUE if the
value is text
and FALSE if
not.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
The NPER
function in Syntax: NPER(rate, pmt, pv,
Excel is used to [fv], [type])
calculate the
number of Formula: To calculate the
periods for an number of periods for an
NPER
investment investment of $1000 with a
based on a payment of $50 and an
constant interest rate of 5%:NPER(5%,
payment and a -50, 1000)Result: 20
constant
interest rate.
The NA
function
returns the Syntax: NA()
#N/A error
NA
value, which Formula: NA()
indicates that a
value is not
available.
Syntax: SHEETS(reference)
The SHEETS
function Formula:
returns the SHEETS(“Sheet1:Sheet3”)This
SHEETS
number of would return the number 3,
sheets in a since the reference includes
reference. three sheets.
TYPE: The
TYPE function Syntax: TYPE(value)
is an Excel
Information Formula: TYPE(A1)If cell A1
function that contains the value “Hello”, the
TYPE
returns a result of the function would
number be 1, indicating that the value
indicating the is a text string.
type of value in
a cell.
Home Blog Tutorials Free Templates Premium Templates
Text Functions
Transform and Cleanse Your Text Data: Text data in your spreadsheets
needs some TLC? Text Functions are your one-stop shop! Whether you need
to combine text strings (CONCATENATE), extract specific characters (LEFT,
RIGHT), or format casing (UPPER, LOWER), these functions offer unparalleled
control over text manipulation and cleaning.
The ASC
function in
Microsoft Excel Syntax: ASC(text)
is used to
Formula: ASC(“A”)The result of th
ASC convert a
would be 65, which is the ASCII c
character into
letter A.
its
corresponding
ASCII code.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
The Syntax: ARRAYTOTEXT(array, del
ARRAYTOTEXT [text_qualifier])
function in
ARRAYTOTEXT Excel converts Formula:
an array of ARRAYTOTEXT({1,2,3,4,5},”,”,”‘”)R
values into a ‘1’,’2′,’3′,’4′,’5′
text string.
BAHTTEXT is
an Excel Syntax: BAHTTEXT(number)
function that
BAHTTEXT Formula: BAHTTEXT(12345)Resul
converts a
???????????????????????????????
number to Thai
text.
The CHAR
function Syntax: CHAR(number)
returns the
CHAR character Formula: CHAR(65)This will return
specified by character “A”.
the number
code.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
The CLEAN
function Syntax: CLEAN(text)
removes all
CLEAN non-printable Formula: CLEAN(“Hello!@#$%^&*
characters Result: HelloWorld
from a text
string.
The CODE
function is
used to convert
a text string Syntax: CODE(text)
CODE into a code
Formula: CODE(“A”) returns 65.
with a
corresponding
numerical
value.
The
CONCATENATE
function is Syntax: CONCATENATE(text1, [tex
used to join [text3], …)
CONCATENATE two or more
Formula: CONCATENATE(“Hello”,”
text strings
Result: Hello World
together. Can
not handle
ranges.
The DBCS
function is a
database Syntax: DBCS(database, field, cri
function in
DBCS Microsoft Excel Formula:
that allows you DBCS(“customers”,”name”,”state=
to extract data
from a
database.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
The DOLLAR
function Syntax: DOLLAR(number, [decima
converts a
Formula: DOLLAR(A2, 2)This exam
DOLLAR number to text,
convert the number in cell A2 to te
using a
two decimal places.
currency
format.
The EXACT
function
compares two
text strings and Syntax: EXACT(text1, text2)
returns TRUE if
EXACT Formula: EXACT(“Apple”,”apple”)R
the two strings
FALSE
are exactly the
same, including
case and any
spaces.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
The FIXED
function in
Excel is used to
round a
number to a Syntax: FIXED(number, [decimals
specified [no_commas])
FIXED number of
Formula: FIXED(123.4567,2,TRUE)
decimal places
123.46
and display it
as a text string
with a fixed
number of
decimal places.
LEN:The LEN
function is
used to count Syntax: LEN(text)
the number of
characters in a Formula: LEN(“Hello World”)Resu
text string. And 11LENBs:Description: The LENBs f
LEN, LENB
LENB returns used to count the number of byte
the number of string.Syntax: LENBs(text)LENBs(
bytes used to World”)Result: 11
represent the
characters in a
text string.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
The Right
function in
Excel returns
the rightmost
characters Syntax: RIGHT(text, [num_chars])
from a text
RIGHT, RIGHTB Formula: RIGHT(“Excel Sheet”,
string. And
5)Result:Sheet
RIGHTB returns
the rightmost
characters
based on the
bytes.
The LOWER
function in Syntax: LOWER(text)
Excel converts
LOWER Formula: LOWER(“EXCEL
all letters in a
FUNCTION”)Result: excel function
text string to
lowercase.
The PHONETIC
function is
used to convert
text into
phonetic
pronunciation.
This function is
useful for Syntax: PHONETIC(text)
creating a
PHONETIC Formula: PHONETIC(“Excel”)Resu
phonetic
ELL”
representation
of names or
words, which
can help
differentiate
between similar
sounding
words.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
The PROPER
function is
used to convert
a text string to
proper case, Syntax: PROPER(text)
which means
PROPER Formula: PROPER(“this is a test”)
that the first
Is A Test
letter of each
word is
capitalized and
all other letters
are lowercase.
The REPT
function in
Excel is used to Syntax: REPT(text, number_times
repeat a text
REPT Formula: REPT(“Hello”, 3)Result:
string a
HelloHelloHello
specified
number of
times.
The TEXT
function is Syntax: TEXT(value, format_text)
used to convert
TEXT
a value to text Formula: TEXT(A1,”$#,##0.00″)
in a specific
number format.
The
TEXTAFTER
function Syntax: TEXTAFTER(text, charact
returns the
TEXTAFTER characters Formula: TEXTAFTER(“Hello
after a given World”,”o”)Result: ” World”
character or
characters in a
text string.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
The
TEXTBEFORE
function is a Syntax: TEXTBEFORE(text, delimi
text function in
Microsoft Excel Formula:
TEXTBEFORE
that returns the TEXTBEFORE(“www.example.com
text before a www
specific
character in a
string.
The TEXTJOIN
function Syntax: TEXTJOIN(delimiter, igno
combines the text1, [text2], …)
text from
multiple ranges Formula: TEXTJOIN(“, “, TRUE, B2
and/or strings, example combines the text from c
TEXTJOIN
and includes a B3, and B4, and includes a comma
delimiter you space between each value. The “
specify argument ignores any empty cells
between each range.
text value that
is combined.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
The TEXTSPLIT Syntax: TEXTSPLIT(text, delimiter
function splits
a text string Formula:
TEXTSPLIT into multiple TEXTSPLIT(“Apple,Banana,Orange
parts based on formula will return the result “App
a specified Orange”.
delimiter.
The TRIM
function
removes all Syntax: TRIM(text)
spaces from a
TRIM text string Formula: TRIM(” This is a test “)R
except for is a test”
single spaces
between
words.
The UNICODE
function is a
built-in
function in
Microsoft Excel Syntax: UNICODE(text)
that returns the
UNICODE
numerical Formula: UNICODE(“A”)Result: 65
value of a
character or
the first
character in a
string.
Manage Dates and Times with Ease: Working with dates and times in Excel
can be a breeze with the dedicated Date & Time Functions. Need to know the
current date (TODAY) or extract the year (YEAR) from a date? Perhaps you
want to calculate the difference between two dates (DATEDIF)? These
functions streamline date and time manipulation for efficient calendar
Homecalculations
Blog and analyses.
time-based
Tutorials Free Templates Premium Templates
Work with dates and times efficiently.
Calculate differences between dates (DATEDIF).
Extract specific components from dates (YEAR, MONTH, DAY).
Automate tasks based on current date and time (TODAY, NOW).
Syntax: DAYS(end_dat
Syntax: DAYS(end_dat
The DAYS function
returns the number Formula: DAYS(A2,A1)
DAYS
of days between two the start date and A2 c
dates. date.
Syntax: NETWORKDAY
NETWORKDAYS.INTL end_date, [weekend],
is an Excel function
Formula:
that calculates the
NETWORKDAYS.INTL(
NETWORKDAYS.INTL number of workdays
example calculates the
between two dates,
workdays between the
excluding weekends
with weekends set to S
and holidays.
(11), and holidays in th
Home
Function
Blog Tutorials Description
Free Templates Syntax and Formula
Premium Templates
Syntax: NOW()
NOW: This function
returns the current Formula: NOW()This f
NOW
system date and the current date and ti
time. 4:54:00 PM
Syntax: SECOND(time
The SECOND
function returns the Formula: SECOND(A1)
SECOND
second part of a time the time value 09:15:3
value. be 30.
Syntax: TODAY()
The TODAY function
TODAY returns the current Formula: TODAY()This
date. current date in the cel
Syntax: WEEKDAY(ser
[return_type])
The WEEKDAY
function in Excel Formula: WEEKDAY(A
returns a number cell containing a date,
WEEKDAY from 1-7 function will return a n
corresponding to the corresponding to the d
day of the week for a example, if A2 contain
given date. “2/14/2021”, the WEEK
return 4, correspondin
Syntax: WORKDAY.INT
The WORKDAY.INTL [weekend], [holidays])
function calculates
Formula: WORKDAY.IN
the date after a
10, 11, A2:A10)This exa
WORKDAY.INTL specified number of
date 10 workdays after
workdays, taking into
taking into account we
account weekends
and Sunday) and holid
and holidays.
cells A2:A10.
Syntax: YEARFRAC(st
The YEARFRAC [basis])
function is used to
calculate the fraction Formula: YEARFRAC(B
YEARFRAC of the year will calculate the fract
represented by the between the dates in c
number of days using the US (NASD) 3
between two dates. basis.
Logical Functions
The AND
function is a
logical function
in Excel that
returns TRUE if
all of the Syntax: AND(logical1, [logical2], …)
AND
conditions that Formula: AND(A1>5,B1<10)
are specified are
true, and returns
FALSE if any of
the conditions
are false.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
UMNBYCOLUMN Syntax: BYCOLUMN(array, [col],
is a function in [ascending])
Microsoft Excel
Formula: BYCOLUMN(A1:C10, 2,
BYCOL that allows users
TRUE)This example will sort the
to sort a range
range A1:C10 by the second column
of data by
in ascending order.
column.
The FALSE
function in Excel Syntax: FALSE()
is a logical
FALSE Formula: FALSE()This formula will
function that
return the value FALSE.
returns the value
FALSE.
The IF function
in Excel is a
logical function
that allows you Syntax: IF(logical_test, value_if_tru
to make a logical value_if_false)
comparison
IF
between two Formula: IF(A2>B2, “A is greater
values and than B”, “B is greater than A”)
returns a value
based on the
result of that
comparison.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
The IFERROR
function is used
to catch and
handle errors in Syntax: IFERROR(value,
a formula. It value_if_error)
IFERROR tests a value for
an error and Formula: IFERROR(A1/B1, 0)
returns a
different value if
an error is
found.
IFNA: This
function returns
the value you
specify if a Syntax: IFNA(value_if_error,
formula value_if_no_error)
IFNA
evaluates to an
Formula: IFNA(0,A1/A2)
error; otherwise,
it returns the
result of the
formula.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
IFS is an Excel Syntax: IFS(logical_test1,
function that value_if_true1, [logical_test2,
allows you to value_if_true2], …)
test multiple
Formula: IFS(A1=1, “Yes”, A1=2,
conditions at the
IFS “No”, A1=3, “Maybe”)This formula
same time and
will check the value in cell A1 and
returns a value
return “Yes” if it is equal to 1, “No” i
that corresponds
it is equal to 2, and “Maybe” if it is
to the first TRUE
equal to 3.
result.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
The LAMBDA
function in Excel Syntax: LAMBDA(argument1,
is used to create argument2, …, argument_n,
custom expression)Arguments:argument1,
functions. It argument2, …, argument_n: These
allows users to are the arguments that will be used
create their own in the expression.expression: This i
LAMBDA functions that the expression that will be
can be used in evaluated.
formulas. It is a
powerful tool Formula: LAMBDA(x, y, x+y)This
that can be used function adds two arguments (x and
to create y) and returns the sum of the two.
complex
formulas.
The OR function
is a logical
function in Excel Syntax: OR(logical1, [logical2], …)
that returns
OR
either TRUE or Formula: OR(A1=”Yes”, B1=”Yes”)
FALSE based on
one or more
conditions.
The SCAN
function
searches for Syntax: SCAN(text, character_set,
specific [start_num], [num_chars])
characters
Formula: SCAN(“Hello World”, ” “, 1
within a text
SCAN 4)The example above will return
string and
“Hello” as the text string from the
returns the text
start position of 1 to the character
string from the
found, which is a space.
start position to
the character
found.
Find What You Need Across Your Spreadsheets: Lost in a sea of data across
different worksheets? Lookup & Reference Functions come to the rescue!
These champions help you retrieve specific data from any location within
your workbook. VLOOKUP and HLOOKUP are masters at searching for values
and returning corresponding information, while INDEX and MATCH offer
ultimate flexibility for customized lookups.
The AREAS
function in Syntax: AREAS(reference)
Microsoft Excel
Formula: AREAS(A1:B2)This formu
AREAS returns the
return the value 2, since the range
number of
contains two areas.
areas in a
reference.
The
CHOOSECOLS
function allows Syntax: CHOOSECOLS(range, [cr
you to select
columns from a Formula: CHOOSECOLS(A1:F10, “
CHOOSECOLS range of cells. example will return an array of co
It returns an numbers from A1:F10 that contain
array of the greater than 50.
selected
column
numbers.
The
CHOOSEROWS Syntax: CHOOSEROWS(list, criter
function
returns an Formula: CHOOSEROWS(A1:A10, “
CHOOSEROWS
array of rows will return an array of rows from A
from a list where the value is greater than 5.
based on a
criteria.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
The COLUMN
function is an Syntax: COLUMN(reference)
Excel function
Formula: COLUMN(A1)This will re
COLUMN that returns the
value 1, since A1 is the first colum
column number
worksheet.
of a given cell
reference.
COLUMNS is a
function in Syntax: COLUMNS(array)
Microsoft Excel
that returns the Formula: COLUMNS(A1:B2)This e
COLUMNS
number of would return 2, since the range A1
columns in a contains two columns.
given array or
reference.
The FILTER
function is Syntax: FILTER(array, include, [if_
used to filter a
range of data Formula: FILTER(A2:C10, B2:B10=
based on matches”)This example will return
FILTER supplied values in column A that correspon
criteria. It rows in column B that contain the
returns a “Yes”. If no matches are found, it w
subset of data “No matches”.
that meets the
criteria.
The
GETPIVOTDATA
function in
Excel is used to
retrieve data Syntax: GETPIVOTDATA(data_field
stored in a pivot_table, [field1, item1, field2, it
PivotTable. It is
GETPIVOTDATA
used to Formula:
reference data GETPIVOTDATA(“Sales”,A2,”Regio
stored in a
PivotTable by
using a
standard cell
reference.
HSTACK is an
Excel function
that allows Syntax: HSTACK(array1, array2, a
users to
HSTACK Formula: HSTACK({1,2,3}, {4,5,6},
combine two or
returns {1,2,3,4,5,6,7,8,9}
more arrays
into one single
array.
The INDEX
function Syntax: INDEX(array, row_num,
returns a value [column_num])
or reference of
Formula: INDEX(A1:C3, 2, 3)This f
INDEX the cell at the
will return the value at the interse
intersection of
the second row and third column
a particular row
range A1:C3.
and column
within a range.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
The INDIRECT
function
returns a
reference to a Syntax: INDIRECT(ref_text, [a1])
range. It is
INDIRECT Formula: INDIRECT(“A1”) returns t
useful when
of cell A1.
you want to
convert a text
string into a
valid reference.
The LOOKUP
function is
used to look up
a value in a row
or column of Syntax: LOOKUP(lookup_value,
data. It can be lookup_vector, [result_vector])
LOOKUP
used to look up
Formula: LOOKUP(A2,B2:B6,C2:C
a value either
vertically (in a
column) or
horizontally (in
a row).
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
Syntax: MATCH(lookup_value,
lookup_array,
[match_type])lookup_value: The v
MATCH is a found in the lookup_array.lookup_
function in range of cells being
Excel that looks searched.match_type: [optional] T
for a specified number -1, 0, or 1. The match_typ
item in a range specifies how Excel matches look
MATCH of cells and with values in lookup_array.
returns the
Formula: MATCH(A1,B1:B10,0)This
relative
looks for the value in cell A1 in the
position of that
cells B1:B10. The match_type is se
item in the
which means that Excel will find a
range.
match for the value in A1. The fun
return the relative position of the v
in the range B1:B10.
The ROW
function Syntax: ROW([reference])
ROW returns the row
Formula: ROW(A1) returns 1.
number of a
cell reference.
The SORT
function in
Excel allows Syntax: SORT(array, [sort_index],
users to sort a [sort_order], [by_col])
range of data
SORT by one or more Formula: SORT(A2:D6, 2, 1, TRUE
columns or example will sort the range of dat
rows in either by the second column in ascendin
ascending or
descending
order.
TAKE is an
Excel function
that returns a Syntax: TAKE(text,num_chars)
specified
TAKE
number of Formula: TAKE(“Excel”,3)Result: E
characters
from the start
of a text string.
The TOCOL
function Syntax: TOCOL(cell_reference)
returns the
TOCOL
column number Formula: TOCOL(“A1”) returns 1
of a given cell
reference.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
The TOROW Syntax: TOROW(reference)
function
TOROW returns the row Formula: TOROW(A1)This example
number of a the row number of cell A1, which i
reference.
The
TRANSPOSE Syntax: TRANSPOSE(array)
function in
Formula: TRANSPOSE(A1:C3)This
Excel is used to
would take the range of cells from
TRANSPOSE transpose a
and transpose them so that the ro
range of cells
become columns and the columns
from vertical to
rows.
horizontal or
vice versa.
The VSTACK
function in
Excel is used to Syntax: VSTACK(array1, array2, [a
stack two or …)
VSTACK
more vertical
Formula: VSTACK(A1:A5, B1:B5)
ranges of data
on top of each
other.
The
WRAPCOLS
function in Syntax: WRAPCOLS(cell_referenc
Microsoft Excel number_of_columns)
WRAPCOLS is used to wrap
Formula: WRAPCOLS(A1, 3)This w
the contents of
the contents of cell A1 across 3 co
a cell across
multiple
columns.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
WRAPROWS is
a Microsoft
Excel function
that allows you
to wrap text in
a cell to Syntax: WRAPROWS(cell_referen
multiple lines.
WRAPROWS
This is useful Formula: WRAPROWS(A1)
when you have
a long text
string that
needs to be
displayed in a
cell.
XMATCH: This
function Syntax: XMATCH(lookup_value,
returns the lookup_array, [match_type])
position of a
value in a given Formula: XMATCH(“Apple”, {“Oran
XMATCH
array that “Banana”, “Apple”, “Grape”}, 0)Th
matches a will return 3, since “Apple” is the t
specified value in the array.
in a specified
order.
Syntax: ACOS(number)
The ACOS
function returns Formula: To find the arccosine
ACOS the arccosine (in 0.5, the formula would
radians) of a be:=ACOS(0.5)The result wou
number. 1.0471975511966 radians.
Home
Function
Blog Tutorials Description
Free Templates
Syntax and Formula
Premium Templates
The ACOSH
function returns Syntax: ACOSH(number)
the inverse
ACOSH Formula: ACOSH(3)The result
hyperbolic
this formula is 1.762747174039
cosine of a
number.
The ACOT
function returns Syntax: ACOT(number)
the inverse
ACOT Formula: ACOT(0.5)This form
cotangent
returns 1.10714871779409.
(arccotangent) of
a given number.
The ACOTH
function is an
Excel function Syntax: ACOTH(number)
that returns the
ACOTH Formula: ACOTH(2)This formu
inverse
returns 0.5493061443340548
hyperbolic
cotangent of a
given number.
Home
Function
Blog Tutorials Description
Free Templates
Syntax and Formula
Premium Templates
Syntax: AGGREGATE(function
options, ref1, [ref2],
The AGGREGATE …)Function_num: This is a num
function is a that specifies the type of func
built-in function be used.Options: This is a num
in Excel that that specifies the options to b
performs used.Ref1, [ref2], …: This is th
AGGREGATE calculations such range of cells that will be used
as sum, count, the calculation.
average, max,
min, product, etc. Formula:
on a range of AGGREGATE(3,6,A1:A10)This
data. formula will calculate the aver
the values in the range A1:A10
The ARABIC
function is used Syntax: ARABIC(text)
ARABIC to convert Roman
Formula: ARABIC(“XVII”) retur
numerals to
Arabic numerals.
The ASINH
function returns Syntax: ASINH(number)
the inverse
ASINH Formula: ASINH(2)This formu
hyperbolic sine
returns 1.4436354751788.
of a given
number.
The ATAN
function in Excel
returns the
arctangent of a
given number, Syntax: ATAN(number)
which is the
ATAN Formula: ATAN(1) returns
angle in radians
0.785398163397448
between the x-
axis and a line
from the origin to
the given
number.
Home
Function
Blog Tutorials Description
Free Templates
Syntax and Formula
Premium Templates
The ATAN2
function returns
the arctangent of Syntax: ATAN2(x_num, y_num
two numbers,
Formula: ATAN2(2, 3)This exa
which is the
returns the arctangent of 2 an
ATAN2 angle between
which is 0.982793723247329
the x-axis and a
radians or 56.3099324740202
line from the
degrees.
origin to a point
in the Cartesian
plane.
The ATANH
function is an Syntax: ATANH(number)
Excel function
Formula: ATANH(0.5)This exa
that returns the
ATANH would return 0.549306144334
inverse
which is the inverse hyperboli
hyperbolic
tangent of 0.5.
tangent of a
number.
The
CEILING.PRECISE Syntax: CEILING.PRECISE(num
function rounds a significance)
number up to the
CEILING.PRECISE
nearest integer Formula: CEILING.PRECISE(14
or to the nearest 0.1)Result: 14.9
multiple of
significance.
The COSH
function in Excel Syntax: COSH(number)
returns the
COSH Formula: COSH(2) returns
hyperbolic
3.7621956910836
cosine of a given
number.
Home
Function
Blog Tutorials Description
Free Templates
Syntax and Formula
Premium Templates
The COT Syntax: COT(number)
function is used
to calculate the Formula: COT(PI()/4)This exa
COT
cotangent of an would return the cotangent of
angle given in which is equal to 1.
radians.
The COTH
function returns Syntax: COTH(number)
COTH the hyperbolic
Formula: COTH(0.5) returns 1.
cotangent of a
given number.
The EVEN
function rounds a Syntax: EVEN(number)
EVEN number up to the
Formula: EVEN(3.2)Result: 4
nearest even
integer.
Syntax: FACT(number)
FACT: The FACT
function returns Formula: FACT(5)This formula
FACT
the factorial of a return 120, which is the factor
number. (5x4x3x2x1).
Home
Function
Blog Tutorials Description
Free Templates
Syntax and Formula
Premium Templates
The
FACTDOUBLE
function returns
the double
factorial of a Syntax: FACTDOUBLE(numbe
given number.
Formula: To calculate the dou
The double
FACTDOUBLE factorial of 8, the formula wou
factorial is the
=FACTDOUBLE(8). The result
product of all the
be 8 x 6 x 4 x 2 = 384.
integers from 1
up to the given
number, but
skipping every
other number.
The FLOOR
function in Excel Syntax: FLOOR(number,
rounds a number significance)
FLOOR down to the
Formula: FLOOR(4.7, 0.5)The
nearest multiple
of this formula is 4.5.
of a specified
value.
Home
Function
Blog Tutorials Description
Free Templates
Syntax and Formula
Premium Templates
The
FLOOR.MATH Syntax: FLOOR.MATH(numbe
function rounds a significance, [mode])
number down to
FLOOR.MATH
the nearest Formula: FLOOR.MATH(12.5,
multiple of a 0.5)Result: 12
specified
significance.
ISO.CEILING is an
Excel function Syntax:
that rounds a ISO.CEILING(number,significa
ISO.CEILING number to the
Formula:
nearest integer
ISO.CEILING(3.14,0.1)Result: 3.
or multiple of
significance.
The MMULT
function returns Syntax: MMULT(array1, array2
MMULT the matrix
Formula: MMULT(A1:B2,C1:D2
product of two
arrays.
Syntax: MULTINOMIAL(numbe
The number2, …)
MULTINOMIAL
function returns Formula: MULTINOMIAL(2,3,4
MULTINOMIAL
the multinomial example returns the multinom
coefficient of a coefficient of 2, 3 and 4, whic
set of numbers. 120.
The PI function in
Excel returns the
value of pi (p), Syntax: PI()
which is the ratio
PI Formula: PI()Result:
of the
3.14159265358979
circumference of
a circle to its
diameter.
Home
Function
Blog Tutorials Description
Free Templates
Syntax and Formula
Premium Templates
Description:The
POWER function
is a mathematical Syntax: POWER(number, pow
function that
POWER Formula: POWER(2,3)This will
returns the result
return 8, as 2 to the power of
of a number
raised to a
specified power.
The PRODUCT
function Syntax: PRODUCT(number1,
multiplies all the [number2], …)
PRODUCT numbers given
Formula: PRODUCT(2,3,4,5)Re
as arguments
120
and returns the
product.
The RAND
function in Excel Syntax: RAND()
is used to
RAND Formula: RAND()Result:
generate a
0.838592582
random number
between 0 and 1.
The RANDARRAY
function is an Syntax: RANDARRAY(rows,
Excel function columns, min, max)
that generates an
RANDARRAY array of random Formula: RANDARRAY(2,3,1,10
numbers will generate a 2×3 array of ra
between two numbers between 1 and 10.
specified
numbers.
Home
Function
Blog Tutorials Description
Free Templates
Syntax and Formula
Premium Templates
The
RANDBETWEEN Syntax: RANDBETWEEN(botto
function is used top)
to generate a
RANDBETWEEN Formula: RANDBETWEEN(1,10
random number
will generate a random numbe
between two
between 1 and 10.
specified
numbers.
Syntax: ROMAN(number,
[form])number: The number to
ROMAN is an converted to a Roman
Excel function numeral.form: [optional] An in
ROMAN that converts a that specifies the type of Rom
number to a numeral you want.
Roman numeral.
Formula: ROMAN(10)Result: X
Home
Function
Blog Tutorials Description
Free Templates
Syntax and Formula
Premium Templates
The ROUND Syntax: ROUND(number,
function rounds a num_digits)
ROUND number to a
Formula: ROUND(3.14159, 2)T
specified number
example would return 3.14.
of digits.
The
ROUNDDOWN Syntax: ROUNDDOWN(numbe
function rounds a num_digits)
ROUNDDOWN number down to
Formula:
the specified
ROUNDDOWN(2.567,2)Result:
number of
decimal places.
The SEQUENCE
function Syntax: SEQUENCE(rows, col
generates a list [start], [step])
of sequential
SEQUENCE Formula: SEQUENCE(3,2,1,2)T
numbers in an
would generate the following a
array, based on
{1,3; 5,7; 9,11}
user-defined
parameters.
The SIGN
function returns
the sign of a Syntax: SIGN(number)
number. It
returns 1 if the Formula: SIGN(5)This formula
SIGN
number is return 1, since 5 is a positive
positive, 0 if the number.
number is 0, and
-1 if the number
is negative.
Home
Function
Blog Tutorials Description
Free Templates
Syntax and Formula
Premium Templates
Syntax: SIN(angle)
The SIN function
SIN returns the sine Formula: SIN(45)Result:
of a given angle. 0.70710678118
The SQRT
function in Excel Syntax: SQRT(number)
SQRT returns the
Formula: SQRT(9)Result: 3
square root of a
given number.
Syntax: SUMIFS(sum_range,
The SUMIFS criteria_range1, criteria1,
function is an [criteria_range2, criteria2], …)
Excel function
Formula: To sum the values in
SUMIFS used to sum
range A1:A10, if the correspon
values in a range
values in cell range B1:B10 are
that meet
greater than 5, the formula wo
multiple criteria.
be:=SUMIFS(A1:A10,B1:B10,”>5
The SUMX2MY2
function in Syntax: SUMX2MY2(array_x,
Microsoft Excel array_y)
calculates the
Formula: SUMX2MY2({1,2,3},
sum of the
SUMX2MY2 {4,5,6})This formula will calcu
squares of the
the sum of the squares of the
differences
differences between the two a
between two
which is equal to 54.
arrays of
numbers.
Home
Function
Blog Tutorials Description
Free Templates
Syntax and Formula
Premium Templates
The SUMX2PY2 Syntax: SUMX2PY2(array1, ar
function adds the
sum of the Formula:
squares of two SUMX2PY2(A1:A5,B1:B5)This w
SUMX2PY2
arrays and then return the square root of the s
returns the the squares of the values in A
square root of and B1:B5.
the result.
The SUMXMY2
function returns
the sum of the Syntax: SUMXMY2(array1, arr
SUMXMY2 difference of two
Formula: SUMXMY2(A1:A5,B1
arrays, or
ranges, of
numbers.
The TRUNC
function Syntax: TRUNC(number,
truncates a [num_digits])
TRUNC number to an
Formula:=TRUNC(3.14159,2)R
integer by
3.14
removing the
decimal values.
Statistical Functions
Dive Deep into Your Data: Get into the heart of your data with Statistical
Functions! Analyze trends, central tendencies, and data dispersion with
functions like AVERAGE, MEDIAN, and STDEV. Explore the distribution of your
data with COUNTIF and SUMIF, or identify the minimum and maximum values
(MIN, MAX) to gain valuable insights from your datasets.
Analyze trends, central tendencies, and data dispersion.
Home Calculate
Blog Tutorials FreelikeTemplates
common statistics average (AVERAGE), median
Premium (MEDIAN),
Templates
and standard deviation (STDEV).
Identify minimum and maximum values (MIN, MAX).
Count data meeting specific criteria (COUNTIF, SUMIF).
Syn
AVEDEV: The AVEDEV function
in Excel returns the average of For
AVEDEV
the absolute deviations of data 2, w
points from their mean. 4, 6
Syn
The AVERAGEIFS function is crit
an Excel function that
For
AVERAGEIFS calculates the average of a
ran
range of cells that meet
B1:B
multiple criteria.
AVE
Syn
BETA.DIST is an Excel function
For
used to calculate the
den
BETA.DIST cumulative beta probability
alph
density function (PDF) for a
follo
given set of parameters.
TRU
Home
Function
Blog Tutorials Free Templates
Description
Premium Templates
Syn
Syn
BETA.INV is an Excel function
that returns the inverse of the For
BETA.INV cumulative distribution the
function for a specified beta dist
distribution. with
Syn
The CHISQ.DIST function
returns the cumulative For
CHISQ.DIST
probability of a chi-squared the
distribution. with
Syn
The CHISQ.INV function in
For
Excel returns the inverse of
CHISQ.INV inve
the left-tailed probability of
dist
the chi-squared distribution.
free
Syn
The CHISQ.INV.RT function
For
returns the inverse of the
CHISQ.INV.RT inve
right-tailed probability of the
dist
chi-squared distribution.
free
Syn
The CONFIDENCE.T function
is used to calculate the For
confidence interval for a sam
CONFIDENCE.T
population mean, based on a sam
sample mean and standard CO
deviation. of 8
Home
Function
Blog Tutorials Free Templates
Description
Premium Templates
Syn
CORREL is an Excel function Syn
that returns the correlation
coefficient of two sets of For
CORREL
values. It is used to measure the
the linear relationship between thro
two variables.
Syn
The COUNT function is used
to count the number of cells For
COUNT
that contain numbers within a num
specified range. whe
Syn
The COUNTBLANK function
COUNTBLANK counts the number of empty For
cells in a range of cells. cou
Home
Function
Blog Tutorials Free Templates
Description
Premium Templates
Syn
Syn
COUNTIF is an Excel function
used to count the number of For
COUNTIF
cells within a range that meet the
a specified criteria. 5.
Syn
The COUNTIFS function is a [cri
statistical function used to
For
COUNTIFS count the number of cells in a
exa
range that meet multiple
A1:A
criteria.
in t
Syn
The COVARIANCE.P function
calculates the population For
COVARIANCE.P
covariance of two sets of retu
values. A2
Syn
DEVSQ is an Excel function
that calculates the sum of For
DEVSQ squares of deviations of data the
points from their sample 4, a
mean. wou
Syn
at w
The EXPON.DIST function dist
returns the exponential dist
distribution. It returns the the
EXPON.DIST probability that a random
variable, which follows an For
exponential distribution, is less the
than or equal to a given value. exp
tha
Home
Function
Blog Tutorials Free Templates
Description
Premium Templates
Syn
F.DIST is an Excel function
that returns the F probability Syn
distribution. It calculates the
For
F.DIST probability of a value
pro
occurring given a certain
deg
number of degrees of
freedom.
Syn
[kn
The FORECAST.ETS.CONFINT [se
function is an Excel function
For
that returns a confidence
FORECAST.ETS.CONFINT FOR
interval for a forecast
exa
generated by the
fore
FORECAST.ETS function.
usin
kno
Home
Function
Blog Tutorials Free Templates
Description
Premium Templates
Syn
Syn
[se
The
FORECAST.ETS.SEASONALITY For
function in Microsoft Excel is 1, 0
FORECAST.ETS.SEASONALITY
used to predict future values FOR
based on existing values that valu
have a seasonal pattern. sea
agg
Syn
Syn
The LARGE function returns
For
LARGE the nth largest value from a
the
range of values.
A1 t
Syn
The LOGEST function is used [sta
to calculate an exponential
curve that best fits a set of For
data points. It returns an array exa
LOGEST
of values that describe the the
exponential curve, including arra
the y-intercept, the slope, and incl
the correlation coefficient. coe
Syn
The MAX function in Excel
MAX returns the largest value from For
a range of values. valu
Syn
[cri
The MINIFS function is used to
For
find the minimum value from a
MINIFS MIN
range of cells that meet
will
multiple criteria.
the
in B
Syn
NEGBINOM.DIST is an Excel pro
function that calculates the of f
negative binomial distribution. suc
The negative binomial suc
distribution is a probability form
NEGBINOM.DIST distribution that is used to fun
represent the number of
successes in a sequence of For
independent Bernoulli trials retu
before a specified number of inde
failures occur. of 0
For
the
stan
0.9
NORM.S.INV is an Excel
function that returns the Syn
inverse of the standard normal
cumulative distribution. This For
NORM.S.INV
function is used to calculate gre
the probability of a value Thi
being greater than or less than
a certain number.
Syn
The PERCENTILE.INC function
For
PERCENTILE.INC in Excel returns the k-th
wou
percentile of values in a range.
ran
Syn
For
The PERCENTRANK.EXC
exa
function returns the rank of a
PERCENTRANK.EXC ran
value in a data set as a
of t
percentage of the data set.
spe
dec
Home
Function
Blog Tutorials Free Templates
Description
Premium Templates
Syn
Syn
Syn
ran
The QUARTILE.INC function wan
returns the quartile of a given whi
QUARTILE.INC data set, where quartiles
divide a ranked set of data For
into four equal parts. the
A1:A
Syn
The SMALL function returns
SMALL the nth smallest value from a For
given set of values. sma
Syn
T.DIST is an Excel function
that returns the probability For
T.DIST
associated with a Student’s t- cum
distribution. with
Home
Function
Blog Tutorials Free Templates
Description
Premium Templates
Syn
The T.DIST.2T function Syn
returns the probability
For
associated with a Student’s t-
T.DIST.2T valu
distribution. It can be used to
free
determine the probability of a
Thi
given range of values.
Syn
VAR.S is an Excel function that
calculates the sample variance For
VAR.S
of a population based on a calc
sample of numbers. num
Syn
The VARA function in Excel
VARA returns the variance of an For
array or range of numbers. var
Syn
The Z.TEST function in Excel
For
is used to calculate the one-
Z.TEST calc
tailed or two-tailed
of a
probability-value of a z-test.
mea
Home Blog Tutorials Free Templates Premium Templates
Financial Functions
The
ACCRINTM
function
returns the Syntax: ACCRINTM(issue, first_inte
amount of [calc_method])
interest that
has been Formula: ACCRINTM(“1/1/2019”, “1/1
ACCRINTM accrued on a example returns the amount of inter
security that 1/1/2019, first interest date of 1/1/201
pays periodic rate of 6%, par value of $1,000, and
interest, such 30/360 day count basis and the pric
as a bond,
between a
start and end
date.
The
AMORLINC
function is
used to Syntax: AMORLINC(cost, date_purc
calculate the
depreciation Formula: To calculate the depreciat
AMORLINC
of an asset for on 1/1/2020, and has a salvage value
a specified can be used:AMORLINC(10000, “1/1
period using
the linear
depreciation
method.
The
COUPDAYS
function Syntax: COUPDAYS(settlement, mat
returns the
Formula: COUPDAYS(“9/15/2020”, “
number of
COUPDAYS of days in the coupon period that co
days in the
maturity date of 9/15/2021, a freque
coupon period
0 (US (NASD) 30/360). The result is
that contains
the settlement
date.
COUPNUM is
an Excel
function that
calculates the
number of
coupon
payments Syntax: COUPNUM(settlement, mat
between two
dates. It is Formula: COUPNUM(DATE(2020,1,1)
COUPNUM used to the number of coupon payments be
calculate the assuming a frequency of 2 payment
number of The result is 6.
times an
investor will
receive a
coupon
payment
between two
dates.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
The
COUPPCD Syntax: COUPPCD(settlement, matu
function
returns the Formula: COUPPCD(DATE(2021,1,1),
COUPPCD next coupon 3/1/2021, which is the next coupon p
payment date 1/1/2021, with a maturity date of 6/3
after the basis of 0 (US (NASD) 30/360).
settlement
date.
The CUMIPMT
function in
Excel
calculates the Syntax: CUMIPMT(rate, nper, pv, st
cumulative
Formula: To calculate the cumulativ
CUMIPMT interest paid
interest rate of 5% over a period of
on a loan
would be:=CUMIPMT(0.05, 5, 10000
between a
start period
and an end
period.
DOLLARDE is
an Excel
function that
converts a Syntax: DOLLARDE(fractional_dolla
dollar price
DOLLARDE
expressed as Formula: DOLLARDE(3/32, 32)Resu
a fraction into
a dollar price
expressed as
a decimal.
The
DURATION
function in Syntax: DURATION(settlement, mat
Excel
Formula: DURATION(DATE(2020,1,1)
DURATION calculates the
number of days between January 1s
number of
annual frequency and a US (NASD)
days between
two given
dates.
FV: The FV
function in
Excel is used
to calculate Syntax: FV(rate, nper, pmt)
the future
FV value of an Formula: FV(0.06, 10, -100)This exa
investment. It $100 for 10 periods at an interest rat
takes three
arguments:
rate, nper, and
pmt.
The IRR
function in
Excel is a
financial
function that
returns the
internal rate of
return for a Syntax: IRR(values, [guess])
series of cash
IRR Formula: IRR(A2:A7,0.1)This example
flows. The
rate of return for a series of cash flo
internal rate of
return is the
discount rate
that sets the
net present
value of the
cash flows to
zero.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
The ISPMT
function Syntax: ISPMT(rate, period, number
calculates the
interest paid Formula: ISPMT(0.08, 3, 12, 10000)T
ISPMT
during a the interest paid during the 3rd perio
specific and a present value of 10,000.
period of an
investment.
The
MDURATION
function Syntax: MDURATION(settlement, ma
returns the
Formula: MDURATION(DATE(2018,1,
Macauley
MDURATION returns the Macauley duration of a s
duration of a
a maturity date of January 1, 2022, a
security with
a frequency of semi-annual paymen
an assumed
par value of
$100.
NOMINAL:
This function
is used to
calculate the
nominal
interest rate Syntax: NOMINAL(effect_rate, nper
NOMINAL given the
Formula: NOMINAL(0.1, 4)Result: 0.0
effective rate
and the
number of
compounding
periods per
year.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
The NPER
function
returns the
number of Syntax: NPER(rate, pmt, pv, [fv], [ty
periods for an
investment Formula: To calculate the number of
NPER
based on payment of $500 and an interest rat
periodic, -500, 10000)The result is 18.
constant
payments and
a constant
interest rate.
ODDLPRICE is
an Excel
function that
returns the Syntax: ODDLPRICE(settlement, ma
price per unit
of an odd lot, Formula: ODDLPRICE(“1/1/2020″,”1/
ODDLPRICE which is an the price per unit of an odd lot with
order for a 1/1/2021, a rate of 0.05, a yield of 0.0
quantity of 2 (semi-annual), using the US (NAS
stock that is
less than the
standard
trading unit.
PDURATION is
a financial
function in
Excel that
calculates the
number of Syntax: PDURATION(present_value,
periods
Formula: Suppose you have a loan o
required to
PDURATION future value of $0. The number of p
pay off a loan
by using the PDURATION function a
or make an
is 50, meaning it will take 50 periods
investment
given the
present value,
periodic
payment, and
future value.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
PMT PMT is an Syntax: PMT(rate, nper, pv, [fv], [ty
Excel function
used to Formula: PMT(0.06/12, 60, 1000, 0,
calculate the for a loan of $1000 at 6% interest fo
periodic
payment for a
loan. The
syntax is
PMT(rate,
nper, pv, [fv],
[type]).Rate is
the interest
rate per
period.Nper is
the total
number of
payments for
the loan.Pv is
the present
value (or
principal) of
the loan.Fv is
the future
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
value (or
balance) of
the loan after
the last
payment.Type
is the number
0 or 1 and
indicates
when
payments are
due.
The PRICE
function is Syntax: PRICE(settlement, maturity,
used to
calculate the Formula: PRICE(DATE(2020,1,1), DAT
PRICE price per $100 returns the price per $100 face valu
face value of rate of 5%, with a yield of 6%, and a
a security that is January 1, 2020, and the maturity
pays periodic
interest.
PRICEMAT is
an Excel
function that
calculates the
price of a Syntax: PRICEMAT(settlement, matu
security
PRICEMAT based on its Formula: PRICEMAT(A1, A2, A3)whe
yield. It takes rate
three
arguments:
settlement,
maturity, and
rate.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
The PV
function
calculates the
present value Syntax: PV(rate, nper, pmt, [fv], [typ
of an
investment, Formula: To calculate the present va
PV
which is the end of each year for 10 years, with a
total amount be:=PV(5%, 10, 1000)The result wou
that a series
of future
payments is
worth now.
The RATE
function is Syntax: RATE(nper, pmt, pv, [fv], [ty
used to
Formula: To calculate the interest ra
RATE calculate the
back in 5 years with a payment of $
interest rate
-400, 2000)The result would be 0.0
per period of
an annuity.
The SYD
function
returns the Syntax: SYD(cost, salvage, life, per
sum-of-years’
Formula: SYD(10000, 1000, 5, 3)Thi
SYD digits
depreciation of an asset with a cost
depreciation
useful life of 5 years for the 3rd per
of an asset for
a specified
period.
TBILLPRICE is
an Excel
function that
calculates the Syntax: TBILLPRICE(settlement, ma
price of a
TBILLPRICE Formula: TBILLPRICE(3/1/2020, 6/1/
Treasury bill
99.876.
based on the
rate, issue
date, and
maturity date.
VDB stands
for Variable
Declining
Balance. It is a Syntax: VDB(cost, salvage, life, star
financial
function that Formula: VDB(10000, 1000, 5, 1, 3, 2
VDB
is used to depreciation of an asset with a cost
calculate the years for the first 3 periods, using a
depreciation
of an asset
over a period
of time.
YIELD: The
YIELD Syntax: YIELD(settlement, maturity,
function
Formula: YIELD(DATE(2020,5,15),DA
returns the
YIELD return the yield of a security that ha
yield on a
date of May 15th, 2021, a rate of 5%
security that
frequency of 2 (semi-annual), and a
pays periodic
interest.
Compatibility Functions
Syntax: BETAD
which the prob
evaluated.alpha
The BETADIST function in Excel distribution.bet
returns the cumulative beta distribution.A: O
probability density function or distribution.B: O
BETADIST the probability that a variable, distribution.
which follows a beta distribution,
Formula: BETA
is less than or equal to a
the probability
specified value.
distribution wit
or equal to 2. T
distribution is 0
Home
Function
Blog Tutorials
Description
Free Templates Syntax and Form
Premium Templates
Syntax: BETAIN
Syntax:
BINOMDIST(nu
Syntax: CHIINV
Syntax: EXPON
The EXPONDIST function returns
the exponential distribution for a Formula: EXPO
EXPONDIST
specified value, lambda, and the cumulative
cumulative. lambda=3.
Syntax: GAMM
The GAMMAINV function returns
Formula: GAMM
GAMMAINV the inverse of the gamma
the inverse of t
cumulative distribution.
a probability of
Syntax: LOGNO
The LOGNORMDIST function in
Formula: To fin
Microsoft Excel returns the
distribution for
LOGNORMDIST cumulative log-normal
and a standard
distribution for a given set of
be: LOGNORMD
parameters.
formula is 0.788
Home
Function
Blog Tutorials
Description
Free Templates Syntax and Form
Premium Templates
MODE: The MODE function Syntax: MODE(
returns the most frequently
MODE
occurring, or repetitive, value in Formula: MODE
an array or range of data.
Syntax: NEGBI
The NEGBINOMDIST function probability_s)
returns the probability of a given
Formula: To ca
number of failures occurring
NEGBINOMDIST occurring befor
before a specified number of
experiment with
successes in a negative binomial
formula would
experiment.
result would be
Syntax: NORM
NORMDIST is a statistical cumulative)
function in Microsoft Excel which
NORMDIST returns the normal cumulative Formula: To fin
distribution for a specified mean for a mean of 1
and standard deviation. formula would
Syntax: NORM
NORMSINV is an Excel function
that calculates the inverse of the Formula: To ca
standard normal cumulative normal cumulat
NORMSINV distribution. It returns the value 0.5, the formula
of the inverse standard normal would return a
distribution for a given standard norma
probability. probability of 0
Home
Function
Blog Tutorials
Description
Free Templates Syntax and Form
Premium Templates
Syntax: PERCE
The PERCENTILE function returns
Formula: PERC
PERCENTILE the k-th percentile of values in a
returns the 50t
range.
through A10.
Syntax: PERCE
The PERCENTRANK function in
Excel returns the rank of a value Formula: PERC
PERCENTRANK
in a data set as a percentage of will return the r
the data set. percentage of t
Syntax: POISSO
number of even
The POISSON function in Excel number of even
calculates the probability of a determines the
given number of events cumulative, FAL
POISSON
occurring in a fixed period of
Formula: POISS
time, given the average rate of
calculate the pr
occurrence.
fixed period of
occurrence is 6
Home
Function
Blog Tutorials
Description
Free Templates Syntax and Form
Premium Templates
The QUARTILE function returns Syntax: QUART
the quartile of a given set of data.
QUARTILE Formula: QUAR
Quartiles divide a set of data into
the second qua
four equal parts.
Syntax: RANK(
Syntax: TDIST(
The TDIST function returns the
Formula: TDIST
TDIST probability associated with a
probability asso
Student’s t-distribution.
for x=2, degree
Syntax: VAR(nu
The VAR function in Excel is used
VAR to calculate the variance of a set Formula: VAR(2
of values. variance of the
Cube Functions
Syntax: CUBE
The rank [, [ascen
CUBERANKEDMEMBER
Formula: To r
function is a Microsoft
value in the s
CUBERANKEDMEMBER Excel function that
following form
returns the nth item in a
CUBERANKED
set, based on its rank in
descending)T
the set.
is 3.
Home
Function
Blog Tutorials Description
Free Templates Syntax and Fo
Premium Templates
Syntax: CUBE
The CUBESET function is set_expressio
used to create a set of
CUBESET Formula: CUB
members or tuples from a
“[Measures].[
cube.
Quantity Sale
Syntax: CUBE
The CUBESETCOUNT
Formula: CUB
function in Excel returns
CUBESETCOUNT Cube”)This ex
the number of sets in a
number of se
cube.
“Sales Cube”.
Syntax: CUBE
The CUBEVALUE function cube_ref, field
is a Microsoft Excel
CUBEVALUE function that returns a Formula: CUB
value from an OLAP “[Sales].[Prod
cube. “Revenue”)
Database Functions
Home Blog Tutorials Free Templates Premium Templates
Bridge the Gap Between Excel and External Databases. These advanced
tools allow you to retrieve, manipulate, and aggregate data directly from
database tables, streamlining data integration and analysis for power users.
Formula:
DCOUNT(A1:D10,”Age”,A1:C10)This
example counts the number of
cells in the Age column (column
4) of the database range A1:D10
that meet the criteria in the range
A1:C10.
The DGET
function is
used to Syntax: DGET(database, field,
extract a criteria)
single value
Formula: DGET(A1:D10, “Age”,
from a
DGET “Name”=”John”)This example will
specified
return the age of the person
database
named John from the database
record (row)
range A1:D10.
that matches
the given
criteria.
The DMIN
function Syntax: DMIN(database, field,
returns the criteria)
smallest
DMIN
number in a Formula: DMIN(A2:C10,”Price”,
set of values “Category=Clothing”)
from a
database.
DSTDEV is an
Excel
statistical
function that Syntax: DSTDEV(number1,
calculates the [number2], …)
DSTDEV standard
Formula: DSTDEV(2, 4, 6, 8,
deviation of a
10)Result: 2.82842712474619
population
based on a
sample of
numbers.
The DVARP
function in
Excel is used Syntax: DVARP(number1,
to calculate [number2],…)
the variance
DVARP
of a Formula: DVARP(2,4,6,8,10)This
population example would return 4.
based on a
sample of
data.
Engineering Functions
The BESSELJ
function is an
Excel function Syntax: BESSELJ(x,n)
that returns the
BESSELJ Formula: BESSELJ(1,2) returns
Bessel function
0.440050585744933
of the first kind,
Jn, of an order n
and argument x.
Home
Function
Blog Tutorials
Description
Free Templates
Syntax and Formula
Premium Templates
The BESSELK
function is an
Excel function Syntax: BESSELK(x,n)
that returns the
BESSELK Formula: BESSELK(2,3) returns
modified Bessel
0.06899
function K of the
specified order
and argument.
The BESSELY
function is an
Excel function
that calculates
the Bessel Syntax: BESSELY(x,n)
function of the
Formula: BESSELY(2,3)This
first kind, which
BESSELY formula will return the Bessel
is a mathematical
function of the first kind for x = 2
function used to
and n = 3.
solve a variety of
problems in
physics,
engineering, and
mathematics.
Home
Function
Blog Tutorials
Description
Free Templates
Syntax and Formula
Premium Templates
BIN2DEC is an
Excel function Syntax: BIN2DEC(number)
that converts a
BIN2DEC Formula: BIN2DEC(10101) return
binary number to
21
a decimal
number.
BITLSHIFT is an
Excel function
that shifts the Syntax: BITLSHIFT(number,
bits of a number shift_amount)
to the left or
Formula: BITLSHIFT(10, 2)This
BITLSHIFT right. It takes two
example shifts the bits of the
arguments: the
number 10 to the left by two bits
number to be
The result is 40.
shifted, and the
number of bits to
shift it.
BITRSHIFT is an
Excel function
that shifts the Syntax: BITRSHIFT(number,
bits of a number shift_amount)
to the right. It
Formula: BITRSHIFT(10,2)This
BITRSHIFT takes two
example shifts the bits of the
arguments: the
number 10 two positions to the
number to be
right, resulting in the value 2.
shifted and the
number of
positions to shift.
The COMPLEX
function is used Syntax: COMPLEX(real_num,
to convert real i_num, [suffix])
COMPLEX and imaginary
Formula: COMPLEX(5,3,”i”)This
coefficients into
return the complex number 5+3i
a complex
number.
Syntax: CONVERT(number,
The CONVERT from_unit, to_unit)
function is used
to convert a Formula: CONVERT(10, “mi”,
CONVERT number from one “km”)This example would conve
unit of 10 miles to kilometers, and the
measurement to result would be 16.09344
another. kilometers.
The DEC2OCT
function is a
mathematical
function in Syntax: DEC2OCT(number, plac
DEC2OCT Microsoft Excel
Formula: DEC2OCT(20,2)Result
that converts a
decimal number
to an octal
number.
Home
Function
Blog Tutorials
Description
Free Templates
Syntax and Formula
Premium Templates
The DELTA
function in Excel Syntax: DELTA(number1, numbe
returns 1 if two
DELTA
values are equal Formula: DELTA(A1, B1)
and 0 if they are
not equal.
The
ERFC.PRECISE
function is an
Excel statistical
function that
returns the Syntax: ERFC.PRECISE(lower_lim
complementary upper_limit)
error function
Formula: To calculate the
integrated
complementary error function
ERFC.PRECISE between
integrated between 0 and 1, the
lower_limit and
formula would be:
upper_limit. The
=ERFC.PRECISE(0,1) which retur
complementary
0.842700792949715.
error function is
a special
function used in
statistics and
probability
theory.
Home
Function
Blog Tutorials
Description
Free Templates
Syntax and Formula
Premium Templates
The GESTEP
function returns
a logical value of Syntax: GESTEP(number, step)
TRUE or FALSE
depending on Formula: GESTEP(7, 3)This will
GESTEP
whether a return TRUE as 7 is greater than
number is equal to 3.
greater than or
equal to a given
step value.
Syntax: HEX2BIN(number,
The HEX2BIN [places])
function in Excel
is used to Formula: HEX2BIN(A1, 8)In this
HEX2BIN convert a example, the HEX2BIN function w
hexadecimal convert the hexadecimal numbe
number to a cell A1 to a binary number with 8
binary number. places.
The IMABS
function is an
Excel function Syntax: IMABS(inumber)
IMABS that returns the
Formula: IMABS(5+3i)Result: 5
absolute value of
a complex
number.
The
IMARGUMENT
function returns
the argument Syntax: IMARGUMENT(inumber)
theta, which is
IMARGUMENT the angle Formula: IMARGUMENT(2+3i)
associated with returns 0.982793723247329
the complex
number in x + iy
(x and y are real
numbers).
The
IMCONJUGATE Syntax: IMCONJUGATE(inumbe
function returns
IMCONJUGATE Formula:
the complex
IMCONJUGATE(2+4i)Result: 2-4
conjugate of a
complex number.
Home
Function
Blog Tutorials
Description
Free Templates
Syntax and Formula
Premium Templates
Syntax: IMCOS(number)
The IMCOS
function returns Formula: To calculate the cosine
IMCOS the cosine of an 2 radians, use the following
angle given in Formula:=IMCOS(2)The result
radians. would be -0.41614683654714.
The IMCOSH
function returns Syntax: IMCOSH(inumber)
the hyperbolic
IMCOSH cosine of a Formula: IMCOSH(1+2i)Result:
complex number 3.76219 + 0.96623i
in x + yi or x + yj
text format.
IMCOT is an
Excel function Syntax: IMCOT(inumber)
that returns the
IMCOT
imaginary part of Formula: IMCOT(2+3i)Result: -3
a complex
number.
Home
Function
Blog Tutorials
Description
Free Templates
Syntax and Formula
Premium Templates
The IMCSC
function is used
to calculate the Syntax: IMCSC(inumber)
complex
IMCSC
conjugate of a Formula: IMCSC(2+3i)Result: 2-
complex number
in Microsoft
Excel.
Syntax: IMCSCHEDULE(principa
interest, payments, start_period,
EDULEThe end_period, type)
IMCSCHEDULE
function in Formula: To calculate the numbe
Microsoft Excel of payments for a loan of $1000
is used to with an interest rate of 5% and a
IMCSCH
calculate the payment period of 12 months, th
number of following formula can be
payments for a used:IMCSCHEDULE(1000, 0.05
loan or an 12, 1, 12, 0)The result of this
annuity. formula will be 12, meaning that
loan will have 12 payments.
Home
Function
Blog Tutorials
Description
Free Templates
Syntax and Formula
Premium Templates
The IMDIV Syntax: IMDIV(inumber1, inumbe
function returns
the result of a Formula: To divide the imaginary
IMDIV complex number numbers 5i and 2i, the formula
division in the would be:=IMDIV(5i,2i)The resul
imaginary would be 2.5i.
number format.
The IMEXP
function is an Syntax: IMEXP(filename,
Excel function [worksheet], [start_row],
that imports data [start_column], [import_type],
from a text file [import_options])
IMEXP into a worksheet.
It is a useful tool Formula: IMEXP(“C:\mydata.txt”
for importing “Sheet1”, 1, 1, “Delimited”,
data from other “FieldsPerRecord=4”)
sources into
Excel.
The IMPOWER
function is an
Excel function Syntax: IMPOWER(number, pow
that returns the
IMPOWER Formula: IMPOWER(2,3)This wil
given number
return 8, as 2 to the power of 3 i
raised to the
power of another
number.
Home
Function
Blog Tutorials
Description
Free Templates
Syntax and Formula
Premium Templates
The IMPRODUCT Syntax:
function returns IMPRODUCT(inumber1,inumber2
the product of
IMPRODUCT Formula:
two or more
IMPRODUCT(2+3i,4+5i)This wou
complex
return 22+22i.
numbers.
IMREAL is an
Excel function Syntax: IMREAL(number)
that returns
Formula: IMREAL(3.14)This
IMREAL TRUE if a number
example would return TRUE as 3
is a real number
is a real number.
and FALSE if it is
not.
Syntax: IMSINV(array)
VThe IMSINV
Formula:
function returns
IMSINV({1,2,3;4,5,6;7,8,9}) return
the inverse of the
IMSIN the inverse of the matrix
matrix which is
{1,2,3;4,5,6;7,8,9} as {-0.222, 0.1
provided as an
0.333; 0.167, -0.056, -0.139; 0.05
argument.
0.167, -0.056}.
Syntax: OCT2BIN(number,
OCT2BIN is an [places])number: The octal num
Excel function that you want to convert to a bin
OCT2BIN that converts an number.places: (optional) The
octal number to a number of characters to use.
binary number.
Formula: OCT2BIN(11)Result: 101
Web Functions
Bring the Power of the Web Directly into Your Spreadsheet with Web
Functions! These tools allow you to retrieve data from web pages in real-
time, keeping your spreadsheets dynamic and up-to-date with the latest
information. (Requires internet connection and may be affected by website
availability)
The
FILTERXML
function in
Excel is used Syntax: FILTERXML(xml, xpath)
to extract
FILTERXML Formula: FILTERXML(“Dr. Seuss”,”/boo
data from an
result of this formula would be “The C
XML string,
based on an
XPath
expression.
Home
Function
Blog Tutorials
Description
Syntax and Formula
Free Templates Premium Templates
The
WEBSERVICE
function is Syntax: WEBSERVICE(url)
used to
WEBSERVICE retrieve data Formula:
from a web WEBSERVICE(“https://www.example.c
service in an
Excel
worksheet.
Remember, this is just the beginning! As you delve deeper into Excel, you’ll
discover a treasure trove of even more specialized functions catering to
specific needs. Here are some tips to solidify your Excel mastery: