Excel Formulas
Excel Formulas
el
=IF(A1>10, "High", "Low")
c
3. COUNT: Counts the number of cells in a range
x
i E
that contains numbers. Example:
=COUNT(A1:A10)
s
H
NG
SI
AJ
e
4. AVERAGE: Calculates the average of a range of
V R
YU
D
cells. Example: =AVERAGE(A1:A10)
5. SUMIF: Adds up the cells that meet a specific
condition. Example: =SUMIF(A1:A10, ">50")
6. INDEX: Returns the value of a cell in a specified
row and column. Example: =INDEX(A1:C10, 5, 2)
7. MATCH: Finds the position of a value in a range.
Example: =MATCH(A1, B1:B10, 0)
8. CONCATENATE: Joins two or more text strings
together. Example: =CONCATENATE(A1, " ", B1)
1. COUNTIF: Counts the number of cells that meet a
specific condition. Example: =COUNTIF(A1:A10,
">50")
2. IFERROR: Checks if a formula produces an error
and returns a specified value if true. Example:
=IFERROR(A1/B1, "Error")
3. LEFT: Extracts a specified number of characters
from the beginning of a text string. Example:
l
=LEFT(A1, 3)
e
xc
4. RIGHT: Extracts a specified number of characters
from the end of a text string. Example:
i E
=RIGHT(A1, 2)
s
H
NG
SI
5. MID: Extracts a specified number of characters
AJ
e V R
YU
D
from a text string, starting at a specified position.
Example: =MID(A1, 2, 4)
6. LEN: Returns the number of characters in a text
string. Example: =LEN(A1)
7. DATE: Returns the serial number of a specific
date. Example: =DATE(2022, 3, 15)
8. NOW: Returns the current date and time. Example:
=NOW()
1. INDIRECT: Converts a text string into a valid cell
reference. Example: =INDIRECT("A1")
2. TRIM: Removes leading and trailing spaces from a
text string. Example: =TRIM(A1)
3. SUBSTITUTE: Replaces specific text in a text
string with new text. Example: =SUBSTITUTE(A1,
"apple", "orange")
4. RANK: Returns the rank of a number in a list of
l
numbers. Example: =RANK(A1, A1:A10)
e
xc
5. MAX: Finds the maximum value in a range of cells.
Example: =MAX(A1:A10)
i E
6. MIN: Finds the minimum value in a range of cells.
s
H
NG
SI
Example: =MIN(A1:A10) AJ
De YU
VR
l
3. CONCAT: Joins two or more text strings together.
e
xc
Example: =CONCAT(A1, " ", B1, " ", C1)
4. TODAY: Returns the current date. Example:
i E
=TODAY()
s
H
NG
SI
5. OR: Checks multiple conditions and returns true if
AJ
e V R
YU
D
any of them are true. Example: =OR(A1>10,
B1="Yes")
6. AND: Checks multiple conditions and returns true
if all of them are true. Example: =AND(A1>10,
B1="Yes")
7. DATEVALUE: Converts a date in the text format to
a serial number. Example: =DATEVALUE("2022-
03-15")
1. ROUNDUP: Rounds a number up to a specified
number of decimal places. Example:
=ROUNDUP(A1, 0)
2. ROUNDDOWN: Rounds a number down to a
specified number of decimal places. Example:
=ROUNDDOWN(A1, 0)
3. ISNUMBER: Checks if a value is a number and
returns true or false. Example: =ISNUMBER(A1)
el
4. IFBLANK: Checks if a cell is blank and returns a
specified value if true. Example: =IFBLANK(A1,
"Empty")
xc
E
5. PROPER: Converts the first letter of each word in a
i
s
text string to uppercase.AExample: =PROPER(A1)
H G
IN
J S
e YU
VR
6. MEDIAN: Calculates the median of a range of
D
numbers. Example: =MEDIAN(A1:A10)
7. MODE: Returns the most frequently occurring
value in a range of numbers. Example:
=MODE(A1:A10)
8. VLOOKUP: Searches for a value in the leftmost
column of a table and returns a corresponding
value from a specified column. Example:
=VLOOKUP(A2, B2:C10, 2, FALSE)
1. DAY: Extracts the day value from a date. Example:
=DAY(A1)
2. MONTH: Extracts the month value from a date.
Example: =MONTH(A1)
3. YEAR: Extracts the year value from a date.
Example: =YEAR(A1)
4. TRANSPOSE: Transposes the rows and columns
of a range. Example: Enter the formula, then
l
select a range and press Ctrl + Shift + Enter.
e
xc
5. PMT: Calculates the payment amount for a loan
based on constant payments and a constant
i E
interest rate. Example: =PMT(0.05/12, 60, 10000)
s
H
NG
SI
6. PRODUCT: Multiplies the values in a range of
AJ
e V R
YU
cells. Example: =PRODUCT(A1:A10)
D
7. STDEV: Estimates the standard deviation based
on a sample from a population. Example:
=STDEV(A1:A10)
8. LEFTB: Extracts a specified number of bytes from
the beginning of a text string. Example:
=LEFTB(A1, 3)
9. FIND: Finds the position of a specific character or
text within a text string. Example: =FIND("a", A1)