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 Tips Excel Operators
 

Excel Operators

Madhuri Thakur
Article byMadhuri Thakur

Updated August 21, 2023

Operators in Excel

 

 

Excel Operators (Table of Contents)

  • Introduction to Operators in Excel
  • Types of Operators in Excel
    • Arithmetic Operators
    • Logical/Comparison Operators
    • Text Concatenation Operator
    • Reference Operators

Introduction to Operators in Excel

Excel has a rich variety of operators to perform calculative actions on a given set of data. Excel operators specify the calculation to be performed on a given set of values. Obviously not restricted to numeric values only, we can use operators over different data types other than numeric (for example, Text/Character data type). In this article, we will see what the different types of Excel operators are and how those can be used to make your day to day life easy.

Types of Operators in Excel

There are 4 crude types of operators in Excel, mentioned below:

  1. Arithmetic Operators
  2. Logical/Comparison Operators
  3. Text Concatenation Operator
  4. Reference Operators

Each type consists of a set of specifically meant operators for that particular group (except the Text Concatenation Operator, which has only one operator). We’ll see each of them according to the order mentioned above.

Let’s understand How Different Types of Operators work in Excel with some examples.

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

Arithmetic Operators

As the word suggests, Arithmetic Operators are used for arithmetic operations like addition, subtraction, multiplication, division, etc. As can be guessed, this set of operators can be used for numeric calculations.

Following are the arithmetic operators available in Excel.

Operator

Excel Formula

Description

+ (Addition Operator) = A1 + B1 It makes the addition of two or more two numeric values and gives a numeric value as a return.
– (Subtraction Operator) = A1 – B1 Subtracts two or more than two numeric values and gives a numeric value in return
* (Multiplication Operator) = A1 * B1 Multiplies one numeric value with the other and gives a numeric value in return
/ (Division Operator) = A1 / B2 Divides the numerator(should be numeric) value with the denominator(should be numeric) value and gives a numeric value in return.
% (Percentage Operator) = A1 % Converts the number present in a cell into a percentage (i.e., divides the number by 100).
^ (Exponential Operator) = A1 ^ B1 Raises the power of the first numeric value by the second numeric value.

See below is the example of arithmetic operators in Excel:

Operators in Excel example 1-1

Precedence of Arithmetic Operators:

Arithmetic operators follow the order precedence. Exponential and Percentage operators have the highest precedence, and then Multiplication and Division, followed by Addition and Subtraction. This means percentages and exponentials will be evaluated first whenever you have an expression with more than one arithmetic operator. After that, Multiplication and division will be given evaluation preference; finally, addition and subtraction will be evaluated.

See the table below, which explains the precedence of Arithmetic Operators:

Operators in Excel example 1-2

Though these operators have precedence over each other, brackets can precede some specific operators and be evaluated first.

See the below examples for the precedence of arithmetic operators:

Operators in Excel example 1-3

Logical/Comparison Operators

Logical or Comparison Operators are used in Excel to compare the two values (numeric or text) logically. These operators compare two values (provided through cells or separately) and return a logical output, i.e., TRUE or FALSE.

See the below table, which explains logical operators.

Operator

Description 

Excel Formula 

= (Equals To) It compares two values and returns TRUE if both values are equal; else returns FALSE. =A1 = B1

 

<> (Not Equals To) It compares two values and returns TRUE if both values are not equal or return FALSE. =A1 <> B1
> (Greater Than)

 

It returns TRUE if the value in cell A1 (First Value) is greater than in cell B1 (Second Value). Else returns FALSE. =A1 > B1
< (Less Than)

 

It returns TRUE if the value in cell A1 (First Value) is lesser than in cell B1 (Second Value); else returns FALSE. =A1 < B1
>= (Greater than or equals to)

 

It returns TRUE if the value in cell A1 (First Value) is greater than or equal to the value in cell B1 (Second Value); else returns FALSE. =A1 >= B1
<= (Less than or equals to) It returns TRUE if the value in cell A1 (First Value) is less than or equal to that in cell B1 (Second Value); else returns FALSE. =A1 <= B1

Please see below an example of the comparison operators:

Operators in Excel example 2-1

Text Concatenation Operator

Excel has one operator, which helps to join in two or more text strings and produces a single text line. We can use the ampersand (&) operator to join two or more strings and get a single text line.

See the following example:

Operators in Excel example 2-2

As you can see, the ampersand operator added two strings.

Reference Operators

Excel reference operators refer to the ranges from your Excel spreadsheet in a formula. The following are the reference operators:

Operator Description  Formula 
: (Colon) It’s a range operator. Which gives a range of cells within the start point and end point reference cells = SUM(A2:B6) #Provides all cells as a range starting from A2 to cell B6.
, (Comma) Union Operator. This operator combines (as the word union suggests) two or more two references into a single reference. = SUM(A2:A6, A2:B3)
   (space) Intersection Operator. This operator only refers to those cells common in two-range arguments.

= SUM(A2:A6 A2:B3)

Range Operator:

Let’s take an example. Suppose below is the data you have:

Range Example 1-1

In cell C2, we can see the range operator. It takes a range of all cells starting from A2 to B6 under the SUM function and returns the sum of all 10 values. See the output below.

Range Example 1-2

Union Operator:

Cell D2 of the Excel spreadsheet shows the functioning of the union operator. It takes two ranges as a reference, from column A ( A2: A6) and the other as (A2: B3) under the SUM function. Finally, it produces the sum of these two references and gives a value of 56.

Please see the below image for your reference:

Union Example 1

Intersection Operator:

Cell E2 of the Excel spreadsheet shows the functioning of the intersection operator. It takes two ranges as a reference, from column A ( A2: A6) and the other as (A2: B3) under the SUM function. Finally, it produces a sum of values in the cells, common in both ranges (i.e., cell A2: A3), which is 7.

See the image below for your reference.

Intersection Example 1

This is it about the Excel Operators.

Things to Remember About Operators in Excel

  • Ensure that the precedence is followed while using more than one arithmetic operator in a single expression or formula. If you want some fewer precede operators to be operated over those with high precedence, evaluate them under brackets.
  • There is precedence within the operators with the same precedence order itself. Like % has precedence over the exponential operator. Multiplication has precedence over the division operator. Addition has precedence over subtraction.
  • The comparison operators can be used to compare text values as well.

Recommended Articles

This has been a guide to Operators in Excel. Here we discussed Operators in Excel and Types of Operators in Excel, along with practical examples and a downloadable Excel template. You can also go through our other suggested articles–

  1. SUMPRODUCT in Excel
  2. SUM Function in Excel
  3. AND Function in Excel
  4. ROW Function in Excel

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 Operators Excel Template

EDUCBA Login

Forgot Password?

EDUCBA

Download Operators Excel Template

EDUCBA

डाउनलोड Operators Excel Template

🚀 Limited Time Offer! - 🎁 ENROLL NOW