SlideShare a Scribd company logo
1 of 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

More Related Content

What's hot (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
 

Similar to 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
 

Similar to 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
 

More from 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
 
Conversion Rate Expectation
Conversion Rate ExpectationConversion Rate Expectation
Conversion Rate ExpectationRussell McAthy
 

More from 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
 

Recently uploaded

Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 

Recently uploaded (20)

Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 

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