4 MS-Excel
4 MS-Excel
Row Headers
Sheet Tabs
Mouse Pointer
Normal arrow
• it is used to point to the active cell/range border for the
purposes of clicking and dragging or moving.
I-beam
• Appear when the mouse pointer is at the formula bar, the
name box, or inside the active cell which is being edited.
Mouse Pointer
Thick Cross
• Appears when the mouse pointer is at the worksheet
document window (area of cells)
Width changer
• Appears when you wish to adjust the column width by
clicking and dragging the column header divisions
Height changer
• Appears when you wish to adjust the row height by clicking
and dragging the row header divisions
Formula
Is used to calculate values.
You may use an equal sign or the
Autosum function to build a formula.
Texts are letters, symbols, numbers and
spaces or any combination that you enter
into a cell.
Value is a number that you enter into a
cell that you may use in a formula later.
Operators used in Excel
+ (plus) - Addition
- (minus) - Subtraction
* (asterisk) - Multiplication
/ (slash) - Division
^ (caret) - Exponentiation
Parenthesis - Grouping
PEMDAS & the Hierarchy of
Operations:
Operator Function Example
() Grouping / Parentheses
^ Exponentiation =B4 ^ B2
* Multiplication =B4 * B2
/ Division =B4 / B2
+ Addition =B4 + B2
– Subtraction =B4 – B2
Combination =B4*(B2+B3)/2)
Order or Hierarchy of Operations
FirstOrder Parentheses
Second Order Exponentiation
Third Order Multiplication /
Division (Left to Right)
Fourth Order Addition / Subtraction
(Left to Right)
Referencing
2 Types of Referencing
COUNT =COUNT(range)
Count the no of cells in
the range have =COUNT(A1:A10)
numeric values
Most frequently used functions:
Function Syntax &
Name Use Arguments Example
COUNTIF Counts the no =COUNTIF(range,
of cells in the “condition”)
range that =COUNTIF(A1:A10
satisfy a ,”>=0”)
certain
condition
IF Determine the =IF(condition, value
values of a if True, value if =IF(A4<A2*2,”Less
cell based on False) Than”, “Greater or
a certain equal”)
condition
MAX Gives the =MAX(range)
highest value =MAX(D10:F10)
in the range
Most frequently used functions:
Function Syntax &
Name Use Arguments Example
MIN Gives the =MIN(range)
smallest
=MIN(D10:F10)
value in the
range
OR Checks the =OR(condition1,
overall condition2,..)
combined
=OR(B3=5,B4*3=A5)
value of
several
conditions
PRODUCT Multiplies the =PRODUCT(range)
values of the
=PRODUCT(B3:B1)
cells in the
range
Most frequently used functions: