SlideShare a Scribd company logo
ERIC METELKA, MBA, PRODUCT MANAGER @ POWERREVIEWS
ADVANCED MICROSOFT
EXCEL
AGENDA
‣ INTRODUCTIONS
‣ ANCHORING CELLS
‣ FUNCTIONS FOR SUMMARIZING DATA
‣ SORTING AND FILTERING
‣ USING TEXT AND TIME FUNCTIONS
‣ PIVOT TABLES
‣ CLOSING: RECAP, QUESTIONS
ANCHORING CELLS
ADVANCED MICROSOFT EXCEL
ADVANCED MICROSOFT EXCEL
‣ HOLDS A CELL/ROW/COLUMN POSITION FOR FUTURE USE
‣ REPRESENTED BY A ‘$’
‣ EFFICIENT WHEN COPYING FORMULAS
ANCHORING CELLS F4 ⌘ T
ANCHORING CELLS
2011 2012 2013 2014
Revenue $10 $12 $15 $20
Growth (2011) 20% 50% 100%
ADVANCED MICROSOFT EXCEL
ANCHORING CELLS
2011 2012 2013 2014
Revenue $10 $12 $15 $20
Growth (2011) 20% 50% 100%
ADVANCED MICROSOFT EXCEL
=(C2-B2)/B2
ANCHORING CELLS
2011 2012 2013 2014
Revenue $10 $12 $15 $20
Growth (2011) 20% 50% 100%
ADVANCED MICROSOFT EXCEL
=(C2-$B$2)/$B$2
WANT TO REUSE THIS CELL
ANCHORING CELLS
2011 2012 2013 2014
Revenue $10 $12 $15 $20
Growth (2011) 20% 50% 100%
ADVANCED MICROSOFT EXCEL
=(C2-$B$2)/$B$2 =(D2-$B$2)/$B$2
ANCHORING CELLS
2011 2012 2013 2014
Revenue $10 $12 $15 $20
Growth (2011) 20% 50% 100%
ADVANCED MICROSOFT EXCEL
=(C2-$B$2)/$B$2 =(D2-$B$2)/$B$2 =(E2-$B$2)/$B$2
ADVANCED MICROSOFT EXCEL
‣ FILL FORMULA RIGHT FROM CELL LEFT
‣ FILL FORMULA DOWN FROM CELL DOWN
‣ MOVE TO EDGE OF DATA REGION
‣ UP
‣ DOWN
‣ LEFT
‣ RIGHT
ANCHORING CELLS - KEYBOARD SHORTCUTS
Ctrl ⌃ R
Ctrl ⌃ D
R
D
Ctrl ⌃ ⬆⬆
Ctrl ⌃ ⬇⬇
Ctrl ⌃ ⬅⬅
Ctrl ⌃ ➡➡
ADVANCED MICROSOFT EXCEL
‣ PRACTICE NAVIGATING YOUR WORKSHEET WITHOUT USING ONLY THE KEYBOARD
‣ WHAT HAPPENS IF YOU CHANGE THE FORMULA TO ONLY ANCHOR A ROW?
‣ WHAT HAPPENS IF YOU CHANGE THE FORMULA TO ONLY ANCHOR A COLUMN?
CLASS EXERCISE ONE
FUNCTIONS FOR SUMMARIZING
DATA
ADVANCED MICROSOFT EXCEL
ADVANCED MICROSOFT EXCEL
‣ USE TO SUM OR COUNT THE NUMBER OF COMMON ITEMS
COUNTIF AND SUMIF
6
20
5
8 11
4
2
9
12
‣ COUNTIF(CIRCLES, YELLOW) = ?
‣ SUMIF(CIRCLES,BLUE,AMOUNT) = ?
ADVANCED MICROSOFT EXCEL
‣ USE TO SUM OR COUNT THE NUMBER OF COMMON ITEMS
COUNTIF AND SUMIF
‣ COUNTIF(CIRCLES, YELLOW) = 5
‣ SUMIF(CIRCLES,BLUE,AMOUNT) = 27
6
20
5
8 11
4
2
9
12
ADVANCED MICROSOFT EXCEL
‣ A HIGHER LEVEL OF SUMMARIZING DATA - ALLOWS YOU TO ADD A CONDITION
‣ THINK OF AS SUM WITHIN SUMIF AND COUNT WITHIN COUNTIF
‣ WHEN TO USE: DATA HAS MULTIPLE ATTRIBUTES THAT YOU WANT TO COMPILE IN A SINGLE SUM
COUNTIF AND SUMIF
ADVANCED MICROSOFT EXCEL
‣ =COUNTIF(RANGE,CRITERIA)
‣ =SUMIF(RANGE,CRITERIA,[SUM_RANGE])
COUNTIF AND SUMIF - SYNTAX
ADVANCED MICROSOFT EXCEL
‣ =COUNTIF(RANGE,CRITERIA)
‣ =SUMIF(RANGE,CRITERIA,[SUM_RANGE])
‣ SUPER ADVANCED MICROSOFT EXCEL: COUNTIFS AND SUMIFS
COUNTIF AND SUMIF - SYNTAX
ADVANCED MICROSOFT EXCEL
‣ “LOOKS UP” THE VALUE ASSOCIATED WITH A ROW IN A TABLE
‣ WHEN TO USE: CREATING A NEW DATA TABLE THAT PICKS AND CHOOSES VALUES FROM ANOTHER TABLE
‣ NOTE: DOES NOT SUMMARIZE, ONLY RETURNS A SINGLE ROW
VLOOKUP
ADVANCED MICROSOFT EXCEL
‣ =VLOOKUP(LOOKUP_VALUE,TABLE_ARRAY,COL_INDEX_NUMBER,[RANGE_LOOKUP])
‣ NOTES:
‣ TABLE_ARRAY - THIS IS A RANGE. MAKE SURE TO ANCHOR CELLS!
‣ COL_INDEX_NUMBER - FIRST COLUMN IS 0.
‣ RANGE_LOOKUP - TRUE = APPROXIMATE MATCH. FALSE = EXACT MATCH. ALMOST ALWAYS USE FALSE!
VLOOKUP - SYNTAX
ADVANCED MICROSOFT EXCEL
‣ MATCH: RETURNS THE RELATIVE POSITION OF AN ITEM IN AN ARRAY
‣ INDEX: RETURNS THE VALUE AT A CELL INTERSECTION
‣ USE TOGETHER AS AN ALTERNATIVE TO VLOOKUP - MORE FLEXIBLE THAN VLOOKUP BUT ALSO MORE COMPLICATED
INDEX/MATCH
ADVANCED MICROSOFT EXCEL
‣ =MATCH(LOOKUP_VALUE,TABLE_ARRAY,[MATCH_TYPE])
‣ NOTES:
‣ TABLE ARRAY IS A SINGLE COLUMN
‣ MATCH_TYPE IS -1, 0, OR 1
‣ IF 1, FINDS THE LARGEST VALUE <= TO LOOKUP VALUE
‣ IF 0, FINDS THE FIRST EXACT MATCH
‣ IF -1, FINDS THE SMALLEST VALUE >= TO LOOKUP VALUE
MATCH - SYNTAX
ADVANCED MICROSOFT EXCEL
‣ =INDEX(ARRAY,ROW_NUM,[COLUMN_NUM])
‣ NOTES:
‣ ARRAY IS A SINGLE COLUMN
‣ ROW_NUM - FIRST COLUMN IS 0.
‣ COLUMN_NUM - OPTIONAL AND USUALLY NOT NECESSARY
INDEX - SYNTAX
ADVANCED MICROSOFT EXCEL
‣ =INDEX(ARRAY,MATCH(LOOKUP_VALUE,TABLE_ARRAY,[MATCH_TYPE]))
‣ MATCH ACTS AS THE ROW NUMBER
‣ SAME NUMBER OF ARGUMENTS AS VLOOKUP!
INDEX/MATCH - SYNTAX
ADVANCED MICROSOFT EXCEL
‣ USING FUNCTIONS SUMMARIZE NAME DATA BY STATE, DEMO GROUP, AND ITEMS DELIVERED
‣ 1241 SUNDOWN WAY - LOOKUP THE FIRST NAME, LAST NAME, ZIP CODE, AND DEMO GROUP
CLASS EXERCISE TWO
SORTING AND FILTERING
ADVANCED MICROSOFT EXCEL
ADVANCED MICROSOFT EXCEL
‣ ONE CLICK WILL SORT SMALL TO LARGE OR LARGE TO SMALL
‣ USE CUSTOM SORTING WHEN THE DATA TO BE SORTED IS IN MULTIPLE COLUMNS
‣ USE COLUMN HEADERS SO THAT FIRST DATA POINT IS NOT ‘LOST’ IN THE SORTING
SORTING
ADVANCED MICROSOFT EXCEL
‣ HELPFUL TOOL FOR DATA MINING
‣ LEAVE CHECKBOXES FOR DATA YOU WANT DISPLAYED
‣ WHEN USING DATES, EXCEL CREATES LEVEL OF DATA THAT CAN BE FILTERED
FILTERING
ADVANCED MICROSOFT EXCEL
‣ HELPFUL TOOL FOR DATA MINING
‣ LEAVE CHECKBOXES FOR DATA YOU WANT DISPLAYED
‣ WHEN USING DATES, EXCEL CREATES LEVEL OF DATA THAT CAN BE FILTERED
‣ REMOVE DUPLICATES - HIGHLIGHT TABLE AND WILL REMOVE ROWS THAT ARE EXACTLY THE SAME. FOUND IN THE
DATA TAB.
FILTERING
ADVANCED MICROSOFT EXCEL
‣ PRACTICE SORTING AND FILTERING NAME DATA
CLASS EXERCISE THREE
TEXT AND TIME FUNCTIONS
ADVANCED MICROSOFT EXCEL
ADVANCED MICROSOFT EXCEL
‣ LEFT(TEXT,[NUM_CHARS])
‣ SAME FOR RIGHT
‣ WHEN TO USE - WHEN YOU ONLY WANT CHARACTERS THAT BEGIN OR END TEXT IN A CELL
‣ I.E. THE ZIP CODE AT THE END OF AN ADDRESS
LEFT RIGHT
ADVANCED MICROSOFT EXCEL
‣ MID(TEXT,START_NUM,NUM_CHARS)
‣ WHEN TO USE - WHEN YOU ONLY WANT CHARACTERS IN THE MIDDLE OF TEXT IN A CELL
MID
ADVANCED MICROSOFT EXCEL
‣ TRIM(TEXT)
‣ REMOVE BLANK SPACES AT THE BEGINNING OR END OF A STRING
‣ COMMON PROBLEM WHEN TRANSFERRING DATA FROM ONE
PROGRAM TO ANOTHER
TRIM
FIND
‣ FIND(FIND_TEXT,WITHIN_TEXT,[START_NUM])
‣ HELPFUL WHEN NEEDED DATA IS EMBEDDED WITHIN A COMPLETE
STRING E.G. ZIP CODE WITHIN AN ADDRESS
ADVANCED MICROSOFT EXCEL
‣ EXCEL USES DAY AS ITS MEASURE OF TIME
‣ RETURNS A DATE WITH AN INTEGER VALUE AND A TIME AS A DECIMAL VALUE
‣ USE THE NOW FUNCTION TO MEASURE THE DIFFERENCE OF THE CURRENT DATE AND A PREVIOUS DATE
NOW()
ADVANCED MICROSOFT EXCEL
‣ DATE(YEAR,MONTH,DAY)
‣ ALLOWS CONVERSION OF DATES SHOWN AS TEXT TO 

NUMBER
DATE
INT
‣ FIND(FIND_TEXT,WITHIN_TEXT,[START_NUM])
‣ REMOVES THE DECIMAL (TIME) PORTION FROM A DATE
DIFFERENCE, LEAVING THE INTEGER (DATE) PORTION
ADVANCED MICROSOFT EXCEL
‣ USE NOW FUNCTION TO TRACK HOW MUCH TIME HAS PASSED SINCE NAMES WERE DELIVERED
‣ TRIM ADDRESSES TO SHOW STREET NUMBER AND STREET IN SEPARATE FIELDS
CLASS EXERCISE FOUR
PIVOT TABLES
ADVANCED MICROSOFT EXCEL
ADVANCED MICROSOFT EXCEL
‣ CREATES A DRAG AND DROP TABLE BASED ON YOUR DATA - LETS YOU QUICKLY ANALYZE MANY ROWS OF DATA AS IF
IT WERE A DATABASE, WITHOUT THE DATABASE.
‣ FOUND ON DATA TAB
‣ SELECT ALL DATA AND PRESS BUTTON
PIVOTTABLES
ADVANCED MICROSOFT EXCEL
‣ SPECIFY THE DIMENSION BY WHICH TO SEGMENT IN ROW LABELS
‣ SET WHAT KIND OF COMPUTATION YOU WANT IN THE VALUE FIELD
‣ E.G. AVERAGE, COUNT, SUM, MAXIMUM VALUE
‣ ANALYZE TWO SEGMENTS AGAINST EACH OTHER BY SELECTING A DIMENSION FOR
COLUMN LABELS
‣ FILTER OUT UNWANTED DATA BY PLACING A DIMENSION IN THE REPORT FILTER
PIVOTTABLES
ADVANCED MICROSOFT EXCEL
‣ ONCE ALL DATA IS FORMATTED IN A TABLE, IT IS EASY TO CONVERT IT INTO A
VISUAL CHART
‣ USE LINE GRAPHS FOR DATA CHANGING OVER TIME
‣ USE SCATTER PLOTS FOR CORRELATIONS OF TWO SETS OF NUMBERS
‣ USE COLUMN OR BAR FOR HISTOGRAMS
‣ (DON’T USE PIE CHARTS - USE 100% STACKED BAR INSTEAD)
CREATING GRAPHS
ADVANCED MICROSOFT EXCEL
‣ USING A PIVOTTABLE, SUMMARIZE NAME DATA BY STATE, DEMO GROUP, AND ITEMS DELIVERED
‣ TURN SUMMARIZED DATA INTO AN APPROPRIATE CHART
CLASS EXERCISE FIVE
ADVANCED MICROSOFT EXCEL
‣ ADD DEVELOPER TAB TO RIBBON
‣ MAC - PREFERENCES -> RIBBON
‣ WINDOWS - FILE -> OPTIONS -> CUSTOMIZE RIBBON
‣ ADD TEXT TO SPREADSHEET
‣ IN DEVELOPER TAB, CLICK ‘RECORD MACRO’
‣ GIVE MACRO A NAME - ‘BOLD MACRO’
‣ ADD A SHORTCUT - CTRL + SHIFT + A
‣ CLICK ‘OK’
‣ CHANGE TEXT ON TAB - FONT SIZE TO 18, FONT WEIGHT TO ‘BOLD’
‣ CLICK ‘STOP’
‣ TEST USING THE SHORTCUT
MACROS
CLOSING
ADVANCED MICROSOFT EXCEL
ADVANCED MICROSOFT EXCEL
‣ FUNCTIONS - COUNTIF, SUMIF, VLOOKUP, INDEX, MATCH, LEFT, RIGHT, MID, LEN, TRIM, FIND, NOW, DATE, INT
‣ KEYBOARD SHORTCUTS - ANCHORING CELLS, NAVIGATING, FILLING FORMULAS
‣ SEARCH & FILTER
‣ CREATE A PIVOTTABLE
RECAP
ADVANCED MICROSOFT EXCEL
QUESTIONS?
ERIC METELKA
THANKS!
‣ TWITTER: @ERIC3000

More Related Content

What's hot

Basic Ms excel
Basic Ms excelBasic Ms excel
Basic Ms excel
maharzahid0
 
Ms excel ppt presentation
Ms excel ppt presentationMs excel ppt presentation
Ms excel ppt presentation
vethics
 
Introduction to Excel
Introduction to ExcelIntroduction to Excel
Introduction to ExcelNajma Alam
 
Ms excel
Ms excelMs excel
Sorting and Filtering.pptx
Sorting and Filtering.pptxSorting and Filtering.pptx
Sorting and Filtering.pptx
DrAbhishekKumarSingh3
 
Ms excel basic about Data, graph and pivot table
Ms excel basic about Data, graph and pivot table Ms excel basic about Data, graph and pivot table
Ms excel basic about Data, graph and pivot table
Alomgir Hossain
 
Introduction to Microsoft Excel for beginners
Introduction to Microsoft Excel for beginnersIntroduction to Microsoft Excel for beginners
Introduction to Microsoft Excel for beginners
Blogger Mumma
 
MS EXCEL
MS EXCELMS EXCEL
MS EXCEL
syed_umar
 
Microsoft excel
Microsoft excelMicrosoft excel
Microsoft excel
waszia
 
Advance excel
Advance excelAdvance excel
Advance excel
SiddheshHadge
 
Advances in ms excel
Advances in ms excelAdvances in ms excel
Advances in ms excelMohit Kumar
 
Pivot table and Dashboard in microsoft excel
Pivot table  and Dashboard in microsoft excelPivot table  and Dashboard in microsoft excel
Pivot table and Dashboard in microsoft excel
Frehiwot Mulugeta
 
Intermediate Excel
Intermediate Excel Intermediate Excel
Intermediate Excel
Lisa De Castro, Ph.D.
 
Microsoft excel training module
Microsoft excel training moduleMicrosoft excel training module
Microsoft excel training moduleJeff Piontek
 
Introduction of Advance Excel
Introduction of Advance ExcelIntroduction of Advance Excel
Introduction of Advance Excel
CBitss Technologies
 
Pivot table
Pivot tablePivot table
Pivot table
Vijay Perepa
 
Microsoft Excel Tutorial
Microsoft Excel TutorialMicrosoft Excel Tutorial
Microsoft Excel Tutorial
Kristine Tiongco-Rimpa
 
Excel Shortcuts & Formulas
Excel Shortcuts & FormulasExcel Shortcuts & Formulas
Excel Shortcuts & Formulas
Bikash Roy
 

What's hot (20)

Basic Ms excel
Basic Ms excelBasic Ms excel
Basic Ms excel
 
Ms excel ppt presentation
Ms excel ppt presentationMs excel ppt presentation
Ms excel ppt presentation
 
Introduction to Excel
Introduction to ExcelIntroduction to Excel
Introduction to Excel
 
Ms excel
Ms excelMs excel
Ms excel
 
Sorting and Filtering.pptx
Sorting and Filtering.pptxSorting and Filtering.pptx
Sorting and Filtering.pptx
 
Ms excel basic about Data, graph and pivot table
Ms excel basic about Data, graph and pivot table Ms excel basic about Data, graph and pivot table
Ms excel basic about Data, graph and pivot table
 
Introduction to Microsoft Excel for beginners
Introduction to Microsoft Excel for beginnersIntroduction to Microsoft Excel for beginners
Introduction to Microsoft Excel for beginners
 
MS EXCEL
MS EXCELMS EXCEL
MS EXCEL
 
Microsoft excel
Microsoft excelMicrosoft excel
Microsoft excel
 
Advance excel
Advance excelAdvance excel
Advance excel
 
Advances in ms excel
Advances in ms excelAdvances in ms excel
Advances in ms excel
 
Microsoft Excel Basics
Microsoft Excel BasicsMicrosoft Excel Basics
Microsoft Excel Basics
 
Pivot table and Dashboard in microsoft excel
Pivot table  and Dashboard in microsoft excelPivot table  and Dashboard in microsoft excel
Pivot table and Dashboard in microsoft excel
 
Intermediate Excel
Intermediate Excel Intermediate Excel
Intermediate Excel
 
Microsoft excel training module
Microsoft excel training moduleMicrosoft excel training module
Microsoft excel training module
 
Introduction of Advance Excel
Introduction of Advance ExcelIntroduction of Advance Excel
Introduction of Advance Excel
 
Pivot table
Pivot tablePivot table
Pivot table
 
Microsoft Excel Tutorial
Microsoft Excel TutorialMicrosoft Excel Tutorial
Microsoft Excel Tutorial
 
22 Excel Basics
22 Excel Basics22 Excel Basics
22 Excel Basics
 
Excel Shortcuts & Formulas
Excel Shortcuts & FormulasExcel Shortcuts & Formulas
Excel Shortcuts & Formulas
 

Similar to Advanced Microsoft Excel

My Favorite Calc Code
My Favorite Calc CodeMy Favorite Calc Code
My Favorite Calc Code
Alithya
 
e computer notes - Single row functions
e computer notes - Single row functionse computer notes - Single row functions
e computer notes - Single row functionsecomputernotes
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence PortfolioChris Seebacher
 
Star Transformation, 12c Adaptive Bitmap Pruning and In-Memory option
Star Transformation, 12c Adaptive Bitmap Pruning and In-Memory optionStar Transformation, 12c Adaptive Bitmap Pruning and In-Memory option
Star Transformation, 12c Adaptive Bitmap Pruning and In-Memory option
Franck Pachot
 
Microsoft Excel
Microsoft ExcelMicrosoft Excel
Microsoft Excel
Naomi Faith Ebuen
 
Web Developer make the most out of your Database !
Web Developer make the most out of your Database !Web Developer make the most out of your Database !
Web Developer make the most out of your Database !
Jean-Marc Desvaux
 
Msoffice introduction
Msoffice introductionMsoffice introduction
Msoffice introduction
Goral Koladiya
 
Chapter 16-spreadsheet1 questions and answer
Chapter 16-spreadsheet1  questions and answerChapter 16-spreadsheet1  questions and answer
Chapter 16-spreadsheet1 questions and answer
RaajTech
 
Myth busters - performance tuning 101 2007
Myth busters - performance tuning 101 2007Myth busters - performance tuning 101 2007
Myth busters - performance tuning 101 2007paulguerin
 
The ultimate-guide-to-sql
The ultimate-guide-to-sqlThe ultimate-guide-to-sql
The ultimate-guide-to-sql
McNamaraChiwaye
 
SQL Pass Summit Presentations from Datavail - Optimize SQL Server: Query Tuni...
SQL Pass Summit Presentations from Datavail - Optimize SQL Server: Query Tuni...SQL Pass Summit Presentations from Datavail - Optimize SQL Server: Query Tuni...
SQL Pass Summit Presentations from Datavail - Optimize SQL Server: Query Tuni...
Datavail
 
Roll No. 26, 31 to 39 (G4) Use of MS-Excel in CA Profession (wecompress.com)....
Roll No. 26, 31 to 39 (G4) Use of MS-Excel in CA Profession (wecompress.com)....Roll No. 26, 31 to 39 (G4) Use of MS-Excel in CA Profession (wecompress.com)....
Roll No. 26, 31 to 39 (G4) Use of MS-Excel in CA Profession (wecompress.com)....
VinayakPoddar2
 
Oracle tips and tricks
Oracle tips and tricksOracle tips and tricks
Oracle tips and tricksYanli Liu
 
Data infrastructure for the other 90% of companies
Data infrastructure for the other 90% of companiesData infrastructure for the other 90% of companies
Data infrastructure for the other 90% of companies
Martin Loetzsch
 
Common Coding and Design mistakes (that really mess up performance)
Common Coding and Design mistakes (that really mess up performance)Common Coding and Design mistakes (that really mess up performance)
Common Coding and Design mistakes (that really mess up performance)
Sage Computing Services
 
Performance Tuning Oracle's BI Applications
Performance Tuning Oracle's BI ApplicationsPerformance Tuning Oracle's BI Applications
Performance Tuning Oracle's BI Applications
KPI Partners
 
SQL Windowing
SQL WindowingSQL Windowing
SQL Windowing
Sandun Perera
 
Sample Questions The following sample questions are not in.docx
Sample Questions The following sample questions are not in.docxSample Questions The following sample questions are not in.docx
Sample Questions The following sample questions are not in.docx
todd331
 
CARTO en 5 Pasos: del Dato a la Toma de Decisiones [CARTO]
CARTO en 5 Pasos: del Dato a la Toma de Decisiones [CARTO]CARTO en 5 Pasos: del Dato a la Toma de Decisiones [CARTO]
CARTO en 5 Pasos: del Dato a la Toma de Decisiones [CARTO]
CARTO
 
Explain the explain_plan
Explain the explain_planExplain the explain_plan
Explain the explain_plan
Maria Colgan
 

Similar to Advanced Microsoft Excel (20)

My Favorite Calc Code
My Favorite Calc CodeMy Favorite Calc Code
My Favorite Calc Code
 
e computer notes - Single row functions
e computer notes - Single row functionse computer notes - Single row functions
e computer notes - Single row functions
 
Business Intelligence Portfolio
Business Intelligence PortfolioBusiness Intelligence Portfolio
Business Intelligence Portfolio
 
Star Transformation, 12c Adaptive Bitmap Pruning and In-Memory option
Star Transformation, 12c Adaptive Bitmap Pruning and In-Memory optionStar Transformation, 12c Adaptive Bitmap Pruning and In-Memory option
Star Transformation, 12c Adaptive Bitmap Pruning and In-Memory option
 
Microsoft Excel
Microsoft ExcelMicrosoft Excel
Microsoft Excel
 
Web Developer make the most out of your Database !
Web Developer make the most out of your Database !Web Developer make the most out of your Database !
Web Developer make the most out of your Database !
 
Msoffice introduction
Msoffice introductionMsoffice introduction
Msoffice introduction
 
Chapter 16-spreadsheet1 questions and answer
Chapter 16-spreadsheet1  questions and answerChapter 16-spreadsheet1  questions and answer
Chapter 16-spreadsheet1 questions and answer
 
Myth busters - performance tuning 101 2007
Myth busters - performance tuning 101 2007Myth busters - performance tuning 101 2007
Myth busters - performance tuning 101 2007
 
The ultimate-guide-to-sql
The ultimate-guide-to-sqlThe ultimate-guide-to-sql
The ultimate-guide-to-sql
 
SQL Pass Summit Presentations from Datavail - Optimize SQL Server: Query Tuni...
SQL Pass Summit Presentations from Datavail - Optimize SQL Server: Query Tuni...SQL Pass Summit Presentations from Datavail - Optimize SQL Server: Query Tuni...
SQL Pass Summit Presentations from Datavail - Optimize SQL Server: Query Tuni...
 
Roll No. 26, 31 to 39 (G4) Use of MS-Excel in CA Profession (wecompress.com)....
Roll No. 26, 31 to 39 (G4) Use of MS-Excel in CA Profession (wecompress.com)....Roll No. 26, 31 to 39 (G4) Use of MS-Excel in CA Profession (wecompress.com)....
Roll No. 26, 31 to 39 (G4) Use of MS-Excel in CA Profession (wecompress.com)....
 
Oracle tips and tricks
Oracle tips and tricksOracle tips and tricks
Oracle tips and tricks
 
Data infrastructure for the other 90% of companies
Data infrastructure for the other 90% of companiesData infrastructure for the other 90% of companies
Data infrastructure for the other 90% of companies
 
Common Coding and Design mistakes (that really mess up performance)
Common Coding and Design mistakes (that really mess up performance)Common Coding and Design mistakes (that really mess up performance)
Common Coding and Design mistakes (that really mess up performance)
 
Performance Tuning Oracle's BI Applications
Performance Tuning Oracle's BI ApplicationsPerformance Tuning Oracle's BI Applications
Performance Tuning Oracle's BI Applications
 
SQL Windowing
SQL WindowingSQL Windowing
SQL Windowing
 
Sample Questions The following sample questions are not in.docx
Sample Questions The following sample questions are not in.docxSample Questions The following sample questions are not in.docx
Sample Questions The following sample questions are not in.docx
 
CARTO en 5 Pasos: del Dato a la Toma de Decisiones [CARTO]
CARTO en 5 Pasos: del Dato a la Toma de Decisiones [CARTO]CARTO en 5 Pasos: del Dato a la Toma de Decisiones [CARTO]
CARTO en 5 Pasos: del Dato a la Toma de Decisiones [CARTO]
 
Explain the explain_plan
Explain the explain_planExplain the explain_plan
Explain the explain_plan
 

More from Eric Metelka

Introduction to community management
Introduction to community managementIntroduction to community management
Introduction to community management
Eric Metelka
 
How restuarants win on social media
How restuarants win on social mediaHow restuarants win on social media
How restuarants win on social media
Eric Metelka
 
How to boost admissions on social media
How to boost admissions on social mediaHow to boost admissions on social media
How to boost admissions on social media
Eric Metelka
 
The Tools to Unlock Social Media Analytics
The Tools to Unlock Social Media AnalyticsThe Tools to Unlock Social Media Analytics
The Tools to Unlock Social Media Analytics
Eric Metelka
 
How to Rock Your Social Media Engagement
How to Rock Your Social Media EngagementHow to Rock Your Social Media Engagement
How to Rock Your Social Media Engagement
Eric Metelka
 
Social Media Strategy - Target Your Audience & Build Your Voice
Social Media Strategy - Target Your Audience & Build Your VoiceSocial Media Strategy - Target Your Audience & Build Your Voice
Social Media Strategy - Target Your Audience & Build Your Voice
Eric Metelka
 
How Your Startup Can Use Social Media for REAL RESULTS
How Your Startup Can Use Social Media for REAL RESULTSHow Your Startup Can Use Social Media for REAL RESULTS
How Your Startup Can Use Social Media for REAL RESULTSEric Metelka
 
Building Audience & Influence on a Budget
Building Audience & Influence on a BudgetBuilding Audience & Influence on a Budget
Building Audience & Influence on a Budget
Eric Metelka
 
Activation, retention & engagement strategy
Activation, retention & engagement strategyActivation, retention & engagement strategy
Activation, retention & engagement strategy
Eric Metelka
 
Digital Marketing Beginner's Guide
Digital Marketing Beginner's GuideDigital Marketing Beginner's Guide
Digital Marketing Beginner's GuideEric Metelka
 

More from Eric Metelka (10)

Introduction to community management
Introduction to community managementIntroduction to community management
Introduction to community management
 
How restuarants win on social media
How restuarants win on social mediaHow restuarants win on social media
How restuarants win on social media
 
How to boost admissions on social media
How to boost admissions on social mediaHow to boost admissions on social media
How to boost admissions on social media
 
The Tools to Unlock Social Media Analytics
The Tools to Unlock Social Media AnalyticsThe Tools to Unlock Social Media Analytics
The Tools to Unlock Social Media Analytics
 
How to Rock Your Social Media Engagement
How to Rock Your Social Media EngagementHow to Rock Your Social Media Engagement
How to Rock Your Social Media Engagement
 
Social Media Strategy - Target Your Audience & Build Your Voice
Social Media Strategy - Target Your Audience & Build Your VoiceSocial Media Strategy - Target Your Audience & Build Your Voice
Social Media Strategy - Target Your Audience & Build Your Voice
 
How Your Startup Can Use Social Media for REAL RESULTS
How Your Startup Can Use Social Media for REAL RESULTSHow Your Startup Can Use Social Media for REAL RESULTS
How Your Startup Can Use Social Media for REAL RESULTS
 
Building Audience & Influence on a Budget
Building Audience & Influence on a BudgetBuilding Audience & Influence on a Budget
Building Audience & Influence on a Budget
 
Activation, retention & engagement strategy
Activation, retention & engagement strategyActivation, retention & engagement strategy
Activation, retention & engagement strategy
 
Digital Marketing Beginner's Guide
Digital Marketing Beginner's GuideDigital Marketing Beginner's Guide
Digital Marketing Beginner's Guide
 

Recently uploaded

Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024
Paco van Beckhoven
 
How to Position Your Globus Data Portal for Success Ten Good Practices
How to Position Your Globus Data Portal for Success Ten Good PracticesHow to Position Your Globus Data Portal for Success Ten Good Practices
How to Position Your Globus Data Portal for Success Ten Good Practices
Globus
 
Multiple Your Crypto Portfolio with the Innovative Features of Advanced Crypt...
Multiple Your Crypto Portfolio with the Innovative Features of Advanced Crypt...Multiple Your Crypto Portfolio with the Innovative Features of Advanced Crypt...
Multiple Your Crypto Portfolio with the Innovative Features of Advanced Crypt...
Hivelance Technology
 
Designing for Privacy in Amazon Web Services
Designing for Privacy in Amazon Web ServicesDesigning for Privacy in Amazon Web Services
Designing for Privacy in Amazon Web Services
KrzysztofKkol1
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2
 
top nidhi software solution freedownload
top nidhi software solution freedownloadtop nidhi software solution freedownload
top nidhi software solution freedownload
vrstrong314
 
Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...
Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...
Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...
Globus
 
Globus Connect Server Deep Dive - GlobusWorld 2024
Globus Connect Server Deep Dive - GlobusWorld 2024Globus Connect Server Deep Dive - GlobusWorld 2024
Globus Connect Server Deep Dive - GlobusWorld 2024
Globus
 
SOCRadar Research Team: Latest Activities of IntelBroker
SOCRadar Research Team: Latest Activities of IntelBrokerSOCRadar Research Team: Latest Activities of IntelBroker
SOCRadar Research Team: Latest Activities of IntelBroker
SOCRadar
 
A Comprehensive Look at Generative AI in Retail App Testing.pdf
A Comprehensive Look at Generative AI in Retail App Testing.pdfA Comprehensive Look at Generative AI in Retail App Testing.pdf
A Comprehensive Look at Generative AI in Retail App Testing.pdf
kalichargn70th171
 
Enhancing Research Orchestration Capabilities at ORNL.pdf
Enhancing Research Orchestration Capabilities at ORNL.pdfEnhancing Research Orchestration Capabilities at ORNL.pdf
Enhancing Research Orchestration Capabilities at ORNL.pdf
Globus
 
How Recreation Management Software Can Streamline Your Operations.pptx
How Recreation Management Software Can Streamline Your Operations.pptxHow Recreation Management Software Can Streamline Your Operations.pptx
How Recreation Management Software Can Streamline Your Operations.pptx
wottaspaceseo
 
Providing Globus Services to Users of JASMIN for Environmental Data Analysis
Providing Globus Services to Users of JASMIN for Environmental Data AnalysisProviding Globus Services to Users of JASMIN for Environmental Data Analysis
Providing Globus Services to Users of JASMIN for Environmental Data Analysis
Globus
 
BoxLang: Review our Visionary Licenses of 2024
BoxLang: Review our Visionary Licenses of 2024BoxLang: Review our Visionary Licenses of 2024
BoxLang: Review our Visionary Licenses of 2024
Ortus Solutions, Corp
 
Why React Native as a Strategic Advantage for Startup Innovation.pdf
Why React Native as a Strategic Advantage for Startup Innovation.pdfWhy React Native as a Strategic Advantage for Startup Innovation.pdf
Why React Native as a Strategic Advantage for Startup Innovation.pdf
ayushiqss
 
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Globus
 
Into the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdfInto the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdf
Ortus Solutions, Corp
 
Software Testing Exam imp Ques Notes.pdf
Software Testing Exam imp Ques Notes.pdfSoftware Testing Exam imp Ques Notes.pdf
Software Testing Exam imp Ques Notes.pdf
MayankTawar1
 
Visitor Management System in India- Vizman.app
Visitor Management System in India- Vizman.appVisitor Management System in India- Vizman.app
Visitor Management System in India- Vizman.app
NaapbooksPrivateLimi
 
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
Juraj Vysvader
 

Recently uploaded (20)

Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024Cracking the code review at SpringIO 2024
Cracking the code review at SpringIO 2024
 
How to Position Your Globus Data Portal for Success Ten Good Practices
How to Position Your Globus Data Portal for Success Ten Good PracticesHow to Position Your Globus Data Portal for Success Ten Good Practices
How to Position Your Globus Data Portal for Success Ten Good Practices
 
Multiple Your Crypto Portfolio with the Innovative Features of Advanced Crypt...
Multiple Your Crypto Portfolio with the Innovative Features of Advanced Crypt...Multiple Your Crypto Portfolio with the Innovative Features of Advanced Crypt...
Multiple Your Crypto Portfolio with the Innovative Features of Advanced Crypt...
 
Designing for Privacy in Amazon Web Services
Designing for Privacy in Amazon Web ServicesDesigning for Privacy in Amazon Web Services
Designing for Privacy in Amazon Web Services
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
top nidhi software solution freedownload
top nidhi software solution freedownloadtop nidhi software solution freedownload
top nidhi software solution freedownload
 
Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...
Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...
Exploring Innovations in Data Repository Solutions - Insights from the U.S. G...
 
Globus Connect Server Deep Dive - GlobusWorld 2024
Globus Connect Server Deep Dive - GlobusWorld 2024Globus Connect Server Deep Dive - GlobusWorld 2024
Globus Connect Server Deep Dive - GlobusWorld 2024
 
SOCRadar Research Team: Latest Activities of IntelBroker
SOCRadar Research Team: Latest Activities of IntelBrokerSOCRadar Research Team: Latest Activities of IntelBroker
SOCRadar Research Team: Latest Activities of IntelBroker
 
A Comprehensive Look at Generative AI in Retail App Testing.pdf
A Comprehensive Look at Generative AI in Retail App Testing.pdfA Comprehensive Look at Generative AI in Retail App Testing.pdf
A Comprehensive Look at Generative AI in Retail App Testing.pdf
 
Enhancing Research Orchestration Capabilities at ORNL.pdf
Enhancing Research Orchestration Capabilities at ORNL.pdfEnhancing Research Orchestration Capabilities at ORNL.pdf
Enhancing Research Orchestration Capabilities at ORNL.pdf
 
How Recreation Management Software Can Streamline Your Operations.pptx
How Recreation Management Software Can Streamline Your Operations.pptxHow Recreation Management Software Can Streamline Your Operations.pptx
How Recreation Management Software Can Streamline Your Operations.pptx
 
Providing Globus Services to Users of JASMIN for Environmental Data Analysis
Providing Globus Services to Users of JASMIN for Environmental Data AnalysisProviding Globus Services to Users of JASMIN for Environmental Data Analysis
Providing Globus Services to Users of JASMIN for Environmental Data Analysis
 
BoxLang: Review our Visionary Licenses of 2024
BoxLang: Review our Visionary Licenses of 2024BoxLang: Review our Visionary Licenses of 2024
BoxLang: Review our Visionary Licenses of 2024
 
Why React Native as a Strategic Advantage for Startup Innovation.pdf
Why React Native as a Strategic Advantage for Startup Innovation.pdfWhy React Native as a Strategic Advantage for Startup Innovation.pdf
Why React Native as a Strategic Advantage for Startup Innovation.pdf
 
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
Innovating Inference - Remote Triggering of Large Language Models on HPC Clus...
 
Into the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdfInto the Box 2024 - Keynote Day 2 Slides.pdf
Into the Box 2024 - Keynote Day 2 Slides.pdf
 
Software Testing Exam imp Ques Notes.pdf
Software Testing Exam imp Ques Notes.pdfSoftware Testing Exam imp Ques Notes.pdf
Software Testing Exam imp Ques Notes.pdf
 
Visitor Management System in India- Vizman.app
Visitor Management System in India- Vizman.appVisitor Management System in India- Vizman.app
Visitor Management System in India- Vizman.app
 
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
In 2015, I used to write extensions for Joomla, WordPress, phpBB3, etc and I ...
 

Advanced Microsoft Excel

  • 1. ERIC METELKA, MBA, PRODUCT MANAGER @ POWERREVIEWS ADVANCED MICROSOFT EXCEL
  • 2. AGENDA ‣ INTRODUCTIONS ‣ ANCHORING CELLS ‣ FUNCTIONS FOR SUMMARIZING DATA ‣ SORTING AND FILTERING ‣ USING TEXT AND TIME FUNCTIONS ‣ PIVOT TABLES ‣ CLOSING: RECAP, QUESTIONS
  • 4. ADVANCED MICROSOFT EXCEL ‣ HOLDS A CELL/ROW/COLUMN POSITION FOR FUTURE USE ‣ REPRESENTED BY A ‘$’ ‣ EFFICIENT WHEN COPYING FORMULAS ANCHORING CELLS F4 ⌘ T
  • 5. ANCHORING CELLS 2011 2012 2013 2014 Revenue $10 $12 $15 $20 Growth (2011) 20% 50% 100% ADVANCED MICROSOFT EXCEL
  • 6. ANCHORING CELLS 2011 2012 2013 2014 Revenue $10 $12 $15 $20 Growth (2011) 20% 50% 100% ADVANCED MICROSOFT EXCEL =(C2-B2)/B2
  • 7. ANCHORING CELLS 2011 2012 2013 2014 Revenue $10 $12 $15 $20 Growth (2011) 20% 50% 100% ADVANCED MICROSOFT EXCEL =(C2-$B$2)/$B$2 WANT TO REUSE THIS CELL
  • 8. ANCHORING CELLS 2011 2012 2013 2014 Revenue $10 $12 $15 $20 Growth (2011) 20% 50% 100% ADVANCED MICROSOFT EXCEL =(C2-$B$2)/$B$2 =(D2-$B$2)/$B$2
  • 9. ANCHORING CELLS 2011 2012 2013 2014 Revenue $10 $12 $15 $20 Growth (2011) 20% 50% 100% ADVANCED MICROSOFT EXCEL =(C2-$B$2)/$B$2 =(D2-$B$2)/$B$2 =(E2-$B$2)/$B$2
  • 10. ADVANCED MICROSOFT EXCEL ‣ FILL FORMULA RIGHT FROM CELL LEFT ‣ FILL FORMULA DOWN FROM CELL DOWN ‣ MOVE TO EDGE OF DATA REGION ‣ UP ‣ DOWN ‣ LEFT ‣ RIGHT ANCHORING CELLS - KEYBOARD SHORTCUTS Ctrl ⌃ R Ctrl ⌃ D R D Ctrl ⌃ ⬆⬆ Ctrl ⌃ ⬇⬇ Ctrl ⌃ ⬅⬅ Ctrl ⌃ ➡➡
  • 11. ADVANCED MICROSOFT EXCEL ‣ PRACTICE NAVIGATING YOUR WORKSHEET WITHOUT USING ONLY THE KEYBOARD ‣ WHAT HAPPENS IF YOU CHANGE THE FORMULA TO ONLY ANCHOR A ROW? ‣ WHAT HAPPENS IF YOU CHANGE THE FORMULA TO ONLY ANCHOR A COLUMN? CLASS EXERCISE ONE
  • 13. ADVANCED MICROSOFT EXCEL ‣ USE TO SUM OR COUNT THE NUMBER OF COMMON ITEMS COUNTIF AND SUMIF 6 20 5 8 11 4 2 9 12 ‣ COUNTIF(CIRCLES, YELLOW) = ? ‣ SUMIF(CIRCLES,BLUE,AMOUNT) = ?
  • 14. ADVANCED MICROSOFT EXCEL ‣ USE TO SUM OR COUNT THE NUMBER OF COMMON ITEMS COUNTIF AND SUMIF ‣ COUNTIF(CIRCLES, YELLOW) = 5 ‣ SUMIF(CIRCLES,BLUE,AMOUNT) = 27 6 20 5 8 11 4 2 9 12
  • 15. ADVANCED MICROSOFT EXCEL ‣ A HIGHER LEVEL OF SUMMARIZING DATA - ALLOWS YOU TO ADD A CONDITION ‣ THINK OF AS SUM WITHIN SUMIF AND COUNT WITHIN COUNTIF ‣ WHEN TO USE: DATA HAS MULTIPLE ATTRIBUTES THAT YOU WANT TO COMPILE IN A SINGLE SUM COUNTIF AND SUMIF
  • 16. ADVANCED MICROSOFT EXCEL ‣ =COUNTIF(RANGE,CRITERIA) ‣ =SUMIF(RANGE,CRITERIA,[SUM_RANGE]) COUNTIF AND SUMIF - SYNTAX
  • 17. ADVANCED MICROSOFT EXCEL ‣ =COUNTIF(RANGE,CRITERIA) ‣ =SUMIF(RANGE,CRITERIA,[SUM_RANGE]) ‣ SUPER ADVANCED MICROSOFT EXCEL: COUNTIFS AND SUMIFS COUNTIF AND SUMIF - SYNTAX
  • 18. ADVANCED MICROSOFT EXCEL ‣ “LOOKS UP” THE VALUE ASSOCIATED WITH A ROW IN A TABLE ‣ WHEN TO USE: CREATING A NEW DATA TABLE THAT PICKS AND CHOOSES VALUES FROM ANOTHER TABLE ‣ NOTE: DOES NOT SUMMARIZE, ONLY RETURNS A SINGLE ROW VLOOKUP
  • 19. ADVANCED MICROSOFT EXCEL ‣ =VLOOKUP(LOOKUP_VALUE,TABLE_ARRAY,COL_INDEX_NUMBER,[RANGE_LOOKUP]) ‣ NOTES: ‣ TABLE_ARRAY - THIS IS A RANGE. MAKE SURE TO ANCHOR CELLS! ‣ COL_INDEX_NUMBER - FIRST COLUMN IS 0. ‣ RANGE_LOOKUP - TRUE = APPROXIMATE MATCH. FALSE = EXACT MATCH. ALMOST ALWAYS USE FALSE! VLOOKUP - SYNTAX
  • 20. ADVANCED MICROSOFT EXCEL ‣ MATCH: RETURNS THE RELATIVE POSITION OF AN ITEM IN AN ARRAY ‣ INDEX: RETURNS THE VALUE AT A CELL INTERSECTION ‣ USE TOGETHER AS AN ALTERNATIVE TO VLOOKUP - MORE FLEXIBLE THAN VLOOKUP BUT ALSO MORE COMPLICATED INDEX/MATCH
  • 21. ADVANCED MICROSOFT EXCEL ‣ =MATCH(LOOKUP_VALUE,TABLE_ARRAY,[MATCH_TYPE]) ‣ NOTES: ‣ TABLE ARRAY IS A SINGLE COLUMN ‣ MATCH_TYPE IS -1, 0, OR 1 ‣ IF 1, FINDS THE LARGEST VALUE <= TO LOOKUP VALUE ‣ IF 0, FINDS THE FIRST EXACT MATCH ‣ IF -1, FINDS THE SMALLEST VALUE >= TO LOOKUP VALUE MATCH - SYNTAX
  • 22. ADVANCED MICROSOFT EXCEL ‣ =INDEX(ARRAY,ROW_NUM,[COLUMN_NUM]) ‣ NOTES: ‣ ARRAY IS A SINGLE COLUMN ‣ ROW_NUM - FIRST COLUMN IS 0. ‣ COLUMN_NUM - OPTIONAL AND USUALLY NOT NECESSARY INDEX - SYNTAX
  • 23. ADVANCED MICROSOFT EXCEL ‣ =INDEX(ARRAY,MATCH(LOOKUP_VALUE,TABLE_ARRAY,[MATCH_TYPE])) ‣ MATCH ACTS AS THE ROW NUMBER ‣ SAME NUMBER OF ARGUMENTS AS VLOOKUP! INDEX/MATCH - SYNTAX
  • 24. ADVANCED MICROSOFT EXCEL ‣ USING FUNCTIONS SUMMARIZE NAME DATA BY STATE, DEMO GROUP, AND ITEMS DELIVERED ‣ 1241 SUNDOWN WAY - LOOKUP THE FIRST NAME, LAST NAME, ZIP CODE, AND DEMO GROUP CLASS EXERCISE TWO
  • 26. ADVANCED MICROSOFT EXCEL ‣ ONE CLICK WILL SORT SMALL TO LARGE OR LARGE TO SMALL ‣ USE CUSTOM SORTING WHEN THE DATA TO BE SORTED IS IN MULTIPLE COLUMNS ‣ USE COLUMN HEADERS SO THAT FIRST DATA POINT IS NOT ‘LOST’ IN THE SORTING SORTING
  • 27. ADVANCED MICROSOFT EXCEL ‣ HELPFUL TOOL FOR DATA MINING ‣ LEAVE CHECKBOXES FOR DATA YOU WANT DISPLAYED ‣ WHEN USING DATES, EXCEL CREATES LEVEL OF DATA THAT CAN BE FILTERED FILTERING
  • 28. ADVANCED MICROSOFT EXCEL ‣ HELPFUL TOOL FOR DATA MINING ‣ LEAVE CHECKBOXES FOR DATA YOU WANT DISPLAYED ‣ WHEN USING DATES, EXCEL CREATES LEVEL OF DATA THAT CAN BE FILTERED ‣ REMOVE DUPLICATES - HIGHLIGHT TABLE AND WILL REMOVE ROWS THAT ARE EXACTLY THE SAME. FOUND IN THE DATA TAB. FILTERING
  • 29. ADVANCED MICROSOFT EXCEL ‣ PRACTICE SORTING AND FILTERING NAME DATA CLASS EXERCISE THREE
  • 30. TEXT AND TIME FUNCTIONS ADVANCED MICROSOFT EXCEL
  • 31. ADVANCED MICROSOFT EXCEL ‣ LEFT(TEXT,[NUM_CHARS]) ‣ SAME FOR RIGHT ‣ WHEN TO USE - WHEN YOU ONLY WANT CHARACTERS THAT BEGIN OR END TEXT IN A CELL ‣ I.E. THE ZIP CODE AT THE END OF AN ADDRESS LEFT RIGHT
  • 32. ADVANCED MICROSOFT EXCEL ‣ MID(TEXT,START_NUM,NUM_CHARS) ‣ WHEN TO USE - WHEN YOU ONLY WANT CHARACTERS IN THE MIDDLE OF TEXT IN A CELL MID
  • 33. ADVANCED MICROSOFT EXCEL ‣ TRIM(TEXT) ‣ REMOVE BLANK SPACES AT THE BEGINNING OR END OF A STRING ‣ COMMON PROBLEM WHEN TRANSFERRING DATA FROM ONE PROGRAM TO ANOTHER TRIM FIND ‣ FIND(FIND_TEXT,WITHIN_TEXT,[START_NUM]) ‣ HELPFUL WHEN NEEDED DATA IS EMBEDDED WITHIN A COMPLETE STRING E.G. ZIP CODE WITHIN AN ADDRESS
  • 34. ADVANCED MICROSOFT EXCEL ‣ EXCEL USES DAY AS ITS MEASURE OF TIME ‣ RETURNS A DATE WITH AN INTEGER VALUE AND A TIME AS A DECIMAL VALUE ‣ USE THE NOW FUNCTION TO MEASURE THE DIFFERENCE OF THE CURRENT DATE AND A PREVIOUS DATE NOW()
  • 35. ADVANCED MICROSOFT EXCEL ‣ DATE(YEAR,MONTH,DAY) ‣ ALLOWS CONVERSION OF DATES SHOWN AS TEXT TO 
 NUMBER DATE INT ‣ FIND(FIND_TEXT,WITHIN_TEXT,[START_NUM]) ‣ REMOVES THE DECIMAL (TIME) PORTION FROM A DATE DIFFERENCE, LEAVING THE INTEGER (DATE) PORTION
  • 36. ADVANCED MICROSOFT EXCEL ‣ USE NOW FUNCTION TO TRACK HOW MUCH TIME HAS PASSED SINCE NAMES WERE DELIVERED ‣ TRIM ADDRESSES TO SHOW STREET NUMBER AND STREET IN SEPARATE FIELDS CLASS EXERCISE FOUR
  • 38. ADVANCED MICROSOFT EXCEL ‣ CREATES A DRAG AND DROP TABLE BASED ON YOUR DATA - LETS YOU QUICKLY ANALYZE MANY ROWS OF DATA AS IF IT WERE A DATABASE, WITHOUT THE DATABASE. ‣ FOUND ON DATA TAB ‣ SELECT ALL DATA AND PRESS BUTTON PIVOTTABLES
  • 39. ADVANCED MICROSOFT EXCEL ‣ SPECIFY THE DIMENSION BY WHICH TO SEGMENT IN ROW LABELS ‣ SET WHAT KIND OF COMPUTATION YOU WANT IN THE VALUE FIELD ‣ E.G. AVERAGE, COUNT, SUM, MAXIMUM VALUE ‣ ANALYZE TWO SEGMENTS AGAINST EACH OTHER BY SELECTING A DIMENSION FOR COLUMN LABELS ‣ FILTER OUT UNWANTED DATA BY PLACING A DIMENSION IN THE REPORT FILTER PIVOTTABLES
  • 40. ADVANCED MICROSOFT EXCEL ‣ ONCE ALL DATA IS FORMATTED IN A TABLE, IT IS EASY TO CONVERT IT INTO A VISUAL CHART ‣ USE LINE GRAPHS FOR DATA CHANGING OVER TIME ‣ USE SCATTER PLOTS FOR CORRELATIONS OF TWO SETS OF NUMBERS ‣ USE COLUMN OR BAR FOR HISTOGRAMS ‣ (DON’T USE PIE CHARTS - USE 100% STACKED BAR INSTEAD) CREATING GRAPHS
  • 41. ADVANCED MICROSOFT EXCEL ‣ USING A PIVOTTABLE, SUMMARIZE NAME DATA BY STATE, DEMO GROUP, AND ITEMS DELIVERED ‣ TURN SUMMARIZED DATA INTO AN APPROPRIATE CHART CLASS EXERCISE FIVE
  • 42. ADVANCED MICROSOFT EXCEL ‣ ADD DEVELOPER TAB TO RIBBON ‣ MAC - PREFERENCES -> RIBBON ‣ WINDOWS - FILE -> OPTIONS -> CUSTOMIZE RIBBON ‣ ADD TEXT TO SPREADSHEET ‣ IN DEVELOPER TAB, CLICK ‘RECORD MACRO’ ‣ GIVE MACRO A NAME - ‘BOLD MACRO’ ‣ ADD A SHORTCUT - CTRL + SHIFT + A ‣ CLICK ‘OK’ ‣ CHANGE TEXT ON TAB - FONT SIZE TO 18, FONT WEIGHT TO ‘BOLD’ ‣ CLICK ‘STOP’ ‣ TEST USING THE SHORTCUT MACROS
  • 44. ADVANCED MICROSOFT EXCEL ‣ FUNCTIONS - COUNTIF, SUMIF, VLOOKUP, INDEX, MATCH, LEFT, RIGHT, MID, LEN, TRIM, FIND, NOW, DATE, INT ‣ KEYBOARD SHORTCUTS - ANCHORING CELLS, NAVIGATING, FILLING FORMULAS ‣ SEARCH & FILTER ‣ CREATE A PIVOTTABLE RECAP