Add
"+" Operator¶
In Excel, the + symbol is used as an arithmetic operator to add numbers together.
Usage:¶
You can use the + operator to add numbers, cell references, ranges, or even the results of other functions.
Examples:¶
=5 + 10would return 15.=A1 + B1would add the values in cells A1 and B1.=SUM(A1:A10) + 100would sum the numbers in cells A1 through A10 and then add 100 to the result.
It's crucial to ensure the cells or ranges you're trying to add with the + operator contain numerical values. If a cell contains text or is empty, Excel will treat that cell's value as 0 in the addition operation. However, if you directly try to add a text value (like ="text" + 5),
you'll get an error.
Note: While the
+operator can add two numbers or cell references, if you want to sum a range of cells, functions likeSUMare more appropriate and versatile.