Top 25 Formulas in Excel You Should Know
Top 25 Formulas in Excel You Should Know
simplilearn.com/tutorials/excel-tutorial/excel-formulas
Microsoft Excel is the go-to tool for working with data. There are probably a handful of
people who haven’t used Excel, given its immense popularity. Excel is a widely used
software application in industries today, built to generate reports and business insights.
Excel supports several in-built applications that make it easier to use.
One such feature that allows Excel to stand out is - Excel formulas. Here, we will look into
the top 25 Excel formulas that one must know while working on Excel. The topics that we
will be covering in this article are as follows:
Our Data Analyst Master's Program will help you learn analytics tools and
techniques to become a Data Analyst expert! It's the pefect course for you to
jumpstart your career. Enroll now!
There is another term that is very familiar to Excel formulas, and that is "function". The
two words, "formulas" and "functions" are sometimes interchangeable. They are closely
related, but yet different. A formula begins with an equal sign. Meanwhile, functions are
1/19
used to perform complex calculations that cannot be done manually. Functions in excel
have names that reflect their intended use.
The example below shows how we have used the multiplication formula manually with the
‘*’ operator.
This example below shows how we have used the function - ‘PRODUCT’ to perform
multiplication. As you can see, we didn’t use the mathematical operator here.
Excel formulas and functions help you perform your tasks efficiently, and it's time-saving.
Let's proceed and learn the different types of functions available in Excel and use relevant
formulas as and when required.
Let’s now look at the top 25 Excel formulas you must know. In this article, we have
categorized 25 Excel formulas based on their operations. Let’s start with the first Excel
formula on our list.
2/19
1. SUM
The SUM() function, as the name suggests, gives the total of the selected range of cell
values. It performs the mathematical operation which is addition. Here’s an example of it
below:
As you can see above, to find the total amount of sales for every unit, we had to simply
type in the function “=SUM(C2:C4)”. This automatically adds up 300, 385, and 480. The
result is stored in C5.
2. AVERAGE
The AVERAGE() function focuses on calculating the average of the selected range of cell
values. As seen from the below example, to find the avg of the total sales, you have to
simply type in “AVERAGE(C2, C3, C4)”.
It automatically calculates the average, and you can store the result in your desired
location.
3/19
3. COUNT
The function COUNT() counts the total number of cells in a range that contains a number.
It does not include the cell, which is blank, and the ones that hold data in any other format
apart from numeric.
As seen above, here, we are counting from C1 to C4, ideally four cells. But since the
COUNT function takes only the cells with numerical values into consideration, the answer
is 3 as the cell containing “Total Sales” is omitted here.
If you are required to count all the cells with numerical values, text, and any other data
format, you must use the function ‘COUNTA()’. However, COUNTA() does not count any
blank cells.
To count the number of blank cells present in a range of cells, COUNTBLANK() is used.
4. SUBTOTAL
Moving ahead, let’s now understand how the subtotal function works. The SUBTOTAL()
function returns the subtotal in a database. Depending on what you want, you can select
either average, count, sum, min, max, min, and others. Let’s have a look at two such
examples.
4/19
Fig: Subtotal function in Excel
In the example above, we have performed the subtotal calculation on cells ranging from
A2 to A4. As you can see, the function used is “=SUBTOTAL(1, A2: A4), in the subtotal
list “1” refers to average. Hence, the above function will give the average of A2: A4 and
the answer to it is 11, which is stored in C5.
Similarly, “=SUBTOTAL(4, A2: A4)” selects the cell with the maximum value from A2 to
A4, which is 12. Incorporating “4” in the function provides the maximum result.
5. MODULUS
The MOD() function works on returning the remainder when a particular number is
divided by a divisor. Let’s now have a look at the examples below for better
understanding.
In the first example, we have divided 10 by 3. The remainder is calculated using the
function “=MOD(A2,3)”. The result is stored in B2. We can also directly type
“=MOD(10,3)” as it will give the same answer.
5/19
Fig: Modulus function in Excel
6. POWER
The function “Power()” returns the result of a number raised to a certain power. Let’s have
a look at the examples shown below:
As you can see above, to find the power of 10 stored in A2 raised to 3, we have to type “=
POWER (A2,3)”. This is how power function works in Excel.
7. CEILING
Next, we have the ceiling function. The CEILING() function rounds a number up to its
nearest multiple of significance.
6/19
Fig: Ceiling function in Excel
8. FLOOR
Contrary to the Ceiling function, the floor function rounds a number down to the nearest
multiple of significance.
9. CONCATENATE
This function merges or joins several text strings into one text string. Given below are the
different ways to perform this function.
In this example, we have operated with the syntax =CONCATENATE(A25, " ", B25)
7/19
Fig: Concatenate function in Excel
Those were the two ways to implement the concatenation operation in Excel.
10. LEN
The function LEN() returns the total number of characters in a string. So, it will count the
overall characters, including spaces and special characters. Given below is an example
of the Len function.
8/19
Fig: Len function in Excel
Let’s now move onto the next Excel function on our list of this article.
11. REPLACE
As the name suggests, the REPLACE() function works on replacing the part of a text
string with a different text string.
9/19
12. SUBSTITUTE
The SUBSTITUTE() function replaces the existing text with a new text in a text string.
Here, [instance_num] refers to the index position of the present texts more than once.
Here, we are substituting “I like” with “He likes” by typing “=SUBSTITUTE(A20, "I
like","He likes")”.
Next, we are substituting the second 2010 that occurs in the original text in cell A21
with 2016 by typing “=SUBSTITUTE(A21,2010, 2016,2)”.
10/19
Fig: Substitute function in Excel
Now, we are replacing both the 2010s in the original text with 2016 by typing
“=SUBSTITUTE(A22,2010,2016)”.
That was all about the substitute function, let’s now move on to our next function.
The LEFT() function gives the number of characters from the start of a text string.
Meanwhile, the MID() function returns the characters from the middle of a text string,
given a starting position and length. Finally, the right() function returns the number of
characters from the end of a text string.
In the example below, we use the function left to obtain the leftmost word on the
sentence in cell A5.
11/19
Fig: Left function in Excel
12/19
The UPPER() function converts any text string to uppercase. In contrast, the LOWER()
function converts any text string to lowercase. The PROPER() function converts any text
string to proper case, i.e., the first letter in each word will be in uppercase, and all the
other will be in lowercase.
Now, we have converted the text in A6 to a full lowercase one, as seen in A7.
Finally, we have converted the improper text in A6 to a clean and proper format in
A7.
Now, let us hop on to exploring some date and time functions in Excel.
15. NOW()
13/19
The NOW() function in Excel gives the current system date and time.
The result of the NOW() function will change based on your system date and time.
16. TODAY()
The function DAY() is used to return the day of the month. It will be a number between 1
to 31. 1 is the first day of the month, 31 is the last day of the month.
The MONTH() function returns the month, a number from 1 to 12, where 1 is January and
12 is December.
The YEAR() function, as the name suggests, returns the year from a date value.
17. TIME()
14/19
The TIME() function converts hours, minutes, seconds given as numbers to an Excel
serial number, formatted with a time format.
The HOUR() function generates the hour from a time value as a number from 0 to 23.
Here, 0 means 12 AM and 23 is 11 PM.
The function MINUTE(), returns the minute from a time value as a number from 0 to 59.
The SECOND() function returns the second from a time value as a number from 0 to 59.
19. DATEDIF
The DATEDIF() function provides the difference between two dates in terms of years,
months, or days.
15/19
Fig: Datedif function in Excel
Now, let’s skin through a few critical advanced functions in Excel that are popularly used
to analyze data and create reports.
20. VLOOKUP
Next up in this article is the VLOOKUP() function. This stands for the vertical lookup that
is responsible for looking for a particular value in the leftmost column of a table. It then
returns a value in the same row from a column you specify.
lookup_value - This is the value that you have to look for in the first column of a table.
table - This indicates the table from which the value is retrieved.
We will use the below table to learn how the VLOOKUP function works.
If you wanted to find the department to which Stuart belongs, you could use the
VLOOKUP function as shown below:
16/19
Fig: Vlookup function in Excel
Here, A11 cell has the lookup value, A2: E7 is the table array, 3 is the column index
number with information about departments, and 0 is the range lookup.
If you hit enter, it will return “Marketing”, indicating that Stuart is from the marketing
department.
Accelerate your career with our Post Graduate Program in Business Analytics in
partnership with Carlson School of Management. Enroll and start learning!
17/19
21. HLOOKUP
Given the below table, let’s see how you can find the city of Jenson using HLOOKUP.
Here, H23 has the lookup value, i.e., Jenson, G1:M5 is the table array, 4 is the row index
number, 0 is for an approximate match.
22. IF
The IF() function checks a given condition and returns a particular value if it is TRUE. It
will return another value if the condition is FALSE.
In the below example, we want to check if the value in cell A2 is greater than 5. If it’s
greater than 5, the function will return “Yes 4 is greater”, else it will return “No”.
18/19
Fig: If function in Excel
‘IFERROR’ is another function that is popularly used. This function returns a value if an
expression evaluates to an error, or else it will return the value of the expression.
Suppose you want to divide 10 by 0. This is an invalid expression, as you can’t divide a
number by zero. It will result in an error.
23. INDEX-MATCH
The INDEX-MATCH function is used to return a value in a column to the left. With
VLOOKUP, you're stuck returning an appraisal from a column to the right. Another reason
to use index-match instead of VLOOKUP is that VLOOKUP needs more processing
power from Excel. This is because it needs to evaluate the entire table array which you've
selected. With INDEX-MATCH, Excel only has to consider the lookup column and the
return column.
Using the below table, let’s see how you can find the city where Jenson resides.
19/19