Written by Allen Wyatt (last updated February 10, 2024)
This tip applies to Excel 97, 2000, 2002, and 2003
Operators are symbols used in a formula to define the relationship between two or more cell references, or between two or more values. They cause Excel to perform some action. For instance, consider the following formula:
= B3 + B4
In this case, the plus sign is the operator. This is not the only operator that Excel supports, however. There are several types of operators supported by Excel. Operators of the most common type, arithmetic, are shown here:
Operator | Meaning | |
---|---|---|
+ | Addition | |
– | Subtraction | |
* | Multiplication | |
/ | Division | |
% | Percent (placed after a value) | |
^ | Exponentiation |
Excel also supports Boolean, or comparison, operators. These operators are used to compare two values or expressions, returning either the logical value TRUE or FALSE. These are special values supported by Excel to represent the outcome of a comparison. Comparison operators are used most often in arguments for logical functions. For example, consider the following formula:
=IF(B3 > 99,"Limit has been exceeded","")
This formula uses the IF function to determine whether the value contained in cell B3 is greater than 99. If it is, the indicated text message is displayed in the cell containing this formula. Otherwise, nothing is displayed.
As you develop more complex Excel worksheets, you will find yourself relying more and more on comparison operators. The comparison operators are listed in Table 1-3.
Operator | Meaning | |
---|---|---|
= | Equal to | |
> | Greater than | |
>= | Greater than or equal to | |
< | Less than | |
<= | Less than or equal to | |
<> | Not equal to |
Finally, Excel also provides a text operator, which is used to combine (or concatenate) text. This operator is the ampersand (&) character.
You should note that operators only function as operators when they are in formulas. If you want to make sure that a character is not interpreted as an operator, then you need to enclose it within quote marks. For instance, consider the following:
= A1 & " & " & B1
If there are names of people (Bill and Betty) in cells A1 and B1, then the result of this formula would be the following:
Bill & Betty
Note that there are three ampersands in the formula, but only two of them are considered operators. The ampersand within the quote marks is treated as a string by Excel.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (1921) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Understanding Operators.
Dive Deep into Macros! Make Excel do things you thought were impossible, discover techniques you won't find anywhere else, and create powerful automated reports. Bill Jelen and Tracy Syrstad help you instantly visualize information to make it actionable. You’ll find step-by-step instructions, real-world case studies, and 50 workbooks packed with examples and solutions. Check out Microsoft Excel 2019 VBA and Macros today!
Want to add an ordinal suffix to a number, as in 2nd, 3rd, or 4th? Excel doesn't provide a way to do it automatically, ...
Discover MoreExcel is often used to analyze data collected over time. In doing the analysis, you may want to only look at data ...
Discover MoreNeed to know a count of unique values in a range of cells? There are a couple of ways you can tackle the problem.
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments