Excel Formulas
Excel Formulas
Formulas
A formula in Excel is used to do mathematical calculations. Formulas always start with the
equal sign (=) typed in the cell, followed by your calculation.
=1+1
=2*2
=4/2=2
It can also be used to calculate values using cells as input.
Let's have a look at an example.
Now we want to do a calculation with those values.
Step by step:
Excel is great in this way. It allows you to add values to cells and make you do calculations on them.
Now, try to change the multiplication (*) to subtraction (-) and dividing (/).
Delete all values in the sheet after you have tried the different combinations.
The fill function continued the calculation that you used
for Iva and was able to understand that you wanted to
count the cells in the next rows as well.
Adding cells
SUM function
Lets use the fill function to continue the formula, step
by step:
Select E2
Fill E2:E4
Type E5(=)
Write SUM
Double click SUM in the menu
Mark the range E2:E4
Hit enter
1. 3.
Chapter Summary
Values used in formulas can be typed directly and by using cells. The formula
updates the result if you change the value of cells, which is used in the formula. The
fill function can be used to continue your formulas upwards, downwards and
sidewards. Excel has pre-built functions, such as SUM.
Try same procedure for all arithmetic
operators
Relative references
Absolute references
Excel Relative References
Cells in Excel have unique references, which is its location.
References are used in formulas to do calculations, and the fill function can be used to continue
formulas sidewards, downwards and upwards.
Relative references
Absolute references
Absolute reference is a choice we make. It is a command which tells Excel to lock a reference.
The relative reference makes the cells reference free. It gives the fill function freedom to continue
the order without restrictions.
ABSOLUTE REFERENCE
Excel Addition Operator
Addition Operator
Addition uses the + symbol in Excel, and is also known as plus.
There are two ways to do addition in Excel. Either by using the + symbol in a formula or by using the
SUM function.
Type B1(=)
Select A1
Type (+)
Select A2
Hit enter
Adding Several Cells
First let's add some numbers to work with. Type the following values:
Type B1(=)
Select A1
Type (+)
Select A2
Type (+)
Select A3
Type (+)
Select A4
Type (+)
Select A5
Hit enter
Adding with SUM
Let's keep the numbers from the last exercise. If you did last exercise, remove the value in B1 .
Type B1(=SUM)
Double click the SUM command
Mark the range A1:A5
Hit enter
Excel Subtraction Operator
Subtraction Operator
Subtraction uses the - symbol, and is also known as minus.
Note: The minuend is the number to which the subtrahend subtracts from.
Subtracting Two Manual Entries
Let's start with adding in a formula. Start with a clean sheet
Step by step:
Type A1(=)
Type 100-50
Hit enter
Subtracting Using Two Cells
Let's add some numbers to work with. Type the following
values:
Type A3(=)
Select A1
Type (-)
Select A2
Hit enter
Subtracting Using Many Cells
Let's subtract using many cells. First, type the following values :
Step by step:
Type B1(=)
Select A1
Type (-)
Select A2
Type (-)
Select A3
Type (-)
Select A4
Type (-)
Select A5
Hit enter
Excel Multiplication Operator
Multiplication Operator
Multiplication uses the * symbol in Excel.
Step by step:
Type A1(=)
Type 2*2
Hit enter
Multiplying Two Cells
Let's add some numbers to work with. Type the following values:
Step by step:
Type A3(=)
Select A1
Type (*)
Select A2
Hit enter
Excel Division Operator
Division Operator
Division uses the / symbol in Excel.
Step by step:
Type A1(=)
Type 4/2
Hit enter
Dividing Two Cells
Let's add some numbers to work with. Type the following values:
Step by step:
Type A3(=)
Select A1
Type (/)
Select A2
Hit enter
Excel Parentheses
Parentheses
Parentheses () is used to change the order of an operation.
Using parentheses makes Excel do the calculation for the numbers inside the parentheses first, before
calculating the rest of the formula.
Examples
No parentheses
=10+5*2
With parentheses
Formulas can have groups of parentheses.
=(10+5)*2
=(10+5)+(2*4)+(4/2)
The result is 30 because it calculates (15)*2
Without Parentheses
The result is 25, the calculation is 5*5. It uses 5 because it has calculated numbers inside the
parentheses (2+3)=5 first.
With Many Parentheses