Excel Formulas and Functions
Excel Formulas and Functions
There are plenty of Excel formulas and functions depending on what kind of operation
you want to perform on the dataset. We will look into the formulas and functions on
mathematical operations, character-text functions, data and time, sumif-countif, and few
lookup functions.
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.
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:
Sum "=SUM(C2:C4)"
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:
It automatically calculates the average, and you can store the result in your desired
location.
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.
COUNT =COUNT(C1:C4)
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.
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.
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
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
MODULUS =MOD(A2,3)
The result is stored in B2. We can also directly type “=MOD(10,3)” as it will give the
same answer.