Learn Python, Microsoft 365 and Google Workspace
Connect with me: Youtube | WhatsApp Channel | Web |
Youtube Playlist to learn excel
= A1 + A2
Excel offers three main types of operators –
To perform basic mathematical operations such as addition, subtraction, or multiplication—or to combine numbers—and produce numeric results, use the arithmetic operators in this table. [^1]
Meaning | Arithmetic Operator | Example |
---|---|---|
Addition | + (plus sign) | =10+2 |
Subtraction | - (minus sign) | =6-2 |
Negation | - (minus sign) | =-9 |
Multiplication | * (asterisk) | =5*8 |
Division | / (forward slash) | =27/9 |
Percent | % (percent sign) | =550*3% |
Exponentiation | ^ (caret) | =5^2 (same 5*5) |
With the operators in the table below, you can compare two values. When two values are compared by using these operators, the result is a logical value either TRUE or FALSE. [^1]
Comparison operator | Meaning | Example |
---|---|---|
= (equal sign) | Equal to | =A1=B1 |
> (greater than sign) | Greater than | =A1>B1 |
< (less than sign) | Less than | =A1<B1 |
>= (greater than or equal to sign) | Greater than or equal to | =A1>=B1 |
<= (less than or equal to sign) | Less than or equal to | =A1<=B1 |
<> (not equal to sign) | Not equal to | =A1<>B1 |
Use the ampersand (&) to join, or concatenate, one or more text strings to produce a single piece of text.
Text operator | Meaning | Example |
---|---|---|
& (ampersand) | Connects, or concatenates, two values to produce one continuous text value. | =”Muhammad”&” Ahmad” |
Combine ranges of cells for calculations with these operators.
Reference operator | Meaning | Example | |
---|---|---|---|
: (colon) | Range operator, which produces one reference to all the cells between two references, including the two references. | =SUM(B5:B15) | |
, (comma) | Union operator, which combines multiple references into one reference. | =SUM(B5:B15,D5:D15) | |
(space) | Intersection operator, which produces a reference to cells common to the two references. | =SUM(B7:D7 C6:C8) | |
# (pound) | The # symbol is used in several contexts: Used as part of an error name. Used to indicate insufficient space to render. In most cases, you can widen the column until the contents display properly. Spilled range operator, which is used to reference an entire range in a dynamic array formula. | #VALUE!, #####, =SUM(A2#) | |
@ (at) | Reference operator, which is used to indicate implicit intersection in a formula. | =@A1:A10 | =SUM(Table1[@[January]:[December]]) |
The implicit intersection operator was introduced as part of substantial upgrade to Excel’s formula language to support dynamic arrays. Dynamic arrays bring significant new calculation ability and functionality to Excel. [^2]
Original formula | As seen in dynamic array Excel | Explanation |
---|---|---|
=SUM(A1:A10) | =SUM(A1:A10) | No change - No implicit intersection could occur, as the SUM function expects ranges or arrays. |
=A1+A2 | =A1+A2 | No change - No implicit intersection could occur. |
=A1:A10 | =@A1:A10 | Implicit intersection will occur, and Excel will return the value associated with the row the formula is in. |
See Also:
A quantity upon which a mathematical operation is performed
In some cases, the order in which a calculation is performed can affect the return value of the formula, so it’s important to understand how the order is determined and how you can change the order to obtain the results you want.[3]
In Excel, Remember the order of operations:
For example, with a formula like
= (6 + 4) ^ 2 / 5
Excel follows by:
Another example formula:
= (3 + 2) ^ 2 * 4 / 2
Excel first calculates the parentheses (3 + 2), resulting in 5, then raises it to the power 2 (5^2 = 25), and finally multiplies by 4 to give 100.
The following formula will evaluate to 14:
=2 + 3 * 4
This is because the multiplication operation is performed before the addition operation. However, if we enclose addition operation in parentheses, the formula will evaluate to 20:
=(2 + 3) * 4
This is because the operation within the parentheses is performed first.
Here are some other examples of the PEMDAS order of operations in Excel:
=2 + 3 ^ 4 # Evaluates to 83 (exponents are performed before addition)
=2 - 3 * 4 # Evaluates to -10 (multiplication is performed before subtraction)
=5 / (6 + 4) # Evaluates to 0.5 (addition is performed before division)
=2 * (3 + 4) # Evaluates to 14 (addition is performed before multiplication)
=6 / 3 - 2 + 3 * 3 # Evaluates to 9 (muliplication and division are performed before subtraction.)
To change the order of evaluation, enclose in parentheses the part of the formula to be calculated first.
Watch this video on Operator order in Excel to learn more.
See also:
Watch this video on Simple formula in excel
What is a formula?
Which of the following is the correct order of operations in Excel formulas?
Which of the following operators has the highest precedence in Excel?
What is the result of the following formula in Excel: 10 + 5 * 2?
What is the purpose of using parentheses in an Excel formula?
What is the purpose of using the PERCENTAGE (%) operator in Excel?
What is the correct syntax for adding two cells in Excel?
What is the difference between an arithmetic operator and a relational operator?
What is the correct way to enter a negative number in Excel?
Which operator is used for division in Excel?
Which operator is used for exponentiation in Excel?
If A1 contains the value 20 and B1 contains the value 5, what is the result of the formula =A1-B1*2?
In Excel, the ampersand (&) operator is used for:
Which of the following Excel formulas will result in the product of cells A1 and B1?
If cell A1 contains the value 10 and cell A2 contains the value 3, what is the result of the formula =A1/A2?
If cell B1 contains the value 8 and cell B2 contains the value 2, what is the result of the formula =B1^B2?
If cell D1 contains the value 25 and cell D2 contains the value 5, what is the result of the formula =D1-D2?
Which symbol is used for “equal to” in Excel?
What is the result of the expression “=A1 > B1” if the value in cell A1 is 10 and in cell B1 is 5?
Which operator is used for “not equal to” in Excel?
If cell C1 contains the formula “=A1<50”, what does it mean?
Which of the following is the correct syntax for “greater than or equal to” in Excel?
What is the result of the expression “10 <= 5” in Excel?
What is the correct formula to determine if the value in cell A1 is equal to the text “Hello”?
Which of the following formulas will check if the value in cell A1 is not equal to the value in cell A2?
What is the result of the following formula: =A1>B1?
What is the result of the following formula: =A1>=B1?
Here are some Excel exercises to perform arithmetic operators:
Exercise 1:
=A1+A2
The result, 15, should appear in cell A3.
Exercise 2:
=A1-A2
The result, 5, should appear in cell A3.
Exercise 3:
=A1*A2
The result, 24, should appear in cell A3.
Exercise 4:
=A1/A2
The result, 5, should appear in cell A3.
Exercise 5:
=A1*A2
The result, 150, should appear in cell A3.
*Exercise 5:
=(A3+B3)*C3
to add A3 and B3 and then multiply the result by C3.Exercise 6:
Exercise 7:
Exercise 8:
Exercise 9:
=(A5 + B5) * (A5 - B5)
to perform addition and subtraction inside parentheses before multiplying.Exercise 10: Discount calculation
=A1 * A2
.=A1 - B1
.Exercise 11: Discount calculation
=A12 - (A12 * B12)
to calculate the discounted price.