Formulas and functions in excel are the key tools that enable you to manipulate data, perform calculations, and automate tasks. The knowledge of these tools can enhance your productivity and accuracy while working in Excel. In this lesson, you will gain the essential knowledge of formulas and functions in Excel.
Formulas in Excel and the basic structure of it :
The basic structure of an Excel formula consists of three main elements:
Equal Sign (=):
References or Values:
Operators:
“+” for addition
“-” for subtraction
“*” for multiplication
“/” for division
You can combine references or values with operators to create more complex formulas.
For instance, =(B1*C1)/100 that implies the multiplication of the values in cells B1 and C1 then divide by 100.
Excel Functions:
In Excel, there’s another important thing that is named as a function. The words “formulas” and “functions” are similar, but they have some differences. A function is a ready-to-use formula that’s already built-in. Functions are like special tools that do specific math tasks in a certain way, using values known as arguments or parameters.
That means, a function in Excel refers to a predefined formula that is already built into the software. Functions are designed to perform specific calculations in a predefined order based on specified values, often referred to as arguments or parameters.
So, Understanding the basic structure of Functions in Excel:
You can find all available Excel functions in the Function Library on the Formulas tab:

Figure: Formula Tab
Let’s say you have numbers in cells B2,C2 & D2, and you want to add them together. Instead of writing each number in a formula, you can use the SUM function or add the values of three cells . It goes like this: =SUM(B2:D2) Or =B2+C2+D2 This adds up all the numbers in those cells automatically.

Figure: SUM functions to add values
Examples of Excel functions include:
SUM: Adds values within a selected cell range.
AVERAGE: Computes the average of values within a given cell range.
IF: Executes a logical test, returning one value for true conditions and another for false.
VLOOKUP: Searches for a value in the first column of a table and retrieves a corresponding value from another column.
MIN and MAX: MIN() identifies the minimum value within a range, while MAX() finds the maximum.
COUNT: Tallies the total number of selected cells, excluding blanks and non-numeric formats.
POWER: Raises a number to a specified power.
CEILING and FLOOR: CEILING() rounds a number up to the nearest specified multiple.
CONCAT: Joins multiple strings or cells into a single string.
TRIM: Eliminates extra spaces from the start, middle, and end of a string, useful for identifying unique values.
REPLACE and SUBSTITUTE: REPLACE swaps part of a string with another, while SUBSTITUTE replaces specific instances within a string.
LEFT, RIGHT, and MID: Extracts characters from the start, end, or middle of a string respectively.
UPPER, LOWER, and PROPER: Manipulates text case (upper, lower, or proper case).
NOW and TODAY: NOW returns the current date and time, while TODAY provides the current date only. Useful for extracting specific components like day, month, year, hours, and minutes from date-time data cells.
DATEDIF: Calculates differences between two dates, offering the count of days, months, weeks, or years as needed.
IF: Functions similar to an if-else statement in programming, returning specific values based on defined logic.
Some basic practical implementations of excel formulas and functions:
For Practically we can do some basic mathematics formulas and functions using addition, subtraction, multiplication, and dividation.
In Excel, to add the two numbers from two cells:

Figure: Add two numbers
In the above figure, the process includes:
Calculating the Average of Numbers
Similarly previous example:

Figure: AVERAGE values
Checking if a Cell Value is Equal to a Specific Text

Figure: Cell Value is Equal to a Specific Text
Concatenating Text with Numbers

Figure: Concatenating Text with Numbers
By the end of this lesson, you will have a solid foundation in creating formulas, understanding basic arithmetic operations, and utilizing common functions. These skills are fundamental to unlocking the full potential of Excel for data analysis, reporting, decision-making and many more.