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 magnetic material. Data is stored on mag

Convert Centimeters to Inches Python Programming | Python Program Conver...

YouTube Video Tutorial How to write a Python program to convert centimetres to inches Formula to convert centimetres to inches   Explanation of this Python Program This Python program prompts the user to enter a height in inches, converts it to centimeters, and then prints the converted value. It uses the conversion factor of 2.54 to perform the conversion and rounds the result to two decimal places before displaying it to the user. Here's an explanation of the provided Python program line by line: python inches = float ( input ( 'Enter the Height in inches to convert into centimeters:' )) This line prompts the user to enter a height in inches and assigns the entered value to the variable inches . The input() function is used to receive input from the user, and float() is used to convert the input into a floating-point number. python centimeters = inches * 2.54 This line calculates the equivalent value in centimeters by multiplying the inches variable by the conver

Find Your Correct Age From Date of Birth

First of all click on First two digits to type Month number from keyboard like any number from 1 to 12. . Now click on next two digits and type day number of month that is date from 1 to 31. In the last step type the year of your birth in four digits like 1995.  Now click on the blue button with text "Calculate Age". Your accurate age will be displayed below the button. For example. If today is 09-16-2023 that is September 16, 2023 and you type birth date as 11-01-2000 that is November 1, 2000, your accurate age will be displayed as:Your age is 22 years, 10 months, and 15 days. Age Calculator Age Calculator Calculate Your Age Now! Enter your date of birth: Calculate Age As shown in the image below: