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 different types of storage devices

Topic: Explain different types of storage devices in Computer systems Storage Devices Storage devices are used to store data and instructions permanently. Storage devices are also called secondary storage devices / backing storage devices / external storage devices or auxiliary storage devices. Examples of storage devices include Hard Disk, CD and DVD etc. Why Secondary Storage Devices are Used? Secondary storage devices are used because: Primary memory(RAM) is volatile and temporary. When computer is switched off, all data in ram is erased. Storage devices can store large amounts of data and instructions permanently whereas Primary memory has less capacity of storing data. Types Of Storage Devices There are three main types of storage devices:  Magnetic Tape   Magnetic Disk   Optical Disk   Flash Memory storage devices 1. Magnetic Tape Magnetic tape is the oldest storage device. It is made of plastic coated with m...

Electricity Bill Calculator Formulas in Excel

Today, we will discuss How to create an Electricity Bill Calculator Worksheet by using Electricity Bill Calculator Formulas in Excel . The following formulas will be used in Electricity Bill Calculator Worksheet: Q: Prepare a worksheet according to the following instructions: Create a worksheet in MS Excel according to the requirements Enter sample data of Electricity units consumed by customers in a city Apply formula to calculate Units Consumed Apply formula to calculate Electricity Charges Apply formula to calculate Surcharge Apply formula to calculate Bill Payable Note: Every formula will start from  =  Units Consumed Formula=D5-C5 Electricity Charges Formula=IF(E5>200, E5*15,IF(E5>100, 1000+(E5-100)*12, E5*10)) SURCHARGE FORMULA = IF(F5>5000, F5*5%,IF(F5>1000, F5*3%, 0)) BILL PAYABLE FORMULA = SUM(F5:G5) Download Excel Electricity Bill Calculation Worksheet Free  Image for Electricity Bill Calculator Formulas ...

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...