Excel keeps track of data and calculates to manipulate this data. In calculations, Excel uses various formulas and these formulas include different symbols or operators. In this tutorial, you will learn how to insert a sign in an Excel formula.
How to Insert Sign in Excel Formula: 3 Types
For easy discussion, we have categorized the signs (that we can input in Excel formulas) into three categories. In the following sections, we will show 3 ways to insert signs in Excel using various formulas for different purposes.
1. Insert Arithmetic Signs in Excel Formula
The most common signs that we use in Excel are the arithmetic operators: plus (+), minus (–), multiply (*), and divide (/).
- Excel depicts the standard multiplication sign (x) by the asterisk (*) sign.
- The standard division sign (÷) is demonstrated by the forward-slash (/) sign.
- The caret sign (^) known as the exponential power sign raises the number to the power of another number.
The following image shows a calculation, where we are evaluating the area covered by the square in the image.
As their geometry suggests, the following formula will return the area: (a-b)2 = a2-2ab+b2
We have used both sides to generate an Excel formula for area, to show the use of *, ^, +, and –.
Formula 1:
=C5^2-2*C5*C6+C6^2
Formula 2:
=(C5-C6)^2
Both formulas return the same result.
Read More: How to Type Math Symbols in Excel
Similar Readings
- How to Insert Rupee Symbol in Excel
- How to Insert Tick Mark in Excel
- How to Type Diameter Symbol in Excel
- How to Insert Sigma Symbol in Excel
- How to Use Multiply Sign in Excel
- How to Insert Square Root Symbol in Excel
- How to Insert Degree Symbol in Excel
2. Insert Signs as Logical Operators in Formula
MS Excel uses the following logical operators in the formula. When you use logical operators in the Excel formula, it will return either TRUE or FALSE.
Signs | Explanations | Formula Examples |
---|---|---|
= | Equal to | =B4=C4 |
<> | Not Equal to | =B4<>C4 |
> | Greater than | =B4>C4 |
< | Less than | =B4<C4 |
>= | Greater than or equal to | =B4>=C4 |
The following screenshot shows an example of using logical operators in Excel formulas.
The formula we have used here is as follows:
=IF(B5<18,"Child",IF(AND(B5>=18,B5<50),"Young","Old"))
Read More: How to Insert Less Than or Equal to Symbol in Excel
3. Other Signs
You can insert more signs in the Excel formula, such as: : (colon), ! (exclamation mark), [] (third bracket), {} (second bracket for using array), & (ampersand symbol), etc.
Let’s see how and why to use them in formulas.
Curly Braces {} for Array Formula:
{}, curly braces are used in Excel formulas to denote an array and work with an array. In earlier Excel versions, you had to press CTRL + SHIFT + ENTER to enable an array formula. After that, these braces would appear before and after the formula. The following screenshot will give an idea of using these operators.
Formula Used:
=TRANSPOSE(B4:C11)
$ (Dollar Sign), : (Colon), and Comma:
Look at the following formula.
=COUNTIF($B$5:$C$10, "Child")
In this formula, the dollar ($) sign is used before cell reference to fix them, the colon (:) is used to create a data range, and the comma (,) is used to separate the function arguments.
Ampersand (&) and Exclamation Mark (!):
We can use an ampersand (&) sign to concatenate strings in different cells. Again, an exclamation mark appears (or you can manually hard code it in the formula), when you use a cell reference from another worksheet.
Look at the following image and the formula below. You will get an idea of the way they are used.
='First Names'!B2&" "&Others!B5
Third Brackets ([]):
You have to use third brackets when you are referencing an external workbook in the Excel formula.
In the following calculation, we are adding values from an external workbook, named Source.xlsx, with the following formula:
=B5+'[Source.xlsx]Sheet1'!$B2
Look that, a pair of third brackets appear around the file name in the formula.
Read More: How to Insert Dollar Sign in Excel Formula
Download Practice Workbook
You can download the following practice workbook that we have used to prepare this article.
Conclusion
In this tutorial, I have discussed how to insert signs in an Excel formula. I hope you found this article helpful. You can visit our website to learn more Excel-related content. Please, drop comments, suggestions, or queries if you have any in the comment section below.
Related Articles
- How to Write X Bar in Excel
- How to Add Symbol Before a Number in Excel
- How to Insert Symbol in Excel Header
- How to Insert Symbol in Excel Footer
- How to Put Sign in Excel Without Formula
- How to Type Minus Sign in Excel Without Formula
- How to Put Equal Sign in Excel without Formula
- How to Put a Plus Sign in Excel without Formula
- How to Insert Greater Than or Equal to Symbol in Excel