Introduction To Excel: Yitzchak Rosenthal
Introduction To Excel: Yitzchak Rosenthal
Excel
Yitzchak Rosenthal
1
Worksheet
Basics
2
3
Worksheets
• Excel’s main
screen is called a
“worksheet”.
• Each worksheet is
comprised of many
boxes, called
“cells”.
4
Organize Information
• You can organize
information by
typing a single
piece of data into
each cell. (see next
slides)
How to Enter Information
5
6
Selecting a Cell
• “Select” a cell
by clicking on it
once (don’t
double click).
9
10
12
13
15
16
Resizing a Row
• Make a row
taller or
shorter by
dragging
the
separator
between the
rows.
Row is now
• Click and taller
drag here to
resize row
5.
19
20
21
Formatting Cells
• Select one or more cells and then click on any of the formatting buttons (see
below) to change the formatting of the selected cells.
• Formatting buttons: show fewer decimal points (ex.
10.507 is displayed as 10.51)
These change the way show more decimal points (ex.
numbers are displayed 10.507 is displayed as 10.5070)
in cells. (these don’t
affect words). indent within cell
put border around cell(s)
center color of cell
font font color of
name size left justify right justify text in cell
• Ctrl-click
and drag
(This cell is also selected
to select even though it appears
additional white).
ranges
26
Selecting entire Rows, entire Columns or
all cells on the worksheet.
• To select an entire column, click on the letter for
the column header. To select several columns,
click on the header for the first column and drag to
the right.
• To select an entire row, click on the number for
the row header. To select several rows, click on the
header for the first row and drag down.
• To select all of the cells on the spreadsheet, click
on the upper left hand corner of the spreadsheet
(where the column headers meet the row headers)
27
Click Click
Ctrl-
Click
drag Click drag Click
28
Example - continued
• Step 1: Click on
row header for
row 5
• Step 2:
Ctrl-click on
row-header for
row 11
• Step 3: Press
Bold button or
type ctrl-b
• Note: After
being “bolded”,
the word
“Employee” is
now too wide
for the column,
so make the
column wider if
necessary (this
step is not
shown).
More Advanced Formatting
29
30
Format Cells
• Using the formatting buttons only
give you a limited amount of
formatting ability.
• For more formatting ability, select
one or more cells and right click on
the selection. Then choose “format
cells” from the popup menu.
• Choose options from the Number,
Alignment, Font, Border and
Patterns tabs and press OK to
change the way your information
looks on the screen.
• The Protection tab is used to lock
cells so that their contents can’t be
modified.
• We will not go into the details of
using the format cells dialog box at
this time but you should be able to
figure out most of it by yourself.
31
Formatting changes how things LOOK,
not how they WORK.
• NOTE: you will probably not understand this slide
until after you learn about Excel Formulas.
Formulas are covered later in this presentation.
• When you change the format of a cell, Excel still
“remembers” the original value.
• Excel will use the un-formatted value when
calculating formula values.
• Example: if you change numbers to appear with
fewer decimal points the original number with all
of its decimal points are used in calculations.
Formulas
32
33
Excel Formulas
• You must have an equals sign ( = ) as the first
character in a cell that contains a formula.
• The = sign tells excel that the contents of the cell
is a formula
• Without the = sign, the formula will not calculate
anything. It will simply display the text of the
formula.
34
Formulas - correct
Missing = sign
Types of operations
• You can use any of the following operations in a
formula:
operation symbol example
addition: + =a1+3
subtraction: - =100-b3
multiplication: * =a1*b1
division: / =d1/100
exponentiation ^ =a2^2
negation - =-a2+3
(same symbol as subraction)
37
=a1/100
Errors in Formulas
38
39
Common Errors
• The following are some errors that may appear in a spreadsheet (there are others too).
– #######
• Cell is too narrow to display the results of the formula. To fix this simply make the column wider and
the “real” value will be displayed instead of the ###### signs. Note that even when the ###### signs are
being displayed, Excel still uses the “real” value to calculate formulas that reference this cell.
– #NAME?
• You used a cell reference in the formula that is not formed correctly (e.g. =BB+10 instead of =B3+10)
– #VALUE!
• Usually the result of trying to do math with a textual value. Example: =A1*3 where A1 contains the
word “hello”
– #DIV/0!
• Trying to divide by zero. Example: =3/A1 where A1 contains 0 (zero)
– Circular Reference
• Using a formula that contains a reference to the cell that the formula “lives in”. Example: putting the
formula =A1+1 in cell A1 or putting the formula =SUM(A1:B2) in any of the cells A1, B1, A2, B2
Order of Operations
40
41
Complex formulas
• You can use several operations in one function
• You can group those operations with parentheses
• Examples
=3*2+1
=c1*(a1+b1)
=(100*a2-10)+(200*b3-20)+30
=(3+2*(50/b3+3)/7)*(3+b7)
42
Order of operations
• When using several operations in one formula,
Excel follows the order of operations for math.
– first: all parentheses - innermost first
– second: exponents (^)
– third: all multiplication (*) and division (/). Do
these starting with the leftmost * or /
and work to the right.
– fourth: all addition (+) and subtraction (-). Do
these starting with the leftmost + or -
and work to the right.
43
Menumonic Meaning
– Please parentheses
– Excuse exponents
Order of operations
• The value of
3+2*5
is
13
NOT 25!
45
Order of operations
3 + (100 - 20) / 10 - 6 * 2 / 4 + 9
3 + 80 / 10 - 6 * 2 / 4 + 9
3+ 8 - 6 * 2 / 4 + 9
3 + 8 - 12 / 4 + 9
3+8 - 3 + 9
11 - 3 + 9
8+9
answer: 17
46
Cntrl-`
• To see the formulas in the worksheet
– Press the Cntrl key at the same time as you press the `
key (i.e. Cntrl-`)
– Press Cntrl-` again to see the values
47
Functions
48
What is a function?
• A function is a "named operation"
• Functions have
– a name
– parentheses
– parameters/arguments inside the parentheses
• The words parameter and argument mean the same thing
• you can have many parameters for one function separated
with commas (,)
• The number of parameters is one more than the number of
commas.
49
Function Result
=SUM(1,2,3,4,5) 15
=SUM(a1,b1,c1) a1+b1+c1
=SUM(9,a1,b2,5,c1) 9+a1+b2+5+c1
50
Terminology
SUM(1,2,3,4,5)
– The name of the function is "SUM"
51
52
Ranges
• A rectangular box of cells is called a “range”.
• The name of a range is
– the name of the upper left cell of the range
– Followed by a colon :
– Followed by the lower right cell of the range
• Example: A1:B2 is shorthand for A1,A2,B1,B2
– See next slide for more examples
A1:B2
53
B2:B5
B3:E3
54
without a range
=SUM(a1,b1,c1,a2,b2,c2,a3,b3,c3,a4,b4,c4)
with a range
=SUM(a1:c4)
55
=SUM(a1:b2,100,c4:c7,d3)
=SUM(a1,a2,b1,b2,100,c4,c5,c6,c7,d3)
Interesting, right?
This is just a sneak preview of the full presentation. We hope you like it!
To see the rest of it, just click here to view it in full on PowerShow.com.
Then, if you’d like, you can also log in to PowerShow.com to download
the entire presentation for free.