Excel Order of Operations is the Same as Math

Excel follows the same order of operations that you learned back in your math classes. If you don’t pay attention to these rules when you create your formulas, you may wind up struggling to figure out why your results make no sense.

Excel Order of Operations

The following ordering dictates in which order your formulas will get evaluated. Although our eyes may scan from left to right, Excel doesn’t look at formulas that way.

  1. Parentheses
  2. Exponents
  3. Multiplication and Division
  4. Addition and Subtraction

Excel Order of Operations Example

To illustrate how the order of operations matters, consider the example below.

1+2*4

If you were to try and evaluate this from left to right as it is written, you would first get

1+2=3

Then, you would multiply that 3 times 4, giving you 12. Following the Excel order of operations, Excel will evaluate

2*4=8

because Multiplication and Division are earlier in the order noted above. Then, Excel will evaluate

1+8

because Addition and Subtraction are next in the order. The result will be 9 instead of 12.

If you in fact needed to evaluate the

1+2

first, you can. You indicate this by using parentheses, which are first in the order of operations. You would write the equation as follows.

(1+2)*4

This way, the Excel order of operations says to first deal with the parentheses so

1+2=3

will be evaluated. Next in order for this example will be the Multiplication and Division, where Excel will evaluate

3*4=12

There you go.

Leave a Reply

Your email address will not be published. Required fields are marked *