Skip to main content

Using Simple Formulas in Excel With Arithmetic Operators-2

What are Arithmetic Operators in Excel?


Arithmetic Operators are used to perform arithmetic operations like addition, subtraction, multiplication and division etc. There are following arithmetic operators in Microsoft Excel:
Using Arithmetic / Mathematical Operators in MS Excel Formulas

1.  + Operator


The + arithmetic operator is used to perform addition of numbers. It is used with in formulas along with Cell References normally. For example, to add the number 10 in A1 cell and the number 20 in B1 cell, we can write a formula =A1+B1 in cell C1. After pressing Enter key we will see the answer 30 in the cell C1.

Important Points To Write a Simple Formula in Excel


  1. Every formula in Microsoft Excel is started with an Equal sign ( = ).
  2. Arithmetic operators (+ for addition, - for subtraction, * for multiplication, / for division) are used.
  3. Percentage is calculated by % operator. ( =B2*10%       means 10% of the number in cell B2)
  4. Power function is performed by ^ operator. (3^2 will give 9) 

Use of addition arithmetic operator in Excel


2.  - Operator


The - arithmetic operator is used to perform subtraction of numbers. It is used with in formulas along with Cell References normally. For example, to subtract the number 100 in B1 cell from the number 50 in A1 cell, we can write a formula =B1-A1 in cell C1. After pressing Enter key we will see the answer 50 in the cell C1.
Use of subtraction arithmetic operator in Excel


3.  * Operator


The * arithmetic operator is used to perform multiplication of numbers. It is used with in formulas along with Cell References normally.

Use of multiplication arithmetic operator in Excel
For example, to multiply the number 10 in A1 cell with the number 20 in B1 cell, we can write a formula =A1*B1 in cell C1. After pressing Enter key we will see the answer 200 in the cell C1.


4.  / Operator


The / arithmetic operator is used to perform division of numbers and gives quotient of the division. It is used with in formulas along with Cell References normally.

Use of division arithmetic operator in Excel
 For example, to divide the number 10 in A1 cell by the number 5 in B1 cell, we can write a formula =A1/B1 in cell C1. After pressing Enter key we will see the answer 2 in the cell C1.


5. % Operator


The % arithmetic operator is used to calculate percentage. It is used with in formulas along with Cell References normally.

Use of Percentage arithmetic operator in Excel

For example, to calculate the 10 % of the number 1000 in A1 cell, we can write a formula =A1*10% in cell B1. We will read the formula =A1*10% as "10% of A1" means 10% of the number in cell A1. After pressing Enter key we will see the answer 100 in the cell B1.




6.  ^ Operator  (Exponent operator or Power operator)


The ^ arithmetic operator is used to calculate a number n raised to the power p. For example 2^3 is equal to 8 ( 2 raised to the power 3).
 Use of exponent - Power arithmetic operator in Excel
It is used with in formulas along with Cell References normally. For example, to calculate 2 raised to the power 3, type 2 in Cell A1 and 3 in cell B1. Now we can write a formula =A1^B1 in cell C1. After pressing Enter key we will see the answer 8 in the cell C1.


Order of Precedence of Arithmetic Operators in Excel


Order of precedence means the order in which operations will be performed when evaluating an expression in Microsoft Excel.

1. First of all the operation in parentheses ( ) is performed if any. If nested parentheses exist in expression, then the inner most parentheses will be evaluated first.
2. Secondly, Exponents will be evaluated if any.
3. In third step, multiplications and divisions will be calculated from left to right order.
4. In fourth step, additions and subtractions will be performed in Left to Right order.

Example: Evaluate the following expression according to the order of precedence in Excel
               =A1*B1-C1*(20+3)
Order of precedence of Arithmetic Operators in Microsoft Excel

Solution:  Let A1=10,   B1=5,    C1=2
            
               Step 1. First of all parentheses (20+3) is evaluated to 23
                             Now expression becomes  =A1*B1-C1*23
              Step 2. Now there is no exponents, so we check multiplication and division. There are
                          two multiplication operators. Since A1*B1 is on left so we evaluate it by putting values
                          10*5 the answer is 50. Therefore expression is reduced to =50-C1*23
              Step 3. Now we will evaluate multiplication C1*23. Putting values 2*23 and the answer is
                          46. So the expression becomes  50-46.
              Step 4. Now we will evaluate the last operation of subtraction 50-46 which gives the answer 4.
   
                                 

Comments

Popular posts from this blog

Explain Main Difference Between System Software and Application Software

Topic: Explain Main Difference Between System Software and Application Software            Differentiate between system software and application software Before , explaining the main differences between application software and system software, let us know the definitions of Application software and System software with examples. What is System Software: System software is a set of programs to control all components of computer and to manage overall operations of computer system. Differences between System software and application software System software is used as a base to install and run all application software. Examples of system software include: Operating Systems, like Microsoft Windows, DOS, Unix and Linux Device Drivers like Device driver software of a Printer (found on CD normally provided with the printer) Utility Programs like AVAST anti virus, Disk Scanners and File Viewers etc. What is Applicat...

Explain Different Types of Data Processing and Advantages Disadvantages

Today we will discuss different types or levels of data processing in detail. Let us define Data processing first. DATA PROCESSING Data processing is the sequence of operations performed on data to convert it into useful information . These operations may be arithmetic, statistical or logical operations. We can arrange or classify data. We can send and receive data from one point to another. Explain different types of data processing TYPES OF DATA PROCESSING (OR) LEVELS OF DATA PROCESSING) There are three types of data processing . 1) Manual data processing 2) Mechanical data processing 3) Electronic data processing We may also use the term Levels of data processing. First level of data processing was manual data processing when there were no calculating devices (before the invention of calculators). Therefore all processing jobs were performed manually by hand with the help of pen , paper and mind. In second level of data processing, machines like calculat...

Advantages and Disadvantages of Mesh Topology

Topic: Advantages and Disadvantages of Mesh Topology Mesh Topology In a mesh topology, every device on the network is physically connected to every other device on the network. Therefore, data can be sent on several possible paths from source computer to destination computer. Mesh topology is more reliable with better performance. Mesh Network Topology is mostly used in wide area networks where reliability is important. Advantages of Mesh Network Topology 1. Since, there are many links to transfer data, Mesh topology gets rid of the traffic problem . Data may be transferred through different links. 2. If one link becomes unusable, it does not disturb the whole system . Other links can be used for communication. 3. Since each node has physical connection with other nodes, therefore, one node can transfer data to many nodes at the same time. Disadvantages of Mesh Network Topology 1. It is very expensive due to implementation of multiple links for each no...