SlideShare a Scribd company logo
1 of 142
Download to read offline
To EXCEL or NOT?
By Filippo Selden http://about.me/fselden
EXCEL
EXCEL
EXCEL
EXCEL
How to do that thing I can’t do in Excel 2010?
Basic Excel Stuff.
THE RIBBON
The ribbon is easy to
understand not so easy
to master.
Home
Insert
Page layout
Formulas
Data
View
SHORTCUTS
F11 Create a new chart on a separate sheet using data in the selected range.
Alt Display the keytips for the Ribbon commands.
F2 Edit the active cell.
F4 Change absolute/relative values of cell references.
Shift+F2 Edit the comment in the active cell or insert a comment.
Ctrl+Shift+_ Remove all borders from the selected cells.
Shift+F10 Display the shortcut menu for the selected item.
Ctrl+F6 Activate the next window.
Ctrl+PgUp Activate the previous sheet in the workbook.
Ctrl+PgDn Activate the next sheet in the workbook.
Alt+Ctrl+V Display the Paste Special dialog box.
Alt+= Perform the equivalent of clicking the AutoSum button.
Ctrl+D Copy the top cell in a selected range to the other cells in the selection.
Ctrl+F Display the Find dialog box.
Ctrl+H Display the Replace dialog box.
Ctrl+R Copy the leftmost cell in a selected range to the other cells in the selection.
Ctrl+Y Repeat the last repeatable command.
Ctrl+Z Undo the last action.
A
B
C
D
E
F
G
CELLS
SELECT
SHIFT

Right Click > Delete
A
B
C
D
E
F
G
CELLS
DELETE
Right Click > Delete
CELLS
DELETE
DEL
A
B
C
D
E
F
G
CELLS
DELETE
DEL
CELLS
DELETE
CELLS
HIDING
A B C
1 10
2 5
3 15
Right Click > Hide
A C
1 10
2 5
3 15
Right Click > Unhide
VALUES
FORMULAS
Text
123 or 7
Calculations
LABELS
1
2
1
2
3
4
5
6
7
AUTOFILL
5
10
5
10
15
20
25
30
35
AUTOFILL
Jan
Feb
Jan
Feb
Mar
Apr
May
Jun
Jul
AUTOFILL
Q1
Q2
Q1
Q2
Q3
Q4
Q1
Q2
Q3
AUTOFILL
1-1-13
1-2-13
1-1-13
1-2-13
1-3-13
1-4-13
1-5-13
1-6-13
1-7-13
AUTOFILL
WORKBOOKS
AND
WORKSHEETS
Activates the
next sheetCTRL PGUP
Right Click on a Sheet
CELLS
REFERENCE
WORKSHEETS
=Sheet2!C9
Same workbook
=[Book2]Sheet2!C9
Different workbooks
A Little Less Basic.
DATA
VALIDATION
Select a range
Data
Data Validation
Range of dates
Range of numbers (<=>)
List made from a range
Home
Find & Select
Select Data Validation
DATA
VALIDATION
DROP-DOWN
LIST
The cell will getdata from the range
CASH
CC
USD
CASH
CC
USD
select LIST
select RANGE
ELIMINATE
DUPLICATE
ENTRIES Home
Format as Table
Select a range
Click anywhere in the Table
Design
Remove Duplicates
*Convert to Range to cancel Table format
*
ELIMINATE
DUPLICATE
ENTRIES
Select a range
Click anywhere
Data
Remove Duplicates
*
CREATE
A STATIC
IMAGE
COPY RANGE
Paste as image or
as linked image
Creating formulas.
ALL FORMULAS
BEGIN WITH AN
EQUAL SIGN
FORMULAS
A3=A1+A2
All Excel formulas
begin with an
equal sign.
A B C
1 10
2 5
3 15
The plus sign (+)
The minus sign (–)
The asterisk (*) to multiply
The slash (/) to divide
The percentage symbol (%)
The exponentiation symbol (^)
FORMULAS
Samples
=3+5
=8
=3*2
=6
FORMULAS
Samples
=6/2
=3
=2^3
=8
FORMULAS
Excel calculates
Multiplication
and division
before it
calculates
addition and
subtraction.
=3+5*2
=13
=(3+5)*2
=16
AUTOSUM
Home
 Autosum
Select the range or
Select the cell below the range
Press ENTER
A B C
1 10
2 5
3 5
4 20
AUTOSUM
+ AUTOFILL
A B C
1 10 12 20
2 5 7 5
3 15
A B C
1 10 12 20
2 5 7 5
3 15
Drag 
A B C
1 10 12 20
2 5 7 5
3 15 19 25
AUTOFILL Home
Editing
Fill
Series
EDIT A
FORMULA
F2
DOUBLE CLICK
A B C
1 10
2 5
3 15
OR PRESS F2
A B C D E
1 1 2 3 4 5
2 2
3 3
4 4
..
=A1+C3+E5
F2
A B C
1 20 3
2 6
3 4
4 10
FORMULA
TRACING
Formulas
Trace Precedents
Trace Dependents
Remove Arrows
Absolute
Relative
=$A$1
A relative cell reference adjusts to its new
location when the formula it’s copied and pasted.
An absolute cell reference doesn’t change, even
when the formula is copied and pastedelsewhere.
=A1
1 2 3 4
2 2
3 3
4 4
..
=$A1 1 1 1
2
3
4
=A$1 2 3 4
1
1
1
FIXED LINE
FIXED COLUMN
MIKE MIKE MILANO 20100
2 MILANO JOHN ANCONA 60100
3 20100
4 JOHN
5 ANCONA
6 60100
...
B1=INDIRECT("A" & ROW(A1)*3-2)
C1=INDIRECT("A" & ROW(B1)*3-1)
D1=INDIRECT("A" & ROW(C1)*3-0)
CHANGES
WITHOUT
FORMULAS
Home
Paste
Paste Special
SELECT CELL*
CTRL C
SELECT RANGE
Choose «Operation»
*Containing a number
MONITOR
CELLS FROM
ANYWHERE
FORMULAS
Watch Window
WATCH WINDOW
Monitor selected CELLS
from anywhere.
Creating functions.
OVER 400
FUNCTIONS
TYPES OF
FUNCTIONS
FINANCIAL
DATE & TIME
MATH & TRIGONOMETRY
STATISTICAL
LOOKUP & REFERENCE
TEXT & LOGICAL
INFORMATION
ENGINEERING
IF FUNCTION
An IF statement is a logical function that contains three
arguments. The first argument check if a specified condition is
met. If the condition is TRUE, the function returns the value
specified in the second argument; but if the condition is FALSE,
it returns the values specified in the third argument.
IF FUNCTION
=IF(TEST;IF TRUE;IF FALSE)
A B C
1 NAME EURO BONUS
2 MIKE 89 NO
3 JOHN 106 YES
4 DEBBY 99 NO
IF
FUNCTION
Condition is
EURO >100
IF
FUNCTION
if TRUE
Bonus = YES
if FALSE
Bonus = NO
=IF(B2<100;"NO";"YES")
A B C
1 NAME SCORE BONUS
2 MIKE 89 NO
3 JOHN 106 YES
4 DEBBY 99 NO
if SCORE <100 then Bonus = NO
if SCORE >100 then Bonus = YES
The agent will get a 10%
bonus on the achieved
amount.
+ DIFFICULT
=IF(C2="NO";0;B2*10%)
A B C D
1 NAME EURO BONUS AMOUNT
2 MIKE 89 NO 0
3 JOHN 106 YES 10,6
4 DEBBY 99 NO 0
if BONUS = NO then 0
if BONUS = YES then 10% of EURO
COUNT
FUNCTION
COUNT
# OF CELLS IN A
RANGE CONTAINING
NUMBERS
COUNTA
# OF CELLS IN A
RANGE NOT EMPTY
COUNT
FUNCTION
COUNTBLANK
# OF EMPTY CELLS
IN A RANGE
COUNTIF
# OF CELLS IN A
RANGE THAT MEETS
A CRITERIA
=COUNT(A1:A5)A
1 1
2 MIKE
3
4 4
5 5
= 3
=COUNTA(A1:A5)
= 4
=COUNTBLANK(A1:A5)
=COUNTIF(A1:A5;">3")
= 1
= 2
WEIGHTED
AVERAGE
€ gasoline # days
1 1,64 7
2 1,71 3
3 1,68 7
4 ... ...
5 ... ...
6 ... ...
7 ... ...
8 ... ...
9
10
=SUMPRODUCT(array1;array2)/SUM(array2)
STATUS BAR
FEATURES
A B C
1 50
2 45
3 60
4 90
Select the range
STATUS BAR
Right click on status
bar to customise what
numbers you need
CALCULATE
A RANK
A B C
1 MIKE 15 3
2 JOHN 23 1
3 DEBBY 18 2,5
4 ANNA 18 2,5
5 HENRY 12 4
=RANK.AVG(B1;$B$1;$B$5;0))
A B C
1 MIKE 23 1
2 JOHN 18 2,5
3 DEBBY 18 2,5
4 ANNA 15 3
5 HENRY 12 4
DATE
FUNCTIONS
=TODAY()
3/6/13
=NOW()
3/6/13 16:06
DATE
FUNCTIONS
=WEEKDAY(A1;2)
1
=WEEKNUM(A1;2)
A
1 03/06/2013
23
DATE
FUNCTIONS
=ROUNDUP(MONTH(A1)/3,0)
2
A
1 03/06/2013
QUARTERS
*custom format "Q"#
Q2*Right Click > Format Cells
CALCULATE
TODAYS
AGE
A B
1 6/11/71
2 6/6/2013 =today()
3 FORMULA
=INT((A2-A1)/365,25))
=INT(YEARFRAC(A1;A2))
=ROUND(A1;2)
= 1,42
ROUNDING
FUNCTIONS
A
1 1,4231
=ROUNDUP(A1;2)
= 1,43
=ROUNDDWON(A1;2)
= 1,42
=CEILING(A1;0,01)
= 1,43
=FLOOR(A1;0,01)
= 1,42
ROUNDING
FUNCTIONS
A
1 1,4231
=TRUNC(A1;3)
= 1,423
=INT(A1)
= 1
ROUNDING
FUNCTIONS
A
1 1,4231
ROUNDING
FUNCTIONS
A
1 1.478.356
=ROUNDDWON(A1;1-LEN(A1))
= 1.000.000
=ROUNDDWON(A1;2-LEN(A1))
= 1.400.000
=ROUNDDWON(A1;3-LEN(A1))
= 1.470.000
AVERAGE
COUNT
COUNTA
MAX
MIN
PRODUCT
STDEV.S
STDEV.P
SUM
1
2
3
4
5
6
7
8
9
1° value arguments
AGGREGATE
FUNCTION
VAR.S
VAR.P
MEDIAN
MODE.SNGL
LARGE
SMALL
PERCENTILE.INC
QUARTILE.INC
PERCENTILE.EXC
QUARTILE.EXC
10
11
12
13
14
15
16
17
18
19
=AGGREGATE(function;option;array)
AGGREGATE
FUNCTION
Ignore nested SUBTOTAL
Ignore hidden rows, nested SUBTOTAL
Ignore error values, nested SUBTOTAL
Ignore hidden rows, error values, nested SUBTOTAL
Ignore nothing
Ignore hidden rows
Ignore error values
Ignore hidden rows and error values
0
1
2
3
4
5
6
7
2° value arguments =AGGREGATE(function;option;array)
Ignore hidden rows and error values7
AVERAGE
COUNT
SUM
1
2
9
1° value arguments
2° value arguments
=AGGREGATE(1;7;array)
Name Test A Test B Change
Anna 84 87 3
Maria 81 83 2
John 74 #N/A #N/A
Frank 78 81 3
Sulley 76 79 3
Mary 81 77 -4
Mike 74 75 1
Jack 72 73 1
Andy 77 76 -1
Willy 70 82 12
AVG #N/A
AGGREGATE 2,2
=AGGREGATE(1;7;array)
= 2,2
It uses the AVERAGE
function but ignores the
hidden rows and error
values.
Income 58.640
Tax Rate 41%
Less Of More Of Tax %
- 15.000 23%
15.001 28.000 27%
28.001 55.000 38%
55.001 75.000 41%
75.000 - 43%
=VLOOKUP(B1;A5:C9;3)
The VLOOKUP and
HLOOKUP functions are
useful if you need to
return a value from a a
range by looking up
another value.
VLOOKUP
FUNCTION
0
Code 14021
Product Socks
Code Product
14015 Shoe
14016 Belt
14017 Sweater
14018 Polo
14019 T-Shirt
14020 Scarf
14021 Socks
14022 Undies
=VLOOKUP(B1;B5:B11;2;FALSE)
VLOOKUP
FUNCTION
Using FALSE will
return an #N/A in the
results.
FALSE requires an
exact match between
the Input CELL and the
Lookup RANGE.
=RAND()*100
Random # between 0 and 1
=ROUND((RAND()*100);0)
GENERATE
RANDOM
NUMBERS
=RAND()
Random number between 0 and 100
Random whole number between 0 and 100
Text Formatting.
TEXT
FUNCTIONS
UPPER
FILIPPO
LOWER
filippo
PROPER
Filippo
TEXT
FUNCTIONS
CONCATENATE*
Joins several strings
of test in one string
A B C
1 UGO UGHI UGO UGHI
2 MARIO ROSSI MARIO ROSSI
=CONCATENATE(A1;B1;...)
*Once you are happy with
the results always
remember to Paste Values.
TEXT
FUNCTIONS
LEFT (or) RIGHT
To extract text from a
string you can use
=LEFT(A1;5)
*Once you are happy with
the results always
remember to Paste Values.
MID
=MID(A1;7;10)
A B
1 20121 Milano LEFT = 20121
2 20121 Milano MID = Milano
20121 Milano
1 2 3 4 5 6 7
TRIM
FUNCTION
=TRIM(A1:A10)
Removes unwated
spaces in a cell
TURN OFF
AUTOMATIC
LINKS
File
Options
Proofing
Auto Correct Options
AutoFormat as You Type
Internet and network paths
*Right-click the cell and
choose Remove Hyperlink
from the shortcut menu.
TO OVERRIDE AN
AUTOCORRECTION
WHILE ENTERING THE INFORMATION
CTRL Z
INDENTING
Right Click > Format Cells
Add Indent
WRAP
TEXT
Beavis And Butthead
Home
Alignment
Wrap Text
Beavis And
Butthead
SHORTCUTS
FORMATTING
Number format with 2 decimal places, thousands separator
Time format with the hour and minute
Date format with the day, month, and year
Currency format with two decimal places
Percentage format with no decimal places
Exponential Number format with two decimal places
Ctrl + Shift + 1
Ctrl + Shift + 2
Ctrl + Shift + 3
Ctrl + Shift + 4
Ctrl + Shift + 5
Ctrl + Shift + 6
FORMAT
MENU
Home
Number
Right Click > Format Cells
Digit placeholder that displays only digits and not zeros
Displays the decimal point
Displays a percentage
Displays the thousands separator
Displays this character
Displays the next character in the format
Repeats the next character to fill the column width
Leaves a space equal to the width of the next character
Displays the text inside the double quotation marks
Serves as a text placeholder
Displays the characters in the specified color
(Black, Blue, Cyan, Green, Magenta, Red, White, Yellow)
#
.
%
,
$ – + / ( ) : space

*
_ (underscore)
“text”
@
[color]
CUSTOM
FORMATTING
CUSTOM
FORMATTING
1.457
*no decimal places
(1.457)
*for negative numbers
#.##;[Red]- #.##
CONVERT
FORMULAS
TO VALUES
Home
Paste
SELECT RANGE
CTRL C
Paste Values
*Or Right-click then select Paste Special…
CREATE
YOUR
STYLE
Home
Styles
Cell Styles
New Cell Style...
SELECT CELL
Conditional formatting.
FORMATTING
DATA BARS
DATA BARS
COLOR SCALES
ICONS SETS
FORMATTING
DATA BARS
DATA BARS
Yes of course she is 20%
Maybe, I am on tv? 10%
Are you kidding me? 45%
Absolutely not 25%
Is Ruby a cousin of PM Mubarack?
FORMATTING
DATA BARS
COLOR SCALES
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
gen-13 3 3 2 2 2 1 1 0 2 2 2 1 1 0 0 -0 -1 -1 -2 -2 -2 -3 -3 -4 -4 -4 -5 -5 -6 -6 -6
feb-13 -6 -4 -4 -3 -2 -1 -0 1 2 1 0 1 2 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 3
mar-13 3 2 5 3 6 7 4 6 4 6 6 7 7 7 7 8 8 8 9 9 9 10 10 10 10 11 11 11 12 12 12
apr-13 9 9 10 13 13 15 16 17 13 13 14 14 15 15 16 16 17 17 15 16 16 13 13 14 14 15 15 16 16 15
mag-13 15 15 18 16 17 19 17 18 15 16 17 18 15 15 16 16 17 17 15 16 16 17 17 18 18 19 19 20 20 21 21
giu-13 18 18 19 19 20 20 19 20 20 21 21 21 21 22 22 22 23 23 23 23 24 24 24 24 25 25 25 25 26 26
lug-13 23 23 23 23 24 24 21 21 21 21 22 21 21 21 21 20 23 24 24 24 24 25 25 25 25 26 26 26 26 27 27
ago-13 26 26 27 27 24 24 24 24 23 22 24 21 22 21 20 20 19 19 18 18 17 17 16 16 14 14 15 15 16 13 13
set-13 15 16 17 15 16 14 14 15 14 14 16 17 17 14 12 10 8 11 9 10 9 7 8 7 7 6 6 5 5 4 4
ott-13 7 5 6 6 6 7 4 6 4 6 6 7 7 7 7 8 8 8 9 9 9 10 10 10 10 9 10 9 8 6 5
nov-13 3 3 2 2 2 1 1 0 3 3 2 2 2 1 1 0 3 3 2 2 2 1 1 3 2 3 2 2 2 1
dic-13 3 2 2 2 1 3 3 3 2 2 2 1 1 0 0 -0 -1 -1 -2 -2 -2 -3 -3 -4 -4 -2 -3 -3 -4 -4 -3
FORMATTING
DATA BARS
ICON SETS
FORMATTING
DATA BARS
ICON SETS*
CHANNEL ADV A ADV B CHANGE
GOOGLE 75 85 10
FACEBOOK 106 114 8
YAHOO 45 40 -5
TWITTER 35 31 -4
YOUTUBE 80 80 0
VIRGILIO 24 48 24
OTHER 12 13 1
Home
Conditional Formatting
Manage Rules...
*Suppose we need to
highlight only a change of
+/- 3 from each columns.
Named constants.
A B
1 € 10.000 € 12.100
NAMED
COSTANTS
Formulas
Defined Names
B1=A1*Vat
Vat =(1+21%)
NAMED
COSTANTS
=TEXT(TODAY();"mmmm")
GIUGNO
Formulas
Defined Names
Define Name
mese=TEXT(TODAY();"mmmm")
Sorting data.
Month Sales
january 13
february 12
march 11
april 10
may 10
june 11
july 11
august 13
september 12
october 9
november 10
december 8
SORTING
DATA
Home
Data
Sort & Filter
Creating Charts.
CREATING
CHARTS
PROVIDE INTERESTING INFORMATION
USEFUL
UNDERSTANDABLE
IMMEDIATELY CLEAR
UNDISPUTABLE
DATA MUST BE ERROR PROOF
CREATING
CHARTS
Insert
Charts
Column Line Pie Bar Area
56 64
45
89
75
56 64
123
90
41 32 22
45 44
55
75
87
84
45 78
88
90
71
84
74
41
46
32
0
50
100
150
200
250
EMEA USA
CREATING
CHARTS BAR CHART
Select Series on Chart
Right click
Format Data Series
Adjust Bars Width
CREATING
CHARTS COMBINATION
CHART
56 64
45
89 75
56 64
123
90
41 32 22
45 44
55
75
87
84
45 78
88
90
71
84
74
41
46 32
13
12
11
10 10
11 11
13
12
9
10
8
7
6
0
2
4
6
8
10
12
14
0
50
100
150
200
250
EMEA USA ITALY
Different scales are
hard to compare. Is
best to do a 2 axis chart
with a different scale.
Select Series on Chart
Right click
13
12
11
10 10
11 11
13
12
9
10
8
7
6
4
6
8
10
12
14
16
ITALY
CREATING
CHARTS LINE CHART
Drag an image in Excel
Copy the Image
Resize appropriately
The marker can have different
shapes or even an image of your
choosing.
Select the series (or one marker)
Paste the Image
11
9
10
CHART
MENUS
CHART TOOLS
Design Menu
Layout Menu
Format Menu
CREATING
CHARTS
PIE CHART
Format Data Labels43%
26%
21%
7%
2%
Facebook Twitter
Instagram LinkedIn
Foursquare
Format Data Series
SAVING
A CHART
TEMPLATE
Create a Chart
Apply any formatting you like
Select (activate) the Chart
Chart Tools
Save As Template
Name it!
COPYING
A CHART
AS AN IMAGE
Home
Clipboard
Copy or CTRL+C
Paste in a graphics
program*
*quality may be different
CHART
IMAGE
SPARKLINE
GRAPHICS Insert
Sparklines*
Line
Column
Win/Loss
2010 2011 2012 2013
AAPL 270 300 510 450
GOOGL 400 450 580 871
MSFT 24 22 25 35
AMZN 90 150 180 269
2010 2011 2012 2013
AAPL 270 300 510 450
GOOGL 400 450 580 871
MSFT 24 22 25 35
AMZN 90 150 180 269
2010 2011 2012 2013
AAPL #N/A 11% 70% -12%
GOOGL #N/A 13% 29% 50%
MSFT #N/A -8% 14% 40%
AMZN #N/A 67% 20% 50%
*From Excel 2010 onward
CHART
LIKE
DIAGRAMS
gennaio 56 ******************
febbraio 64 *********************
marzo 45 ***************
aprile 89 *****************************
maggio 75 *************************
giugno 56 ******************
luglio 64 *********************
agosto 72 ************************
settembre 45 ***************
ottobre 41 *************
novembre 32 **********
dicembre 22 *******
=REPT("*";B2/3)
Gantt charts.
Henry Laurence Gantt (1861-1919) was
an American mechanical engineer and
management consultant who is best
known for developing the Gantt chart in
the 1910s. Gantt charts were employed
on major infrastructure projects
including the Hoover Dam and Interstate
highway system and continue to be an
important tool in project management.
MAKE A
GANTT
CHART
USING A
STACKED
BAR CREATE
A B C
1 TASK START DURATION
2 ANALYSIS 0 10
3 DESIGN 10 7
4 DELIVERY 17 10
0 5 10 15 20 25 30
Analysis
Design
Delivery
A stacked-bar chart with some «tweaking»
Range vs Tables.
TABLES Tables have many
advantages
CONTEXTUAL TABLE MENUS
QUICK STYLE FORMATTING
HEADER DROP-DOWN LIST
DATA FILTERS FOR EACH COLUMN
NO NEED TO FREEZE PANES
SUPPORT FOR PIVOT TABLES
TABLES
TOOLS
TOOLS MENU
Home
Format
Select Range/Cell
Format as a Table
*Right Click on Table > Select Table >
Convert to Range
TABLES
TOOLS
Easy access to
functions
Average
Count
Count #
Max
Min
Sum
StdDev
Var
More functions...
Pivot table.
PIVOT
TABLES
Insert
Pivot Table
Pivot Table
Pivot Chart
Select a range
of cells and
transform them
into a Table
PIVOT TABLE
PIVOT
TABLES
Regione Residenti %Italia (Kmq) %Italia2 Densità Comuni Province
Abruzzo 1.342.366 2,20% 10.795 3,60% 124,3 305 4
Basilicata 587.517 1,00% 9.995 3,30% 58,8 131 2
Calabria 2.011.395 3,30% 15.081 5,00% 133,4 409 5
Campania 5.834.056 9,60% 13.590 4,50% 429,3 551 5
Emilia-Romagna 4.432.418 7,30% 22.456 7,50% 197,4 348 9
Friuli-Venezia Giulia 1.235.808 2,00% 7.855 2,60% 157,3 218 4
Lazio 5.728.688 9,40% 17.208 5,70% 332,9 378 5
Liguria 1.616.788 2,70% 5.421 1,80% 298,2 235 4
Lombardia 9.917.714 16,40% 23.863 7,90% 415,6 1.544 12
Marche 1.565.335 2,60% 9.366 3,10% 167,1 239 5
Molise 319.780 0,50% 4.433 1,50% 72,1 136 2
Piemonte 4.457.335 7,40% 25.402 8,40% 175,5 1.206 8
Puglia 4.091.259 6,70% 19.371 6,40% 211,2 258 6
Sardegna 1.675.411 2,80% 24.089 8,00% 69,5 377 8
Sicilia 5.051.075 8,30% 25.703 8,50% 196,5 390 9
Toscana 3.749.813 6,20% 22.990 7,60% 163,1 287 10
Trentino-Alto Adige 1.037.114 1,70% 13.607 4,50% 76,2 333 2
Umbria 906.486 1,50% 8.456 2,80% 107,2 92 2
Valle d'Aosta 128.230 0,20% 3.263 1,10% 39,3 74 1
Veneto 4.937.854 8,10% 18.391 6,10% 268,5 581 7
Complex lists of data can be
summarised quicly with Pivot Tables
PIVOT
TABLES
Select any cell in the Table
PIVOT TABLE
Select Range (automatic)
Select Destination of Pivot
New Worksheet
Exixting Worksheet
Select Location
PIVOT
TABLES
Select fields for the Report
Row Labels Sum of # Province Row Labels Sum of Densità per Kmq Row Labels Sum of # Comuni
Abruzzo 4 Abruzzo 124,3 Abruzzo 305
Basilicata 2 Basilicata 58,8 Basilicata 131
Calabria 5 Calabria 133,4 Calabria 409
Campania 5 Campania 429,3 Campania 551
Emilia-Romagna 9 Emilia-Romagna 197,4 Emilia-Romagna 348
Friuli-Venezia Giulia 4 Friuli-Venezia Giulia 157,3 Friuli-Venezia Giulia 218
Lazio 5 Lazio 332,9 Lazio 378
Liguria 4 Liguria 298,2 Liguria 235
Lombardia 12 Lombardia 415,6 Lombardia 1544
Marche 5 Marche 167,1 Marche 239
Molise 2 Molise 72,1 Molise 136
Piemonte 8 Piemonte 175,5 Piemonte 1206
Puglia 6 Puglia 211,2 Puglia 258
Sardegna 8 Sardegna 69,5 Sardegna 377
Sicilia 9 Sicilia 196,5 Sicilia 390
Toscana 10 Toscana 163,1 Toscana 287
Trentino-Alto Adige 2 Trentino-Alto Adige 76,2 Trentino-Alto Adige 333
Umbria 2 Umbria 107,2 Umbria 92
Valle d'Aosta 1 Valle d'Aosta 39,3 Valle d'Aosta 74
Veneto 7 Veneto 268,5 Veneto 581
Grand Total 110 Grand Total 3693,4 Grand Total 8092
Excel & Word.
PASTING
OR
LINKING
PASTING
Will keep all
formatting and be
editable in Word
CTRL V
PASTING
OR
LINKING
LINKING
Whatever is
changed in Excel
will be reflected
in the Word
document
Home
Paste
Word
Paste Text Only
Paste Link
Paste Text w Formatting
Mail merge in Excel.
USING
EXCEL TO
SEND EMAILS
New File
Mailings
Word
Start Mail Merge
Email Messages
Mail Merge Wizard
Use current document
Browse File
Select you Excel File
Select appropriate Table
Write the Message
Insert Merge Fields
Dear «Name»
Happy «Age»th Birthday!
USING
EXCEL TO
SEND EMAILS
Mailings
Word
Finish & Merge
Send eMail Messages
Remember to add Subject Line
OK will send all email via Outlook
External data in Excel.
RETRIEVE
DATA FROM A
WEB PAGE
Data
From Web
Small Brower Opens
Insert Web Address
http://www.google.com/finance#
Select the TABLE you want
Import the Table
Printing workbooks.
IF IT’S IMPORTANT
IS NOT GONNA
WORK
VIEW
PAGE LAYOUT
Page Break Preview
Print Area
The End.
By Filippo Selden http://about.me/fselden

More Related Content

What's hot

Vulcan tutorial 01
Vulcan tutorial 01Vulcan tutorial 01
Vulcan tutorial 01
VR M
 
List Of Excel Shortcuts
List Of Excel ShortcutsList Of Excel Shortcuts
List Of Excel Shortcuts
Pabolu Pavan
 
Excel Shotcuts
Excel ShotcutsExcel Shotcuts
Excel Shotcuts
Raghu nath
 
Excel Keyboard Shortcuts
Excel Keyboard ShortcutsExcel Keyboard Shortcuts
Excel Keyboard Shortcuts
Vesna Miric
 

What's hot (20)

Structured query language functions
Structured query language functionsStructured query language functions
Structured query language functions
 
Sql query [select, sub] 4
Sql query [select, sub] 4Sql query [select, sub] 4
Sql query [select, sub] 4
 
Reports
ReportsReports
Reports
 
Vulcan tutorial 01
Vulcan tutorial 01Vulcan tutorial 01
Vulcan tutorial 01
 
List Of Excel Shortcuts
List Of Excel ShortcutsList Of Excel Shortcuts
List Of Excel Shortcuts
 
A bell curve
A bell curveA bell curve
A bell curve
 
Excel Shotcuts
Excel ShotcutsExcel Shotcuts
Excel Shotcuts
 
Excell vba
Excell vbaExcell vba
Excell vba
 
Sql wksht-5
Sql wksht-5Sql wksht-5
Sql wksht-5
 
Common SQL Programming Mistakes
Common SQL Programming MistakesCommon SQL Programming Mistakes
Common SQL Programming Mistakes
 
"Excelling in Excel" workshop
"Excelling in Excel" workshop"Excelling in Excel" workshop
"Excelling in Excel" workshop
 
all shortcuts of in Excel
all shortcuts of in Excelall shortcuts of in Excel
all shortcuts of in Excel
 
Xl shortcuts
Xl shortcutsXl shortcuts
Xl shortcuts
 
Programming the SQL Way with Common Table Expressions
Programming the SQL Way with Common Table ExpressionsProgramming the SQL Way with Common Table Expressions
Programming the SQL Way with Common Table Expressions
 
Sokkia set20 k
Sokkia set20 kSokkia set20 k
Sokkia set20 k
 
Excel Keyboard Shortcuts
Excel Keyboard ShortcutsExcel Keyboard Shortcuts
Excel Keyboard Shortcuts
 
5 format
5 format5 format
5 format
 
Message, Debugging, File Transfer and Type Group
Message, Debugging, File Transfer and Type GroupMessage, Debugging, File Transfer and Type Group
Message, Debugging, File Transfer and Type Group
 
Sql cheat sheet
Sql cheat sheetSql cheat sheet
Sql cheat sheet
 
Select To Order By
Select  To  Order BySelect  To  Order By
Select To Order By
 

Similar to To excel or not?

Excel Chapter 2 - Inserting Formulas in a Worksheet
Excel Chapter 2 - Inserting Formulas in a WorksheetExcel Chapter 2 - Inserting Formulas in a Worksheet
Excel Chapter 2 - Inserting Formulas in a Worksheet
dpd
 
MS_Excel_Module4.1 ffor beginners yo .pptx
MS_Excel_Module4.1 ffor beginners yo .pptxMS_Excel_Module4.1 ffor beginners yo .pptx
MS_Excel_Module4.1 ffor beginners yo .pptx
shagunjain2k22phdcs0
 

Similar to To excel or not? (20)

Mastering Excel Formulas and Functions
Mastering Excel Formulas and FunctionsMastering Excel Formulas and Functions
Mastering Excel Formulas and Functions
 
Answers To Selected Exercises For Fortran 90 95 For Scientists And Engineers
Answers To Selected Exercises For Fortran 90 95 For Scientists And EngineersAnswers To Selected Exercises For Fortran 90 95 For Scientists And Engineers
Answers To Selected Exercises For Fortran 90 95 For Scientists And Engineers
 
Excel Chapter 2 - Inserting Formulas in a Worksheet
Excel Chapter 2 - Inserting Formulas in a WorksheetExcel Chapter 2 - Inserting Formulas in a Worksheet
Excel Chapter 2 - Inserting Formulas in a Worksheet
 
cheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdfcheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdf
 
Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143
 
Excel advanced formulas
Excel advanced formulasExcel advanced formulas
Excel advanced formulas
 
Learning SAS by Example -A Programmer’s Guide by Ron CodySolution
Learning SAS by Example -A Programmer’s Guide by Ron CodySolutionLearning SAS by Example -A Programmer’s Guide by Ron CodySolution
Learning SAS by Example -A Programmer’s Guide by Ron CodySolution
 
Excel formula
Excel formulaExcel formula
Excel formula
 
MS_Excel_Module4.1 ffor beginners yo .pptx
MS_Excel_Module4.1 ffor beginners yo .pptxMS_Excel_Module4.1 ffor beginners yo .pptx
MS_Excel_Module4.1 ffor beginners yo .pptx
 
Spreadsheet for Year 8
Spreadsheet for Year 8Spreadsheet for Year 8
Spreadsheet for Year 8
 
Joins
JoinsJoins
Joins
 
Sort presentation
Sort presentationSort presentation
Sort presentation
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excel
 
Use of Excel Spreadsheets in Computing Grades
Use of Excel Spreadsheets in Computing GradesUse of Excel Spreadsheets in Computing Grades
Use of Excel Spreadsheets in Computing Grades
 
1670595076250.pdf
1670595076250.pdf1670595076250.pdf
1670595076250.pdf
 
SQL 🌟🌟🔥.pdf
SQL 🌟🌟🔥.pdfSQL 🌟🌟🔥.pdf
SQL 🌟🌟🔥.pdf
 
SQL learning notes and all code.pdf
SQL learning notes and all code.pdfSQL learning notes and all code.pdf
SQL learning notes and all code.pdf
 
Cheat sheet SQL commands with examples and easy understanding
Cheat sheet SQL commands with examples and easy understandingCheat sheet SQL commands with examples and easy understanding
Cheat sheet SQL commands with examples and easy understanding
 
CST2403 NOTES
CST2403 NOTESCST2403 NOTES
CST2403 NOTES
 
Overview Of Using Calculator
Overview Of Using CalculatorOverview Of Using Calculator
Overview Of Using Calculator
 

Recently uploaded

The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
heathfieldcps1
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
fonyou31
 

Recently uploaded (20)

Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 

To excel or not?