Week1 Excel Introduction
Week1 Excel Introduction
1
Outline
2
Basics about Excel
3
Copying the formula by
dragging
Copy the formula in B4 cell for all the
remaining years
4
Copying the formula by
dragging
Instead of dragging cell B4, there’s an even
simpler way to copy.
Put your cursor on the handle and double-
click with the left mouse button
The formula will be copied through the last
row of the adjacent filled column.
In this case: from cell B5 through B13.
5
Formatting cells
6
Relative to Absolute
references
Convert the following amounts in EUR into
USD given an exchange rate of
1.29USD/EUR
7
Exercise: Building
multiplication table
Build multiplication table using relative and
absolute copying
A B C D E F G
1 BUILDING A MULTIPLICATION TABLE IN EXCEL
2
3 1 2 3 4 5
4 1
5 2
3
Here's where you put the
6
7 4 multiplication table
8 5
8
Shortcuts in Excel: Shift+Ctrl+Down
Arrow
9
Shortcuts in Excel:
Alt+Ctrl+Down Arrow
10
Main Excel Shortcuts
Ctrl+Z Undo
Ctrl+C Copy,
Ctrl+V Paste,
Ctrl+X Cut
Ctrl+F Find
Ctrl+H Find&Replace
Ctrl+P Print
Ctrl+S Save
Ctrl + pgdown or up move between sheets
11
Main Excel Shortcuts
12
Main Excel Shortcuts
13
Excel Charts
14
Excel Charts
A B C D E F G H I J
CHART TITLES THAT UPDATE
1 Step 5: Edit chart for minor esthetics
2 Growth 14%
3
4 Year Cash flow
5 1 100.00 Cash Flow growth = 14.00%
6 2 114.00 <-- =B5*(1+$B$2) 180
7 3 129.96 160
8 4 148.15 140
9 5 168.90 120
10
100
11
80
12
13 60
14 40
15 20
16 0
17 1 2 3 4 5
18
19 Chart title below
20 Cash Flow growth = 14.00%
15
Excel Charts
16
Excel Filters
17
Conditional Formatting
18
Sort Data in Excel
19
Remove Duplicates
20
What-if/Goal seek
21
Solver
22
Regression
23
Data Subtotal
24
Main Excel Functions
SUM
AVERAGE
MIN
MAX
STDEVP/STD or STDEV.P/STDEV.S
VARP/VAR or VAR.P/VAR.S
EXP, LN
Round, RoundDown, RoundUp, Trunc
25
Main Excel Functions
IF
SUMIF
AVERAGEIF
26
Main Excel Functions
VLOOKUP: convert the GPA into a letter grade
in Lecture1-Grades.xlsx file. Use
“Grade_Conversion” sheet
Text functions: LEFT, RIGHT, MID, LEN
Financial functions: NPV, IRR, FV, PV, PMT,
RATE, NPER
27
Macros
28
Record and Run Macros
29
Macros
Sub Multiplication1()
For x = 1 To 10
Cells(x, 3) = Cells(x, 1) * Cells(x, 2)
Next x
End Sub
30