Excel Formula 101
Excel Formula 101
Reference operators
Operators Meaning Examples
: (COLON) Range operator A1:A10
, (COMMA) Union operator SUM(A1,A3,A5)
(SPACE) Intersection operator A1:A5 B1:B5
Operator precedence
Excel calculates the formula from left to right,
according to a specific order for each operator
in the formula.
Operators Meaning
{:} { } {,} Reference operators
– Negation
% Percentage
^ Exponential
* and / Multiplication and Division
+ and – Addition and Subtraction
{ = } { > } { < } { >= } { <= } { <> } Comparison operators
Use of parentheses
To change the order of evaluation, enclose in
parentheses the part of the formula to be
calculated first.
Formula Answer
=8+8*8-8/8 71
=(8+8)*8-8/8 127
=8+8*(8-8/8) 64
=(8+8*8)-8/8 71
The syntax of functions
1. Structure.
2. Function name.
3. Arguments.
4. Argument tooltip.
Nesting functions
References in formulas
• Identifies a cell or a range of cells on a
worksheet to use in a formula.
• Data contained in different parts of a
worksheet in one formula or use the value
from one cell in several formulas.
• Cells on other sheets in the same workbook,
and to other workbooks (links or external
references)
Types of references
Type Definition Examples
Relative If the position of the cell that contains =A1
references the formula changes, the reference is
changed