EDUCBA Logo

EDUCBA

MENUMENU
  • Explore
    • EDUCBA Pro
    • PRO Bundles
    • Featured Skills
    • New & Trending
    • Fresh Entries
    • Finance
    • Data Science
    • Programming and Dev
    • Excel
    • Marketing
    • HR
    • PDP
    • VFX and Design
    • Project Management
    • Exam Prep
    • All Courses
  • Blog
  • Enterprise
  • Free Courses
  • Log in
  • Sign Up
Home Excel Excel Resources Excel Formula and Functions Excel Calculations
 

Excel Calculations

Arun Gupta
Article byArun Gupta
Madhuri Thakur
Reviewed byMadhuri Thakur

excel calculation 1-1

Excel Calculations (Table of Contents)

 

 

  • Introduction to Excel Calculations
  • How to Calculate Basic Functions in Excel?

Introduction to Excel Calculations

The main reason for introducing Excel was to handle day-to-day work calculations, although it is now used for various functions. Like adding, subtracting, multiplication, etc., numbers are used for different purposes for different domains. Though there are other tools for basic calculations, but standoff of using Excel is its flexibility and the perception for the viewer it gives; for instance, we can add two numbers in the calculator as well, but the numbers mentioned in the Excel sheet can be entered in two cells and used for other functions as well subtraction, division, etc.

Watch our Demo Courses and Videos

Valuation, Hadoop, Excel, Mobile Apps, Web Development & many more.

Let’s have a quick look at some of the calculations to get a better understanding.

How to Calculate Basic Functions in Excel?

Let us start with the basic calculations and gradually will move further.

You can download this Excel Calculations Template here – Excel Calculations Template

basic calculation 1

List of calculations that one already knows.

basic calculation 2

After using the above formula, the output is shown below.

basic calculation 3

Similarly, a formula is used in cells C3, C4, and C5.

basic calculation 4

#1 – MOD

Use to get the remainder of two numbers when divided.

Excel Calculations -mod function 1

Apply the MOD formula in cell C2.

Excel Calculations -mod function 2

After using the MOD, the Formula output is shown below.

Excel Calculations -mod function 3

#2 – Average

Use to take the median or average between the range of numbers.

Excel Calculations -average function 1

Apply the Average formula in cell C2.

Excel Calculations -average function 2

After using the AVERAGE Formula output shown below.

Excel Calculations -average function 3

#3 – Count

Use to count the number of cells in data.

Excel Calculations -count function 1

Apply the COUNT formula in Cell C2.

Excel Calculations -count function 2

After using the COUNT Formula output shown below.

Excel Calculations -count function 3

#4 – Abs

Use for removing the sign from the number

Excel Calculations - ABS function 1

Apply the ABS formula in Cell C2.

Excel Calculations - ABS function 1

After using the ABS Formula output shown below.

Excel Calculations - ABS function 2

Note: Abs function can only be used for one cell at a time.

#5 – Concatenate

Use for merging text from two or more cells.

Excel Calculations - concatenate function 1

Apply the Concatenate formula in Cell C2.

Excel Calculations - concatenate function 2

After using the CONCATENATE Formula output as shown below.

concatenate function 2 (Excel Calculations)

#6 – Text Join

Use for merging text from two or more cells if one has a range; We recommend using this formula, as it may not be available in previous versions.

text join function 3(Excel Calculations)

Apply the Concatenate formula in Cell C2.

text join 1(Excel Calculations)

After using the CONCATENATE Formula, the output is shown below.

text join function 2(Excel Calculations)

#7 – IFS

Use instead of IF condition when there are too many conditions to be given, i.e., nested if-else.

IFS function 3 (Excel Calculations)

Apply the IFS formula in Cell C2.

IFS function 1(Excel Calculations)

After using the IFS, the Formula output is shown below.

IFS function 2

#8 – VLOOKUP

People use the VLOOKUP function in various situations, such as comparing data with one column and validating whether the data is present in the current column. Retrieving the data of the dependent column by comparing the data of the current column with the column on which the dependent column depends; for this, below is an example of one’s preference.

Explanation: The Excel formula compares the “Third column Empid” data with Empid. Based on the Empire, the formula retrieves the corresponding name in the “Result” column.
For Example, 10203 from the “Third column Empid” is compared with the “Empid” column, i.e.with 10203, and the corresponding name Sanket is retrieved in the “Result” column.

vlookup function 4

Apply the VLOOKUP formula in cell C2.

vlookup function 1

After using the VLOOKUP Formula, the output is shown below.

vlookup function 2

After using the VLOOKUP Formula, the output is shown below.

vlookup function 3

Note: Lookup can be used for different applications, like checking whether the third column is present in the Empid column.

#9 – MID

Use for splitting the text or, in easy terms, can be used as a substring.

mid function 9

Apply the MID formula in Cell C2.

mid function 1

After using the MID Formula output shown below.

mid function 2

#10 – LEFT

Use the LEFT function when you want to extract characters starting at the left side of the text.

left function 3

Apply the LEFT formula in cell C2.

left function 1

After using the LEFT, the Formula output is shown below.

left function 2

#11 – RIGHT

Use the RIGHT function when you want to extract characters starting at the right side of the text.

right function 3

Apply the RIGHT formula in Cell C2.

right function 1

After using the RIGHT Formula, the output is shown below.

right function 2

Explanation: In the above example, from the text value JamesPune, we only need James, so we use the MID function to split JamesPune to James, as shown in the formulae column. The same goes with a LEFT function, which one can use to split the string from the left side, and the RIGHT function to split the string from the right side, as shown in the formulae.

Note: MID, LEFT, and RIGHT functions can also be combined, such as with the Find function, etc.

#12 – FIND

Use for searching the character’s position in the string.

find function 3

Apply the FIND formula in cell C2.

find function 1

After using the FIND, the Formula output is shown below.

find function 2

#13 – LEN

Use for checking the length of the string.

len function 3

Apply the LEN formula in cell C2.

len function 1

After using the LEN, the Formula output is shown below.

len function 2

Explanation: The FIND function searches the character’s position in the string like the letter “t” position in the above text is at 6 positions. LEN in the above example gives the length of the string

#14 – PMT

It is used for the calculation of monthly installments one has to pay.

PMT function 3

Apply the PMT formula in cell C2.

PMT function 1

After using the PMT, the Formula output is shown below.

PMT function 2

#15 – Nested Formula

Used when our conditions have two to three functions to be used. Suppose we have a text Sau; Mumbai;27 and we want to separate as the Name, then we would go following formula as =MID(A2,1, FIND(“;”, A2,1)-1).

nested function 1

Apply the MID formula in cell C2.

mid function 3

After using the above Formula, the output is shown below.

mid function 4

mid function 5

After using the above Formula, the output is shown below.

mid function 6

mid function 7

After using the above Formula, the output is shown below.

mid function 8

Explanation:

So here for Name, we only want “Sau”, so here we use the combination of MID function, which will help us to split the string, and the FIND function helps to locate the position of; in the string, i.e.as per MID function it needs:

MID(Text_value,start_position, end_position)

Text_value: Sau;Mumbai;27

Start_position: 1

End_position: Position of the first semicolon by FIND function

FIND (find_text, within_text, [start_num])

Find_text = ;

Within_text= Sau;Mumbai;27

Start_num=1

So here, the FIND function gives the position as 4; hence, the MID function looks like this MID(A98,1,4-1). MID(A98,1,3), which would result in “Sau” as shown below Fig:

Pros

  • The Excel calculations provide a robust function.
  • Calculations can be dynamic.
  • Nested Functions are possible.
  • More functions add up, helping users ease and avoid more Nested Formulae Example: PMT formula.

Cons

  • Nested Formulae become complex to apply.
  • Maintaining and using formulas can become challenging if a user is not proficient with Excel.

Things to Remember About Excel Calculations

  • Save your worksheet after every application of Excel calculations
  • The functions of Excel are increasing daily, so staying updated is important, and avoiding nested formulas is recommended.
  • Whenever one applies the function in Excel, one can click on the Tab button to autocomplete the function name, i.e., if one wants to enter a Sum function in a cell, then choose the cell and write “ = S” and press Tab, the function would get autocompleted and, one can also see the value which the function ask for

Recommended Articles

This is a guide to Excel Calculations. Here we discuss How to Calculate Basic Functions in Excel, practical examples, and a downloadable Excel template. You can also go through our other suggested articles –

  1. Count Names in Excel
  2. NPV Formula in Excel
  3. Mixed Reference in Excel
  4. VBA Right | Excel Template

Primary Sidebar

Footer

Follow us!
  • EDUCBA FacebookEDUCBA TwitterEDUCBA LinkedINEDUCBA Instagram
  • EDUCBA YoutubeEDUCBA CourseraEDUCBA Udemy
APPS
EDUCBA Android AppEDUCBA iOS App
Blog
  • Blog
  • Free Tutorials
  • About us
  • Contact us
  • Log in
Courses
  • Enterprise Solutions
  • Free Courses
  • Explore Programs
  • All Courses
  • All in One Bundles
  • Sign up
Email
  • [email protected]

ISO 10004:2018 & ISO 9001:2015 Certified

© 2025 - EDUCBA. ALL RIGHTS RESERVED. THE CERTIFICATION NAMES ARE THE TRADEMARKS OF THEIR RESPECTIVE OWNERS.

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
Loading . . .
Quiz
Question:

Answer:

Quiz Result
Total QuestionsCorrect AnswersWrong AnswersPercentage

Explore 1000+ varieties of Mock tests View more

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA
Free Excel Course

Excel functions, formula, charts, formatting creating excel dashboard & others

By continuing above step, you agree to our Terms of Use and Privacy Policy.
*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you

EDUCBA

Download Excel Calculations Template

EDUCBA Login

Forgot Password?

EDUCBA

Download Excel Calculations Template

EDUCBA

डाउनलोड Excel Calculations Template

🚀 Limited Time Offer! - ENROLL NOW