SlideShare uma empresa Scribd logo
1 de 60
Why do you
hate Excel?
Russell McAthy
MeasureFest Oct 2013
Is it?
‱ Most people are self taught / taught by someone
self taught

‱ Its made by Microsoft and its “cool to hate them”
‱ It’s a “work” application
‱ You don’t know what you don’t know

‱ What version do you use?
‱ There are 8+ ways to sum two cells together!
YES – 8+
‱ A1 + B1
‱ SUM(A1,B1)
‱ SUM(A1:B1)
‱ SUBTOTAL(A1:B1)
‱ SUMIF

‱ SUMIFS

‱ SUM(OFFSET

‱ SUMPRODUCT
And these are the ones that I could remember..
Errors are no fun

DIV/0

N/A

#REF
!
The Issue:
Spreadsheets are only useful in context

How do I give you takeaways that will be actionable when you
go back to your office..

So here is 32+ Tips for Excel for
Marketers!
I’ve snuck in some extra tips at the end of the deck so check it
out on slideshare – links will be tweeted out after the event!
My Goal: Save everyone 5
mins a week

~800 of you
That’s 67 hours a week
That’s 3.5k hours a year
At £500 an hour

That’s £1.7 MILLION

You’re welcome!
In no particular order

Stop Merging Cells
Use Center Across Selection
Calculating Growth
Simple formula to remember growth % calculation

NEW / OLD - 1
Then format the cell as a % (percentage)
Eg.

546 Sales This year vs 410 sales last year
546 / 410 – 1 =
Calculating Growth
Simple formula to remember growth % calculation

NEW / OLD - 1
Then format the cell as a % (percentage)
Eg.

546 Sales This year vs 410 sales last year
546 / 410 – 1 =
Remove Gridlines
Don’t Select all cells and change to white!
Text to Columns
Great for breaking out URL’s into folders
Text to Columns
Great for breaking out URL’s into folders
Text to Columns
Great for breaking out URL’s into folders
Shortcut Keys
Shortcut

Action

CTRL + X

Cut

CTRL + C

Copy

CTRL + V

Paste

CTRL+arrow direction

Moves curser to end of data

Holding SHIFT

Highlights

Holding SHIFT + CTRL +
arrow direction

Highlights to end of data

CTRL + A

Highlights full section

F2

Edits current cell
Shortcut Keys (more)
Shortcut

Action

(hold) ALT then press E then
S


Paste Special

(as above) then V then Enter

Paste Special - Values

(as above) then T then Enter

Paste Special - Formats

(as above) then F then Enter

Paste Special - Formulas

CTRL + 1

Format Cell

CTRL + ; (semi colon)

Inserts todays date

ALT + =

Inserts SUM for column
Use Tables
If you’re using basic data – use tables
Pivot Tables are MAGIC
If you don’t use them already – learn! Its easy and makes data
manipulative
Pivot Tables are MAGIC
If you don’t use them already – learn! Its easy and makes data
manipulative
Pivot: Calculated Fields
Don’t do averages of averages! – Perfect for CVR
Pivot: Calculated Fields
Don’t do averages of averages! – Perfect for CVR
Formula Transposing
When you want to change the direction of a formula!
Formula Transposing
When you want to change the direction of a formula!
Lets look at some
formulas that might be
useful
Vlookup
“I have a table of data that I want to look up a value in”

= VLOOKUP ( A10 , D1:E10 , 2
, FALSE )

“The thing I want to look up”

“the list of things I’m looking it up
against”
“in the lookup table – what column do
we want to bring back”
“I don’t want excel to give me the
closest answer – but the accurate
answer”
Vlookup
“I have a table of data that I want to look up a value in”

= VLOOKUP ( A10 , D1:E10 , 2 ,
FALSE )

“The thing I want to look up”

“the list of things I’m looking it up
against”
“in the lookup table – what column do
we want to bring back”
“I don’t want excel to give me the
closest answer – but the accurate
answer”
Vlookup
“I have a table of data that I want to look up a value in”

= VLOOKUP ( A10 , D1:E10 , 2 ,
FALSE )

“The thing I want to look up”

“the list of things I’m looking it up
against”
“in the lookup table – what column do
we want to bring back”
“I don’t want excel to give me the
closest answer – but the accurate
answer”

you can also do
=HLOOKUP if the data is
formatted Horizontally
rather than Vertically
IF
“If something is true, then do this
otherwise do that”

= IF ( C3=“PPC” , “Paid Media” , “Other” )
“Is this true?”
“If its true – do this”

“If its false – do this”
IF
“If something is true, then do this
otherwise do that”

= IF ( C3=“PPC” , “Paid Media” , “Other” )
“Is this true?”
“If its true – do this”

“If its false – do this”
SUMIF
“Can I add up all values that match certain criteria”

= SUMIF ( A1:A40 , D4 , B1:B40 )
“The list of thinks I’m looking up against”
“the thing I’m looking up”

“the list of things to add when it
matches”
SUMIF
“Can I add up all values that match certain criteria”

= SUMIF ( A1:A40 , D4 , B1:B40 )
“The list of thinks I’m looking up against”
“the thing I’m looking up”

“the list of things to add when it
matches”
SUMIF
“Can I add up all values that match certain criteria”

= SUMIF ( A1:A40 , D4 , B1:B40 )
“The list of thinks I’m looking up against”
“the thing I’m looking up”

“the list of things to add when it
matches”

you can also do a
COUNTIF – which
counts the number of
values that match a
criteria
SUMIFS
“Can I add up all values that match certain MULTIPLE criteria”

= SUMIFS ( A1:A40 , B1:B40 , D1, C1:C40
, E1 )
“The things I want to add up”
“the ranges of data to look up
against”
“the things I’m looking up”
Yes
 that’s right it’s the
other fubbing way round
from SUMIF

Ok
there might be a
few occasions that excel
is annoying

SUMIFS
“Can I add up all values that match certain MULTIPLE criteria”

= SUMIFS ( A1:A40 , B1:B40 , D1, C1:C40
, E1 )
“The list of thinks I’m looking up against”
“the ranges of data to look up
against”
“the things I’m looking up”
SUMIFS
“Can I add up all values that match certain MULTIPLE criteria”

= SUMIFS ( A1:A40 , B1:B40 , D1, C1:C40
, E1 )
“The list of thinks I’m looking up against”
“the ranges of data to look up
against”
“the things I’m looking up”
MATCH
“How far down my data can I find this..”

= MATCH ( “A1005” , B3:38 , 0)
“The thing I’m looking for”
“the range of data to look up in”

“I want it to be an exact match”
MATCH
“How far down my data can I find this..”

= MATCH ( “A1005” , B3:38 , 0)
1
2
3
4
5

“The thing I’m looking for”
“the range of data to look up in”

“I want it to be an exact match”
OFFSET
“I want the value that is 30 rows down, 40 columns across”

= OFFSET ( A1 , 30 , 40 )
“Where do I want to start”
“how many rows”
“how many columns”
So
. how do we use
this?

you combine a
MATCH and an OFFSET
MATCH + OFFSET
“I want to see the number of sales when sales code is A1005”

= OFFSET ( Reference , MATCH() , MATCH() )
MATCH + OFFSET
“I want to see the number of sales when sales code is A1005”

= OFFSET ( Reference , MATCH() , MATCH() )

its flexible too

Thanks for
listening
If you have any questions please contact
me below
@therustybear
@stream20
www.russellmcathy.com
www.stream20.com

the stuff I probably
didn’t have time to go
through
Conditional Formatting
Visually represent trends / Highlight variances
Conditional Formatting
Visually represent trends / Highlight variances
Calculation Options
When working in a complex excel document – control when it
calculates!
Calculation Options
When working in a complex excel document – control when it
calculates!
Addons to Excel
Sometimes Excel is not enough!
‱ Powerpivot (if you’re using not using excel 2013)

‱ SEO Tools
‱ Excellent Analytics
‱ Adobe Report Builder

‱ Geoflow – looks exciting
‱ ExTweets – pulls tweets in
‱ SEOGadget for Excel
AND or/and OR
“I want both things to match” , “I want one of these things to match”

= AND ( C3=“PPC” , c4=“PPC” )
= OR ( C3=“Social” , c4=“PPC” )
Using AND or OR in a IF
allows you to match
multiple criteria

String Functions
Function

What it looks like

What it does

LEFT

=LEFT(A1,3)

Returns the first 3
characters

RIGHT

=RIGHT(A1,3)

Returns the last 3
characters

=MID(A1,3,3)

Returns 3 characters
starting at 3 characters
in

TRIM

=TRIM(A1)

Removes blank
characters (spaces) from
cell values

LEN

=LEN(A1)

How long is the string

CONCAT or &

=CONCAT(“fish”,”cake”) or
“fish”&”cake”

Joins two things
together

MID
Handy Date Functions
If A1 is todays date
.
What you want

Formula

Show the day of the week in 3
characters eg. Mon/Tue

=TEXT(A1,”ddd”)

First date of the week

=A1-WEEKDAY(A1)+1

First date of the year

=DATE(1,MONTH(A1),YEAR(A1))

Taking into consideration
working days

=WORKDAY(A1,7,0)

Translates date value into week
day number

=WEEKDAY(A1,2)

*be careful with weekdays – the number after the comma refers to the day the week
starts with (2 is Monday to Sunday)
Other Functions
Function

What it looks like

What it does

IFERROR

=IFERROR(A1/B1,0)

Instead of error message
returns a 0

UPPER

=UPPER(A1)

Changes the text value in
A1 to uppercase

LOWER

=LOWER(A1)

Changes the text value in
A1 to lowercase

PROPER

=PROPER(A1)

Changes the text value in
A1 to capitalisation at
the start of each word.

MAX

=MAX(A1:A10)

Provides the maximum
value in the range

=AVERAGE(A1:A10)

Calculates the mean
average of the range of
cells

AVERAGE
Excel does a
lot more

If you have any questions please contact
me below
@therustybear
@stream20
www.russellmcathy.com
www.stream20.com

Mais conteĂșdo relacionado

Mais procurados

Mais procurados (18)

Excel
ExcelExcel
Excel
 
Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143Excell%20basic%20training(3) 143
Excell%20basic%20training(3) 143
 
Excel 2007 - Create a chart
Excel 2007 - Create a chartExcel 2007 - Create a chart
Excel 2007 - Create a chart
 
Excel slide show
Excel slide showExcel slide show
Excel slide show
 
95 exceltipsv4
95 exceltipsv495 exceltipsv4
95 exceltipsv4
 
Microsoft excel (crv)
Microsoft excel (crv)Microsoft excel (crv)
Microsoft excel (crv)
 
Top 10 excel tips
Top 10 excel tipsTop 10 excel tips
Top 10 excel tips
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excel
 
MicrosoftÂź office excel a
MicrosoftÂź office excel aMicrosoftÂź office excel a
MicrosoftÂź office excel a
 
MS Excel Ch 1 PPT
MS Excel Ch 1 PPTMS Excel Ch 1 PPT
MS Excel Ch 1 PPT
 
Using Excel to Do Data Journalism - Steve Doig - Seattle NewsTrain - 11.11.17
Using Excel to Do Data Journalism - Steve Doig - Seattle NewsTrain - 11.11.17Using Excel to Do Data Journalism - Steve Doig - Seattle NewsTrain - 11.11.17
Using Excel to Do Data Journalism - Steve Doig - Seattle NewsTrain - 11.11.17
 
Advanced Excel Courses Mumbai
Advanced Excel Courses MumbaiAdvanced Excel Courses Mumbai
Advanced Excel Courses Mumbai
 
Advanced Excel Demo
Advanced Excel DemoAdvanced Excel Demo
Advanced Excel Demo
 
M.S EXCEL
M.S EXCELM.S EXCEL
M.S EXCEL
 
Excel ppt
Excel pptExcel ppt
Excel ppt
 
PPT On Microsoft Excel 2007 Full Information.
PPT On Microsoft Excel 2007 Full Information.PPT On Microsoft Excel 2007 Full Information.
PPT On Microsoft Excel 2007 Full Information.
 
NCompass Live: Excel for Librarians
NCompass Live: Excel for LibrariansNCompass Live: Excel for Librarians
NCompass Live: Excel for Librarians
 
20 Unique Uses of Excel Spreadsheets
20 Unique Uses of Excel Spreadsheets20 Unique Uses of Excel Spreadsheets
20 Unique Uses of Excel Spreadsheets
 

Semelhante a Excel for Marketers - Why do you hate Excel (#Measurefest 2013)

Introduction to excel - application to statistics
Introduction to excel - application to statisticsIntroduction to excel - application to statistics
Introduction to excel - application to statisticszavenger
 
intro-to-spreadsheets-with-excel (1).pptx
intro-to-spreadsheets-with-excel (1).pptxintro-to-spreadsheets-with-excel (1).pptx
intro-to-spreadsheets-with-excel (1).pptxANAMARIATAMAYODUQUE1
 
Cucci_-Excel_for_beginners_.pptx
Cucci_-Excel_for_beginners_.pptxCucci_-Excel_for_beginners_.pptx
Cucci_-Excel_for_beginners_.pptxHamid458506
 
Cucci_-Excel_for_beginners_ (1).pptx
Cucci_-Excel_for_beginners_ (1).pptxCucci_-Excel_for_beginners_ (1).pptx
Cucci_-Excel_for_beginners_ (1).pptxkokila60
 
Excel Training.pptx
Excel Training.pptxExcel Training.pptx
Excel Training.pptxssuser5cc925
 
MS excel and their functions keys and their usage
MS excel and their functions keys and their usageMS excel and their functions keys and their usage
MS excel and their functions keys and their usageshumailbashir82
 
1.2 Zep Excel.pptx
1.2 Zep Excel.pptx1.2 Zep Excel.pptx
1.2 Zep Excel.pptxPizzaM
 
Lesson 10 FUNCTIONS AND FORMULAS IN AN E.pptx
Lesson 10 FUNCTIONS AND FORMULAS IN AN E.pptxLesson 10 FUNCTIONS AND FORMULAS IN AN E.pptx
Lesson 10 FUNCTIONS AND FORMULAS IN AN E.pptxCristineJoyVillajuan
 
22-excel-basics-15511.ppt
22-excel-basics-15511.ppt22-excel-basics-15511.ppt
22-excel-basics-15511.ppt20ArnavKumar8F
 
The Excel ToolKit
The Excel ToolKitThe Excel ToolKit
The Excel ToolKitDan Nelson
 
Ms excel 2007 tutorial
Ms excel 2007 tutorialMs excel 2007 tutorial
Ms excel 2007 tutorialjks2010
 
Excel for research
Excel  for researchExcel  for research
Excel for researchJamalBhai
 
1a s4 i creating runcharts final
1a s4 i creating runcharts final1a s4 i creating runcharts final
1a s4 i creating runcharts finalABCiABUHB
 
100-Excel-Tips.pdf
100-Excel-Tips.pdf100-Excel-Tips.pdf
100-Excel-Tips.pdfBudSmoker2
 
A excel analysis toolpack -best
A excel analysis toolpack -bestA excel analysis toolpack -best
A excel analysis toolpack -bestBTCCARSIGKVBilaspur
 

Semelhante a Excel for Marketers - Why do you hate Excel (#Measurefest 2013) (20)

Introduction to excel - application to statistics
Introduction to excel - application to statisticsIntroduction to excel - application to statistics
Introduction to excel - application to statistics
 
PPT on Excel.pptx
PPT on Excel.pptxPPT on Excel.pptx
PPT on Excel.pptx
 
intro-to-spreadsheets-with-excel (1).pptx
intro-to-spreadsheets-with-excel (1).pptxintro-to-spreadsheets-with-excel (1).pptx
intro-to-spreadsheets-with-excel (1).pptx
 
ms-excel.pptx
ms-excel.pptxms-excel.pptx
ms-excel.pptx
 
Cucci_-Excel_for_beginners_.pptx
Cucci_-Excel_for_beginners_.pptxCucci_-Excel_for_beginners_.pptx
Cucci_-Excel_for_beginners_.pptx
 
Cucci_-Excel_for_beginners_ (1).pptx
Cucci_-Excel_for_beginners_ (1).pptxCucci_-Excel_for_beginners_ (1).pptx
Cucci_-Excel_for_beginners_ (1).pptx
 
Excel Training.pptx
Excel Training.pptxExcel Training.pptx
Excel Training.pptx
 
MS excel and their functions keys and their usage
MS excel and their functions keys and their usageMS excel and their functions keys and their usage
MS excel and their functions keys and their usage
 
1.2 Zep Excel.pptx
1.2 Zep Excel.pptx1.2 Zep Excel.pptx
1.2 Zep Excel.pptx
 
Lesson 10 FUNCTIONS AND FORMULAS IN AN E.pptx
Lesson 10 FUNCTIONS AND FORMULAS IN AN E.pptxLesson 10 FUNCTIONS AND FORMULAS IN AN E.pptx
Lesson 10 FUNCTIONS AND FORMULAS IN AN E.pptx
 
22-excel-basics-15511.ppt
22-excel-basics-15511.ppt22-excel-basics-15511.ppt
22-excel-basics-15511.ppt
 
The Excel ToolKit
The Excel ToolKitThe Excel ToolKit
The Excel ToolKit
 
Ms excel 2007 tutorial
Ms excel 2007 tutorialMs excel 2007 tutorial
Ms excel 2007 tutorial
 
MicrosoftExcel
MicrosoftExcelMicrosoftExcel
MicrosoftExcel
 
Excel for research
Excel  for researchExcel  for research
Excel for research
 
1a s4 i creating runcharts final
1a s4 i creating runcharts final1a s4 i creating runcharts final
1a s4 i creating runcharts final
 
100-Excel-Tips.pdf
100-Excel-Tips.pdf100-Excel-Tips.pdf
100-Excel-Tips.pdf
 
Office
OfficeOffice
Office
 
Tech training workshop 3 final 090810
Tech training   workshop 3 final 090810Tech training   workshop 3 final 090810
Tech training workshop 3 final 090810
 
A excel analysis toolpack -best
A excel analysis toolpack -bestA excel analysis toolpack -best
A excel analysis toolpack -best
 

Mais de Russell McAthy

Smart Attribution + Cross Device - #SMXMunich 2017 - www.cubed.ai
Smart Attribution + Cross Device - #SMXMunich 2017 - www.cubed.aiSmart Attribution + Cross Device - #SMXMunich 2017 - www.cubed.ai
Smart Attribution + Cross Device - #SMXMunich 2017 - www.cubed.aiRussell McAthy
 
Digital Attribution - should we care? - #SAScon @therustybear
Digital Attribution - should we care? - #SAScon @therustybearDigital Attribution - should we care? - #SAScon @therustybear
Digital Attribution - should we care? - #SAScon @therustybearRussell McAthy
 
Market Place Opportunity and Competitor Research #eMetrics San Fransisco - ...
Market Place Opportunity and Competitor Research   #eMetrics San Fransisco - ...Market Place Opportunity and Competitor Research   #eMetrics San Fransisco - ...
Market Place Opportunity and Competitor Research #eMetrics San Fransisco - ...Russell McAthy
 
Web Summit 2014 #WebSummit2014 - Digital Analytics "What to Know" - @therusty...
Web Summit 2014 #WebSummit2014 - Digital Analytics "What to Know" - @therusty...Web Summit 2014 #WebSummit2014 - Digital Analytics "What to Know" - @therusty...
Web Summit 2014 #WebSummit2014 - Digital Analytics "What to Know" - @therusty...Russell McAthy
 
Attribution panel
Attribution panelAttribution panel
Attribution panelRussell McAthy
 
Conversion Rate Expectation
Conversion Rate ExpectationConversion Rate Expectation
Conversion Rate ExpectationRussell McAthy
 

Mais de Russell McAthy (6)

Smart Attribution + Cross Device - #SMXMunich 2017 - www.cubed.ai
Smart Attribution + Cross Device - #SMXMunich 2017 - www.cubed.aiSmart Attribution + Cross Device - #SMXMunich 2017 - www.cubed.ai
Smart Attribution + Cross Device - #SMXMunich 2017 - www.cubed.ai
 
Digital Attribution - should we care? - #SAScon @therustybear
Digital Attribution - should we care? - #SAScon @therustybearDigital Attribution - should we care? - #SAScon @therustybear
Digital Attribution - should we care? - #SAScon @therustybear
 
Market Place Opportunity and Competitor Research #eMetrics San Fransisco - ...
Market Place Opportunity and Competitor Research   #eMetrics San Fransisco - ...Market Place Opportunity and Competitor Research   #eMetrics San Fransisco - ...
Market Place Opportunity and Competitor Research #eMetrics San Fransisco - ...
 
Web Summit 2014 #WebSummit2014 - Digital Analytics "What to Know" - @therusty...
Web Summit 2014 #WebSummit2014 - Digital Analytics "What to Know" - @therusty...Web Summit 2014 #WebSummit2014 - Digital Analytics "What to Know" - @therusty...
Web Summit 2014 #WebSummit2014 - Digital Analytics "What to Know" - @therusty...
 
Attribution panel
Attribution panelAttribution panel
Attribution panel
 
Conversion Rate Expectation
Conversion Rate ExpectationConversion Rate Expectation
Conversion Rate Expectation
 

Último

Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...gurkirankumar98700
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 

Último (20)

Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 

Excel for Marketers - Why do you hate Excel (#Measurefest 2013)

  • 1. Why do you hate Excel? Russell McAthy MeasureFest Oct 2013
  • 2. Is it? ‱ Most people are self taught / taught by someone self taught ‱ Its made by Microsoft and its “cool to hate them” ‱ It’s a “work” application ‱ You don’t know what you don’t know ‱ What version do you use? ‱ There are 8+ ways to sum two cells together!
  • 3. YES – 8+ ‱ A1 + B1 ‱ SUM(A1,B1) ‱ SUM(A1:B1) ‱ SUBTOTAL(A1:B1) ‱ SUMIF
 ‱ SUMIFS
 ‱ SUM(OFFSET
 ‱ SUMPRODUCT And these are the ones that I could remember..
  • 4. Errors are no fun DIV/0 N/A #REF !
  • 5. The Issue: Spreadsheets are only useful in context
 How do I give you takeaways that will be actionable when you go back to your office.. So here is 32+ Tips for Excel for Marketers! I’ve snuck in some extra tips at the end of the deck so check it out on slideshare – links will be tweeted out after the event!
  • 6. My Goal: Save everyone 5 mins a week
 ~800 of you That’s 67 hours a week That’s 3.5k hours a year At ÂŁ500 an hour
 That’s ÂŁ1.7 MILLION You’re welcome!
  • 7. In no particular order

  • 8. Stop Merging Cells Use Center Across Selection
  • 9. Calculating Growth Simple formula to remember growth % calculation NEW / OLD - 1 Then format the cell as a % (percentage) Eg. 546 Sales This year vs 410 sales last year 546 / 410 – 1 =
  • 10. Calculating Growth Simple formula to remember growth % calculation NEW / OLD - 1 Then format the cell as a % (percentage) Eg. 546 Sales This year vs 410 sales last year 546 / 410 – 1 =
  • 11. Remove Gridlines Don’t Select all cells and change to white!
  • 12. Text to Columns Great for breaking out URL’s into folders
  • 13. Text to Columns Great for breaking out URL’s into folders
  • 14. Text to Columns Great for breaking out URL’s into folders
  • 15. Shortcut Keys Shortcut Action CTRL + X Cut CTRL + C Copy CTRL + V Paste CTRL+arrow direction Moves curser to end of data Holding SHIFT Highlights Holding SHIFT + CTRL + arrow direction Highlights to end of data CTRL + A Highlights full section F2 Edits current cell
  • 16. Shortcut Keys (more) Shortcut Action (hold) ALT then press E then S
 Paste Special (as above) then V then Enter Paste Special - Values (as above) then T then Enter Paste Special - Formats (as above) then F then Enter Paste Special - Formulas CTRL + 1 Format Cell CTRL + ; (semi colon) Inserts todays date ALT + = Inserts SUM for column
  • 17. Use Tables If you’re using basic data – use tables
  • 18. Pivot Tables are MAGIC If you don’t use them already – learn! Its easy and makes data manipulative
  • 19. Pivot Tables are MAGIC If you don’t use them already – learn! Its easy and makes data manipulative
  • 20. Pivot: Calculated Fields Don’t do averages of averages! – Perfect for CVR
  • 21. Pivot: Calculated Fields Don’t do averages of averages! – Perfect for CVR
  • 22. Formula Transposing When you want to change the direction of a formula!
  • 23. Formula Transposing When you want to change the direction of a formula!
  • 24. Lets look at some formulas that might be useful
  • 25. Vlookup “I have a table of data that I want to look up a value in” = VLOOKUP ( A10 , D1:E10 , 2 , FALSE ) “The thing I want to look up” “the list of things I’m looking it up against” “in the lookup table – what column do we want to bring back” “I don’t want excel to give me the closest answer – but the accurate answer”
  • 26. Vlookup “I have a table of data that I want to look up a value in” = VLOOKUP ( A10 , D1:E10 , 2 , FALSE ) “The thing I want to look up” “the list of things I’m looking it up against” “in the lookup table – what column do we want to bring back” “I don’t want excel to give me the closest answer – but the accurate answer”
  • 27. Vlookup “I have a table of data that I want to look up a value in” = VLOOKUP ( A10 , D1:E10 , 2 , FALSE ) “The thing I want to look up” “the list of things I’m looking it up against” “in the lookup table – what column do we want to bring back” “I don’t want excel to give me the closest answer – but the accurate answer”
  • 28. 
you can also do =HLOOKUP if the data is formatted Horizontally rather than Vertically
  • 29. IF “If something is true, then do this
otherwise do that” = IF ( C3=“PPC” , “Paid Media” , “Other” ) “Is this true?” “If its true – do this” “If its false – do this”
  • 30. IF “If something is true, then do this
otherwise do that” = IF ( C3=“PPC” , “Paid Media” , “Other” ) “Is this true?” “If its true – do this” “If its false – do this”
  • 31. SUMIF “Can I add up all values that match certain criteria” = SUMIF ( A1:A40 , D4 , B1:B40 ) “The list of thinks I’m looking up against” “the thing I’m looking up” “the list of things to add when it matches”
  • 32. SUMIF “Can I add up all values that match certain criteria” = SUMIF ( A1:A40 , D4 , B1:B40 ) “The list of thinks I’m looking up against” “the thing I’m looking up” “the list of things to add when it matches”
  • 33. SUMIF “Can I add up all values that match certain criteria” = SUMIF ( A1:A40 , D4 , B1:B40 ) “The list of thinks I’m looking up against” “the thing I’m looking up” “the list of things to add when it matches”
  • 34. 
you can also do a COUNTIF – which counts the number of values that match a criteria
  • 35. SUMIFS “Can I add up all values that match certain MULTIPLE criteria” = SUMIFS ( A1:A40 , B1:B40 , D1, C1:C40 , E1 ) “The things I want to add up” “the ranges of data to look up against” “the things I’m looking up”
  • 36. Yes
 that’s right it’s the other fubbing way round from SUMIF

  • 37. Ok
there might be a few occasions that excel is annoying

  • 38. SUMIFS “Can I add up all values that match certain MULTIPLE criteria” = SUMIFS ( A1:A40 , B1:B40 , D1, C1:C40 , E1 ) “The list of thinks I’m looking up against” “the ranges of data to look up against” “the things I’m looking up”
  • 39. SUMIFS “Can I add up all values that match certain MULTIPLE criteria” = SUMIFS ( A1:A40 , B1:B40 , D1, C1:C40 , E1 ) “The list of thinks I’m looking up against” “the ranges of data to look up against” “the things I’m looking up”
  • 40. MATCH “How far down my data can I find this..” = MATCH ( “A1005” , B3:38 , 0) “The thing I’m looking for” “the range of data to look up in” “I want it to be an exact match”
  • 41. MATCH “How far down my data can I find this..” = MATCH ( “A1005” , B3:38 , 0) 1 2 3 4 5 “The thing I’m looking for” “the range of data to look up in” “I want it to be an exact match”
  • 42. OFFSET “I want the value that is 30 rows down, 40 columns across” = OFFSET ( A1 , 30 , 40 ) “Where do I want to start” “how many rows” “how many columns”
  • 43. So
. how do we use this?
  • 44. 
you combine a MATCH and an OFFSET
  • 45. MATCH + OFFSET “I want to see the number of sales when sales code is A1005” = OFFSET ( Reference , MATCH() , MATCH() )
  • 46. MATCH + OFFSET “I want to see the number of sales when sales code is A1005” = OFFSET ( Reference , MATCH() , MATCH() )
  • 48. Thanks for listening If you have any questions please contact me below @therustybear @stream20 www.russellmcathy.com www.stream20.com
  • 49. 
the stuff I probably didn’t have time to go through
  • 50. Conditional Formatting Visually represent trends / Highlight variances
  • 51. Conditional Formatting Visually represent trends / Highlight variances
  • 52. Calculation Options When working in a complex excel document – control when it calculates!
  • 53. Calculation Options When working in a complex excel document – control when it calculates!
  • 54. Addons to Excel Sometimes Excel is not enough! ‱ Powerpivot (if you’re using not using excel 2013) ‱ SEO Tools ‱ Excellent Analytics ‱ Adobe Report Builder ‱ Geoflow – looks exciting ‱ ExTweets – pulls tweets in ‱ SEOGadget for Excel
  • 55. AND or/and OR “I want both things to match” , “I want one of these things to match” = AND ( C3=“PPC” , c4=“PPC” ) = OR ( C3=“Social” , c4=“PPC” )
  • 56. Using AND or OR in a IF allows you to match multiple criteria

  • 57. String Functions Function What it looks like What it does LEFT =LEFT(A1,3) Returns the first 3 characters RIGHT =RIGHT(A1,3) Returns the last 3 characters =MID(A1,3,3) Returns 3 characters starting at 3 characters in TRIM =TRIM(A1) Removes blank characters (spaces) from cell values LEN =LEN(A1) How long is the string CONCAT or & =CONCAT(“fish”,”cake”) or “fish”&”cake” Joins two things together MID
  • 58. Handy Date Functions If A1 is todays date
. What you want Formula Show the day of the week in 3 characters eg. Mon/Tue =TEXT(A1,”ddd”) First date of the week =A1-WEEKDAY(A1)+1 First date of the year =DATE(1,MONTH(A1),YEAR(A1)) Taking into consideration working days =WORKDAY(A1,7,0) Translates date value into week day number =WEEKDAY(A1,2) *be careful with weekdays – the number after the comma refers to the day the week starts with (2 is Monday to Sunday)
  • 59. Other Functions Function What it looks like What it does IFERROR =IFERROR(A1/B1,0) Instead of error message returns a 0 UPPER =UPPER(A1) Changes the text value in A1 to uppercase LOWER =LOWER(A1) Changes the text value in A1 to lowercase PROPER =PROPER(A1) Changes the text value in A1 to capitalisation at the start of each word. MAX =MAX(A1:A10) Provides the maximum value in the range =AVERAGE(A1:A10) Calculates the mean average of the range of cells AVERAGE
  • 60. Excel does a lot more
 If you have any questions please contact me below @therustybear @stream20 www.russellmcathy.com www.stream20.com