The tutorial shows how to do arithmetic calculations in Excel and change the order of operations in your formulas.
When it comes to calculations, there is almost noting that Microsoft Excel cannot do, from totaling a column of numbers to solving complex linear programming problems. For this, Excel provides a few hundred predefined formulas, called Excel functions. In addition, you can use Excel as a calculator to do math - add, divide, multiply, and subtract numbers as well as raise to power and find roots.
How to do calculations in Excel
Making calculations in Excel is easy. Here's how:
- Type the equal symbol (=) in a cell. This tells Excel that you are entering a formula, not just numbers.
- Type the equation you want to calculate. For example, to add up 5 and 7, you type =5+7
- Press the Enter key to complete your calculation. Done!
Instead of entering numbers directly in your calculation formula, you can put them in separate cells, and then reference those cells in your formula, e.g. =A1+A2+A3
The following table shows how to perform basic arithmetic calculations in Excel.
Operation | Operator | Example | Description |
Addition | + (plus sign) | =A1+A2 | Adds up the numbers in cells A1 and A2. |
Subtraction | - (minus sign) | =A1-A2 | Subtracts the number in A2 from the number in A1. |
Multiplication | * (asterisk) | =A1*A2 | Multiplies the numbers in A1 and A2. |
Division | / (forward slash) | =A1/A2 | Divides the number in A1 by the number in A2. |
Percent | % (percent) | =A1*10% | Finds 10% of the number in A1. |
Raising to power (Exponentiation) | ^ (caret) | =A2^3 | Raises the number in A2 to the power of 3. |
Square root | SQRT function | =SQRT(A1) | Finds the square root of the number in A1. |
Nth root | ^(1/n) (Where n is the root to find) |
=A1^(1/3) | Finds the cube root of the number in A1. |
The results of the above Excel calculation formulas may look something similar to this:
Apart from that, you can combine values from two or more cells in a single cell by using the concatenation operator (&) like this:
=A2&" "&B2&" "&C2
A space character (" ") is concatenated in between cells to separate the words:
You can also compare cells by using logical operators such as "greater than" (>), "less than" (<), "greater than or equal to" (>=), and "less than or equal to" (<=). The result of comparison are logical values of TRUE and FALSE:
The order in which Excel calculations are performed
When you do two or more calculations in a single formula, Microsoft Excel calculates the formula from left to right, according to the order of operations shown in this table:
Precedence | Operation |
1 | Negation, i.e. reversing the number sign, as in -5, or -A1 |
2 | Percent (%) |
3 | Exponentiation, i.e. raising to power (^) |
4 | Multiplication (*) and division (/), whichever comes first |
5 | Addition (+) and subtraction (-), whichever comes first |
6 | Concatenation (&) |
7 | Comparison (>, <, >=, <=, =) |
Since the order of calculations affects the final result, you need to know how to change it.
How to change the order of calculations in Excel
Like you do in math, you can change the order of Excel calculations by enclosing the part to be calculated first in parentheses.
For example, the calculation =2*4+7
tells Excel to multiply 2 by 4, and then add 7 to the product. The result of this calculation is 15. By enclosing the addition operation in parentheses =2*(4+7)
, you instruct Excel to add up 4 and 7 first, and then multiply the sum by 2. And the result of this calculation is 22.
Another example is finding a root in Excel. To get the square root of, say, 16, you can use either this formula:
=SQRT(16)
or an exponent of 1/2:
=16^(1/2)
Technically, the above equation tells Excel to raise 16 to the power of 1/2. But why do we enclose 1/2 in parentheses? Because if we don't, Excel will raise 16 to the power of 1 first (an exponent operation is performed before division), and then divide the result by 2. Since any number raised to the power of 1 is the number itself, we would end up dividing 16 by 2. In contrast, by enclosing 1/2 in parentheses you tell Excel to divide 1 by 2 first, and then raise 16 to the power of 0.5.
As you can see in the screenshot below, the same calculation with and without parentheses produces different results:
This is how you make calculations in Excel. I thank you for reading and hope to see you on our blog next week!
41 comments
how can I create spreadsheet that can test my computer math processing capabilities?
Hi! Pay attention to the following article: 5 ways to do VLOOKUP in Excel - which is fastest?. You can download a sample file and test it on your computer.
The minimum ordering quantity for a particular product is 4 while my actual requirement is 34. It cannot be ordered as 34. It should be in multiples of 4 which will be either 32 or 356. How to run this formula in excel.
Hi!
To get the nearest smaller number that is a multiple of 4, use MOD formula:
=B1-MOD(B1,4)
=(28.5-24)+(18.5-15) /2 = 3.5
hello,
how would i do this. This is an example of numbers that i will need to calculate
Hi!
Firstly, you can only convert text to a formula using a VBA macro. Secondly, the result of your expression 3.5 is incorrectly calculated.
Hi there,
Im trying to excel to pick single or multiple values from a calculation and place them into certain rows/column's. For example excel has calculated a number 2.56 i need it to pick numbers from certain column's
65 10.03
80 7.4
100 2.4
So 2.56 is greater than 2.4 so I need it to grab 80 and 65 and place them into a another column..I hope this makes sense and is this possible
Hello!
The formula below will do the trick for you:
=FILTER(A1:A4,(B1:B4=SMALL(FILTER(B1:B4,B1:B4>$B$8),1)) + (B1:B4=SMALL(FILTER(B1:B4,B1:B4>$B$8),2)))
Cell B8 = 2.56
You can learn more about FILTER function in Excel in this article on our blog.
Hello please help me, what is the formula if each row has different price.
Example:
Sulop M.S 75 (23.50) 36 (25) : What is the sum total of this column? Before adding all column it should be multiply for their each price.
DJ Sean 38 (23.50) 72 (25)
Thank you,
Hello!
Where is the price here? Are these numbers in the column? What do they mean and what do you want to calculate? Please describe your problem in more detail.
Hi, how do you formulate a cell to pull information from another cell but it needs to Show 1 as 5, 2 as 4, 3 as 3, 4 as 2 and 5 as 1?
is there a formula from this?
Hello!
I recommend using the CHOOSE function.
=CHOOSE(A1,5,4,3,2,1)
You can learn more about CHOOSE function in Excel in this article on our blog.
My wookbook is no longer calculate automatically because I add extra column, please assist on how I'm going to fix this calculation situation
Hi,
This tutorial explains the basics of Excel calculation settings and how to recalculate Excel formulas automatically and manually.
Hi. Is there a formula to count how many times a certain number appears in a column? I have a spreadsheet with 0, 1, 2, and 3s in each column. I have to manually count how many 1s, 2s, and 3s and enter it into a different table to create graphs. It's painstaking work. Is there a formula instead to do the calculation? Thank you
Hello!
Solve your problem with the COUNTIF function. Read more in this guide.
I hope it’ll be helpful.
I need to create a formula in a cell that changes based on the value in another cell.
For example, if the value in cell R2 is "E" i want to calculate 8.5% of cell I2 and display this in cell S2 AND if R2 is 'N' I want to calculate 13.5% of cell I2 and display this in cell S2 instead
Is this possible, and if so can someone please provide the formula?
Hello!
Use IF function -
=IF(R2="E",I2*8.5%,IF(R2="N",I2*13.5%,""))
Please have a look at this article - Nested IF in Excel – formula with multiple conditions
Thx. And now how to hide = in cell A1?
Hi,
Use the RIGHT text function:
=RIGHT(FORMULATEXT(A2),LEN(FORMULATEXT(A2))-1)
I hope it’ll be helpful.
Hello. How I can make in one cell to stay this 2+2*3 and in other cell result of this?
Hello!
Write your formula =2+2*3 in cell A2. In cell A1 use the function =FORMULATEXT(A2)
I hope my advice will help you solve your task.
how do I use a formula on a spreadsheet on a number of entries without having to enter it each time
Hello!
Here is the article that may be helpful to you: How to copy formula in Excel
I have to calculate (11/6) to the power 54. How can I do this on excel? I cannot find the caret function on excel.
Hello!
=(11/6)^54
The ^ character is at 6 using SHIFT
Excel spread sheet, why when making an percentage formular calculation does it show a negative amount?
Hello!
If you count the percentage of a negative number, the result will also be a negative number.
Question.. I want to have this formula in a cell (200)/(1+x/100)=n, I want the formula to be invisible in the box and only put out a number (n) when I type in a value for x in the formula cell, thanks
Hello Matthew!
If I got you right, the formula below will help you with your task
=IF(A1 <> "",(200)/(1+A1/100),"")
The formula will show the value only if cell A1 is not empty
Hi,
If I would like to multiply (10000 x 8%) ÷12. Is the formula (10000*8%)/12? I can't seem to get it right on excel. And also if I want to calculate (10000x8%) x 2 then ÷ 24, What will be the formula like? Appreciate your time and thank you in advance!
formula would be =(10000*.08)/12
hi good day
while typing my stuff in excel and trying the calculate when I put a =B1+B2 the part with the B2 turns to read and the end product just says value can u all tell me where I went wrong
Hello Kerleisha!
Probably, the error occurs because you have a number in one of the cells and the other cell contains a symbol, e.g. a space.
If it is not the case, please describe the problem in more detail so I will be able to help you better.
=(B50*C50)+(B51*C51)+(B52*C52)/2.378
How do I get all three items in brackets to total then divide by 2.378
Formula is =((B50*C50)+(B51*C51)+(B52*C52))/2.378
thank you i used this and it worked ty
One last point, sorry to go on:
to illustrate, I'll plug in 66 as the tw, 100 as ra and 10 as rb. in the formula I get 60 and 6 for a and b, which seems like it did not respect the parenthesis, as 66*(100/(100+10))= 66*(100/110)= 66*0.9090909091= 60.0000000006, while 66*100/(100+10)=6600/110=60 which is what the formula gives me.
Hi Rae,
1. Your formula is correct, you do not get the same result because of
rounding off. Check the result again with this formula (it will round to 10 decimal places):
=TEXT(66 * ROUND((100 / (100 + 10)),10),"0.0000000000")
2. Try these formulas:
tw= aw/(ra/(ra+rb))
or
= TEXT(60 / ROUND((100 / (100 + 10)),10),"0.0000000000")
tw=bw/(rb/(ra+rb))
or
= TEXT(6 / ROUND((10 / (100 + 10)),10),"0.0000000000")
And your last point, try the following:
bw=(aw/(ra/(ra+rb)))*(rb/(ra+rb))
aw=(bw/(rb/(ra+rb)))*(ra/(ra+rb)).
Hi, I have a 2 part question.
1st, upon looking at my formula to try to reverse engineer it, I noticed the math seems a bit weird. I have this formula to calculate the amounts of 2 components based on the ratio and the total weight (tw=total weight, ra=ratio a, rb=ratio b, aw=weight of part a, bw=weight of part b. I'll use these instead of the cell #'s here). My formula looks like this bw=tw*(rb/(ra+rb)) and the formula for the other part is ra=tw*(ra/(ra+rb)).
the issue is that when I do out the math in steps, based on order of operations, I get a decimal, but the formula gives me a whole #. Why don't I get the same result?
Part 2; how can I create 2 formulas that will solve this backwards, as in, plug in the weight of a or b and get what my total weight and the weight of the other part as a result?
Thank you so much! I've been cracking my brain open over this for days and searching all over the web for an answer that I don't know an easy question to!!
sorry, messed up the 2nd formula, that should be aw=tw*(ra/(ra+rb))