SlideShare a Scribd company logo
1 of 66
Organizing Data for Effective Analysis  Chapter 7 “There is no such thing as too much planning and tracking.”- Indra Nooyi
Chapter Introduction Ways to manage and analyze large amounts of nonnumeric data using lists, a PivotTable report, and XML Functions covered in this chapter: CONCATENATE, FIND, LEFT, RIGHT, SEARCH, TODAY, TRIM, YEARFRAC
Functions Covered in this Chapter CONCATENATE FIND LEFT RIGHT SEARCH TODAY TRIM YEARFRAC
Level 1 Objectives:Importing and Structuring Text Data in Excel Worksheets Import text data into a worksheet Concatenate values and extract characters from a text string Parse text using the Convert Text to Columns Wizard Analyze data by creating subtotals Create, sort, and filter an Excel list
Working with Text Data:Comma-Delimited Files Separate values in each record with commas Also called comma-separated values (CSV) Once imported into a worksheet, each value in a record appears in a separate cell Paragraph mark identifies the end of each record
Working with Text Data: Goals Determine the format you need, so you can find the best way to change unstructured data into structured data Change format of unstructured data
Example of Unstructured Data Pasted into Excel
Combining Text Using the CONCATENATE Function Combines values in a range of cells into one text item in a new cell =CONCATENATE(text1,text2,…)
Combining Text Using the CONCATENATE Function
Extracting Characters from a Text String May be used to remove incorrect entries RIGHT function Returns last character(s) in a text string, based on number of characters specified =RIGHT(text,num_chars) LEFT function Extracts characters from the beginning or “left side” of a text string =LEFT(text,num_chars)
Extracting Charactersfrom a Text String
Removing Spacesfrom a Text String TRIM function Removes all spaces in a text string except for the single spaces between words =TRIM(text)
Removing Spacesfrom a Text String
Determining the Position of a Character within a Text String FIND function Returns the starting position of one text value within another text value Case sensitive =FIND(find_text,within_text,start_num) SEARCH function Does same thing as FIND function, but is not case sensitive
Determining the Position of a Character within a Text String
Sorting and Removing Invalid Data Copy contents of worksheet into a new worksheet to preserve original data and eliminate potential problem of automatically updating formulas as data is modified Sort the data in the new worksheet to separate valid rows from invalid rows Valid rows contain a “1” and appear first in the sort Delete invalid rows
Sorting and Removing Invalid Data
Common Functions that Manipulate Data
Common Functions that Manipulate Data (continued)
Working with Nonnumeric Data Convert Text to Columns Wizard Separates values in a text string into columns or fields Two ways to parse text into columns Identify the character that delimits the data Set field widths to identify the breaks between data that appears in columns
Using Text to Columns Wizard to Parse Data
Using Text to Columns Wizard to Parse Data
Labeling and Sorting Data
Analyzing Data by Creating Subtotals Subtotal tool Creates summary reports that quickly organize data into categories with subtotal calculations Can collapse and expand level of detail in the report
Using the Subtotal Tool
Creating and Working with an Excel List A range of cells that are formalized as a single unit Adds many features that aren’t available in an unstructured list (validation, sorting, filtering) Protects integrity of data Data in the columns of each row automatically remains intact when data is filtered or sorted Limitations Limit of 65,536 rows and 256 columns Entire workbook must be loaded into memory
Results of Creating an Excel List
Working with an Excel List Sorting an Excel list Automatic, once you select one cell in the column Filtering an Excel list Lets you display data based on criteria you specify Adding data to an Excel list Type data into blank row at bottom of list Use a form
Filtering an Excel List
Filtering an Excel List
Level 1 Summary Importing data stored in a text file into Excel Using Excel functions CONCATENATE to combine multiple text strings into a single text string TRIM to trim unnecessary spaces from a text string RIGHT to find and extract characters from a text string FIND to find specific characters in a text string
Level 1 Summary (continued) Transforming delimited data into rows and columns of data that can be sorted and filtered using Excel tools Creating subtotals to analyze data Creating and working with data stored in an Excel list
Level 2 Objectives: Analyzing Data Imported from a Database & Organizing Data with a PivotTable Report Import data stored in a database into Excel Use dates and times in calculations Analyze data using a PivotTable report Create a PivotChart report Import information from the Web into Excel using a Web query
Database Terminology
Importing Data from a Database into Excel Database provides the structure to ensure that the right data is available and protected Spreadsheet provides analytical power and flexibility Reduce data redundancy by storing data in related tables in a normalized database
Importing an Access Table into Excel
Using the Query Wizard to Select Data from a Database Lets you choose the data source and select the database table and fields to import into the workbook Prompts you to define criteria for the data you want to import by selecting only rows that meet criteria you specify
Using the Query Wizard to Select Data from a Database
Making Calculations with Date and Time Data TODAY function Returns current date’s serial number (based on computer’s internal clock) =TODAY() Requires no additional arguments YEARFRAC function Calculates the number of years between the two days =YEARFRAC(start_date,end_date,basis)
Using the TODAY Function
Using the YEARFRAC Function
Analyzing Data Usinga PivotTable Report Interactive report that lets you summarize and analyze a data set Dynamic organization; can be “pivoted” to examine data from various perspectives by rearranging its structure Best used to analyze data that can be summarized in multiple ways
Creating a PivotTable Report
PivotTable Added to a Worksheet
Analyzing Data Using the Row, Column, and Data Areas To add data to a PivotTable report, drag the field you want to summarize to a drop area on the report Row Area displays data from that field in rows Column Area displays data from that field in rows Data Area summarizes data from that field
Organizing Data by Row
Organizing Data by Column
Adding Fields to the Page Area
Evaluating Data Using a PivotChart Report Represents source data (usually from PivotTable report) as a graphic Use Chart Wizard button on PivotTable toolbar Can change layout, data displayed, and chart type
Importing Information from the Web into Excel Web query Automated method for retrieving information from a Web page without having to copy and past
Level 2 Summary Advantages of using a database to store data that can be exported to Excel for analysis Using the Query Wizard to select specific records in a database and import them into Excel How Excel stores and works with dates and times  Using dates in calculations to determine the number of days and years between two dates Creating and using a PivotTable report Using a Web query to import information from the Web into an Excel worksheet to use in calculations
Level 3 Objectives: Importing and Exporting XML Data Understand markup languages and XML Import XML data into Excel as an XML list Add an XML map to a workbook Export XML data from Excel into an XML document Map elements in an XML document to a workbook
Understanding Markup Languages and XML Markup language Link between content and instructions for formatting that content Uses a set of tags to distinguish different elements in a document Examples HTML (Hypertext Markup Language) SGML (Standardized General Markup Language) XML (Extensible Markup Language)
Markup Languages
XML Documents User-defined documents in which the user develops a DTD that defines the elements contained in a document and descriptions of how those elements are related to each other Data can be combined with meta-data <shoe> <shoe_ID>SH-1987</shoe_ID> <shoe_name>Running shoe</shoe_name> <description>Men’s size 11, white</description> </shoe>
Analyzing XML Data with Excel Import data into worksheet; method depends on the data Import entire XML document as a list (root element, schema) Use XML Source task pane to map elements you need to columns in a list Export XML data as a “well-formed” XML document
Importing XML Data as an XML List
Importing XML data as an XML list
Adding an XML Map to a Workbook
Adding an XML Map to a Workbook
Adding an XML Map to a Workbook
Exporting XML Data
Exporting XML Data
Level 3 Summary Different markup languages, including XML Using an existing XML document to import and XML map in a workbook Mapping XML elements into a worksheet Importing data into an XML list and exporting data to an XML document
Chapter Summary Importing and structuring text data in Excel worksheets Analyzing data imported from a database and organizing data with a PivotTable report Importing and exporting XML data

More Related Content

What's hot

Creation of spreadsheets
Creation of spreadsheetsCreation of spreadsheets
Creation of spreadsheetsNITISH SADOTRA
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excelmadhuparna bhowmik
 
Elementary Data Analysis with MS Excel_Day-6
Elementary Data Analysis with MS Excel_Day-6Elementary Data Analysis with MS Excel_Day-6
Elementary Data Analysis with MS Excel_Day-6Redwan Ferdous
 
Introduction to spreadsheets
Introduction to spreadsheetsIntroduction to spreadsheets
Introduction to spreadsheetsTracy Gilmer
 
Handouts how to use microsoft access to combine cost and usage data for ejour...
Handouts how to use microsoft access to combine cost and usage data for ejour...Handouts how to use microsoft access to combine cost and usage data for ejour...
Handouts how to use microsoft access to combine cost and usage data for ejour...Charleston Conference
 
Pivot table presentation
Pivot table presentationPivot table presentation
Pivot table presentationSha Tibnjn
 
Introduction to excel - application to statistics
Introduction to excel - application to statisticsIntroduction to excel - application to statistics
Introduction to excel - application to statisticszavenger
 
Alpha Tech Module4 5-6 glossary
Alpha Tech Module4 5-6 glossaryAlpha Tech Module4 5-6 glossary
Alpha Tech Module4 5-6 glossarythinkict
 
Common MS Excel and MS Excel 2013 useful tricks. By Ashot Engibaryan
Common MS Excel and MS Excel 2013 useful tricks. By Ashot EngibaryanCommon MS Excel and MS Excel 2013 useful tricks. By Ashot Engibaryan
Common MS Excel and MS Excel 2013 useful tricks. By Ashot EngibaryanAshot Engibaryan
 
Formulas in ms excel for statistics(report2 in ict math ed)
Formulas in ms excel for statistics(report2 in ict math ed)Formulas in ms excel for statistics(report2 in ict math ed)
Formulas in ms excel for statistics(report2 in ict math ed)Caryl Mae Puertollano
 
Spreadsheet text functions
Spreadsheet text functionsSpreadsheet text functions
Spreadsheet text functionsAnjan Mahanta
 
Spreadsheets Concepts and Vocab
Spreadsheets Concepts and VocabSpreadsheets Concepts and Vocab
Spreadsheets Concepts and VocabDanny Ambrosio
 
Database index
Database indexDatabase index
Database indexRiteshkiit
 

What's hot (20)

Creation of spreadsheets
Creation of spreadsheetsCreation of spreadsheets
Creation of spreadsheets
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excel
 
Spreadsheet Concepts
Spreadsheet ConceptsSpreadsheet Concepts
Spreadsheet Concepts
 
Elementary Data Analysis with MS Excel_Day-6
Elementary Data Analysis with MS Excel_Day-6Elementary Data Analysis with MS Excel_Day-6
Elementary Data Analysis with MS Excel_Day-6
 
Introduction to spreadsheets
Introduction to spreadsheetsIntroduction to spreadsheets
Introduction to spreadsheets
 
Bo4301369372
Bo4301369372Bo4301369372
Bo4301369372
 
Handouts how to use microsoft access to combine cost and usage data for ejour...
Handouts how to use microsoft access to combine cost and usage data for ejour...Handouts how to use microsoft access to combine cost and usage data for ejour...
Handouts how to use microsoft access to combine cost and usage data for ejour...
 
'Spreadsheet'
'Spreadsheet''Spreadsheet'
'Spreadsheet'
 
Spreadhsheets 1
Spreadhsheets 1Spreadhsheets 1
Spreadhsheets 1
 
Pivot table presentation
Pivot table presentationPivot table presentation
Pivot table presentation
 
Introduction to excel - application to statistics
Introduction to excel - application to statisticsIntroduction to excel - application to statistics
Introduction to excel - application to statistics
 
Alpha Tech Module4 5-6 glossary
Alpha Tech Module4 5-6 glossaryAlpha Tech Module4 5-6 glossary
Alpha Tech Module4 5-6 glossary
 
Pivot Table | Statistics
Pivot Table | StatisticsPivot Table | Statistics
Pivot Table | Statistics
 
Common MS Excel and MS Excel 2013 useful tricks. By Ashot Engibaryan
Common MS Excel and MS Excel 2013 useful tricks. By Ashot EngibaryanCommon MS Excel and MS Excel 2013 useful tricks. By Ashot Engibaryan
Common MS Excel and MS Excel 2013 useful tricks. By Ashot Engibaryan
 
Formulas in ms excel for statistics(report2 in ict math ed)
Formulas in ms excel for statistics(report2 in ict math ed)Formulas in ms excel for statistics(report2 in ict math ed)
Formulas in ms excel for statistics(report2 in ict math ed)
 
Spreadsheet text functions
Spreadsheet text functionsSpreadsheet text functions
Spreadsheet text functions
 
Spreadsheet
SpreadsheetSpreadsheet
Spreadsheet
 
Spreadsheets Concepts and Vocab
Spreadsheets Concepts and VocabSpreadsheets Concepts and Vocab
Spreadsheets Concepts and Vocab
 
Database index
Database indexDatabase index
Database index
 
Excel 2007 Unit J
Excel 2007 Unit JExcel 2007 Unit J
Excel 2007 Unit J
 

Similar to Chapter.07

Microsoft excel training
Microsoft excel trainingMicrosoft excel training
Microsoft excel trainingEmilyE120
 
1.2 Zep Excel.pptx
1.2 Zep Excel.pptx1.2 Zep Excel.pptx
1.2 Zep Excel.pptxPizzaM
 
Excel training by rajesh p
Excel training by rajesh pExcel training by rajesh p
Excel training by rajesh pRajesh P
 
Model Assistant Suite
Model Assistant SuiteModel Assistant Suite
Model Assistant SuiteYsrael Mertz
 
Mapping Data Flows Training deck Q1 CY22
Mapping Data Flows Training deck Q1 CY22Mapping Data Flows Training deck Q1 CY22
Mapping Data Flows Training deck Q1 CY22Mark Kromer
 
Azure Data Factory Data Flows Training (Sept 2020 Update)
Azure Data Factory Data Flows Training (Sept 2020 Update)Azure Data Factory Data Flows Training (Sept 2020 Update)
Azure Data Factory Data Flows Training (Sept 2020 Update)Mark Kromer
 
BIS06 Physical Database Models
BIS06 Physical Database ModelsBIS06 Physical Database Models
BIS06 Physical Database ModelsPrithwis Mukerjee
 
BIS06 Physical Database Models
BIS06 Physical Database ModelsBIS06 Physical Database Models
BIS06 Physical Database ModelsPrithwis Mukerjee
 
introduction to power bi in electronics and communication engineering
introduction to power bi in electronics and communication engineeringintroduction to power bi in electronics and communication engineering
introduction to power bi in electronics and communication engineeringchotta2
 
MS Office Access Tutorial
MS Office Access TutorialMS Office Access Tutorial
MS Office Access TutorialvirtualMaryam
 
Mapping Data Flows Training April 2021
Mapping Data Flows Training April 2021Mapping Data Flows Training April 2021
Mapping Data Flows Training April 2021Mark Kromer
 
Microsoft Excel- basics
Microsoft Excel-  basicsMicrosoft Excel-  basics
Microsoft Excel- basicsjeshin jose
 
OBIEE publisher with Report creation - Tutorial
OBIEE publisher with Report creation - TutorialOBIEE publisher with Report creation - Tutorial
OBIEE publisher with Report creation - Tutorialonlinetrainingplacements
 

Similar to Chapter.07 (20)

Microsoft excel training
Microsoft excel trainingMicrosoft excel training
Microsoft excel training
 
1.2 Zep Excel.pptx
1.2 Zep Excel.pptx1.2 Zep Excel.pptx
1.2 Zep Excel.pptx
 
ITB - UNIT 4.pdf
ITB - UNIT 4.pdfITB - UNIT 4.pdf
ITB - UNIT 4.pdf
 
Excel training by rajesh p
Excel training by rajesh pExcel training by rajesh p
Excel training by rajesh p
 
Excel Training
Excel TrainingExcel Training
Excel Training
 
Lect11
Lect11Lect11
Lect11
 
Model Assistant Suite
Model Assistant SuiteModel Assistant Suite
Model Assistant Suite
 
Excel.pptx
Excel.pptxExcel.pptx
Excel.pptx
 
Mapping Data Flows Training deck Q1 CY22
Mapping Data Flows Training deck Q1 CY22Mapping Data Flows Training deck Q1 CY22
Mapping Data Flows Training deck Q1 CY22
 
Fg d
Fg dFg d
Fg d
 
Oracle report from ppt
Oracle report from pptOracle report from ppt
Oracle report from ppt
 
Azure Data Factory Data Flows Training (Sept 2020 Update)
Azure Data Factory Data Flows Training (Sept 2020 Update)Azure Data Factory Data Flows Training (Sept 2020 Update)
Azure Data Factory Data Flows Training (Sept 2020 Update)
 
BIS06 Physical Database Models
BIS06 Physical Database ModelsBIS06 Physical Database Models
BIS06 Physical Database Models
 
BIS06 Physical Database Models
BIS06 Physical Database ModelsBIS06 Physical Database Models
BIS06 Physical Database Models
 
introduction to power bi in electronics and communication engineering
introduction to power bi in electronics and communication engineeringintroduction to power bi in electronics and communication engineering
introduction to power bi in electronics and communication engineering
 
MS Office Access Tutorial
MS Office Access TutorialMS Office Access Tutorial
MS Office Access Tutorial
 
Mapping Data Flows Training April 2021
Mapping Data Flows Training April 2021Mapping Data Flows Training April 2021
Mapping Data Flows Training April 2021
 
Microsoft excel
Microsoft excelMicrosoft excel
Microsoft excel
 
Microsoft Excel- basics
Microsoft Excel-  basicsMicrosoft Excel-  basics
Microsoft Excel- basics
 
OBIEE publisher with Report creation - Tutorial
OBIEE publisher with Report creation - TutorialOBIEE publisher with Report creation - Tutorial
OBIEE publisher with Report creation - Tutorial
 

More from Program in Interdisciplinary Computing (20)

Phpmysqlcoding
PhpmysqlcodingPhpmysqlcoding
Phpmysqlcoding
 
Database basics
Database basicsDatabase basics
Database basics
 
CGS2835 HTML5
CGS2835 HTML5CGS2835 HTML5
CGS2835 HTML5
 
Mysocial databasequeries
Mysocial databasequeriesMysocial databasequeries
Mysocial databasequeries
 
Mysocial databasequeries
Mysocial databasequeriesMysocial databasequeries
Mysocial databasequeries
 
CGS2835 HTML5
CGS2835 HTML5CGS2835 HTML5
CGS2835 HTML5
 
01 intro tousingjava
01 intro tousingjava01 intro tousingjava
01 intro tousingjava
 
Web architecture v3
Web architecture v3Web architecture v3
Web architecture v3
 
Xhtml
XhtmlXhtml
Xhtml
 
Webdev
WebdevWebdev
Webdev
 
Web architecture
Web architectureWeb architecture
Web architecture
 
Sdlc
SdlcSdlc
Sdlc
 
Mysocial
MysocialMysocial
Mysocial
 
Javascript
JavascriptJavascript
Javascript
 
Javascript
JavascriptJavascript
Javascript
 
Html5
Html5Html5
Html5
 
Frameworks
FrameworksFrameworks
Frameworks
 
Drupal
DrupalDrupal
Drupal
 
Database
DatabaseDatabase
Database
 
Javascript2
Javascript2Javascript2
Javascript2
 

Recently uploaded

General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024Janet Corral
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 

Recently uploaded (20)

General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 

Chapter.07

  • 1. Organizing Data for Effective Analysis Chapter 7 “There is no such thing as too much planning and tracking.”- Indra Nooyi
  • 2. Chapter Introduction Ways to manage and analyze large amounts of nonnumeric data using lists, a PivotTable report, and XML Functions covered in this chapter: CONCATENATE, FIND, LEFT, RIGHT, SEARCH, TODAY, TRIM, YEARFRAC
  • 3. Functions Covered in this Chapter CONCATENATE FIND LEFT RIGHT SEARCH TODAY TRIM YEARFRAC
  • 4. Level 1 Objectives:Importing and Structuring Text Data in Excel Worksheets Import text data into a worksheet Concatenate values and extract characters from a text string Parse text using the Convert Text to Columns Wizard Analyze data by creating subtotals Create, sort, and filter an Excel list
  • 5. Working with Text Data:Comma-Delimited Files Separate values in each record with commas Also called comma-separated values (CSV) Once imported into a worksheet, each value in a record appears in a separate cell Paragraph mark identifies the end of each record
  • 6. Working with Text Data: Goals Determine the format you need, so you can find the best way to change unstructured data into structured data Change format of unstructured data
  • 7. Example of Unstructured Data Pasted into Excel
  • 8. Combining Text Using the CONCATENATE Function Combines values in a range of cells into one text item in a new cell =CONCATENATE(text1,text2,…)
  • 9. Combining Text Using the CONCATENATE Function
  • 10. Extracting Characters from a Text String May be used to remove incorrect entries RIGHT function Returns last character(s) in a text string, based on number of characters specified =RIGHT(text,num_chars) LEFT function Extracts characters from the beginning or “left side” of a text string =LEFT(text,num_chars)
  • 12. Removing Spacesfrom a Text String TRIM function Removes all spaces in a text string except for the single spaces between words =TRIM(text)
  • 13. Removing Spacesfrom a Text String
  • 14. Determining the Position of a Character within a Text String FIND function Returns the starting position of one text value within another text value Case sensitive =FIND(find_text,within_text,start_num) SEARCH function Does same thing as FIND function, but is not case sensitive
  • 15. Determining the Position of a Character within a Text String
  • 16. Sorting and Removing Invalid Data Copy contents of worksheet into a new worksheet to preserve original data and eliminate potential problem of automatically updating formulas as data is modified Sort the data in the new worksheet to separate valid rows from invalid rows Valid rows contain a “1” and appear first in the sort Delete invalid rows
  • 17. Sorting and Removing Invalid Data
  • 18. Common Functions that Manipulate Data
  • 19. Common Functions that Manipulate Data (continued)
  • 20. Working with Nonnumeric Data Convert Text to Columns Wizard Separates values in a text string into columns or fields Two ways to parse text into columns Identify the character that delimits the data Set field widths to identify the breaks between data that appears in columns
  • 21. Using Text to Columns Wizard to Parse Data
  • 22. Using Text to Columns Wizard to Parse Data
  • 24. Analyzing Data by Creating Subtotals Subtotal tool Creates summary reports that quickly organize data into categories with subtotal calculations Can collapse and expand level of detail in the report
  • 26. Creating and Working with an Excel List A range of cells that are formalized as a single unit Adds many features that aren’t available in an unstructured list (validation, sorting, filtering) Protects integrity of data Data in the columns of each row automatically remains intact when data is filtered or sorted Limitations Limit of 65,536 rows and 256 columns Entire workbook must be loaded into memory
  • 27. Results of Creating an Excel List
  • 28. Working with an Excel List Sorting an Excel list Automatic, once you select one cell in the column Filtering an Excel list Lets you display data based on criteria you specify Adding data to an Excel list Type data into blank row at bottom of list Use a form
  • 31. Level 1 Summary Importing data stored in a text file into Excel Using Excel functions CONCATENATE to combine multiple text strings into a single text string TRIM to trim unnecessary spaces from a text string RIGHT to find and extract characters from a text string FIND to find specific characters in a text string
  • 32. Level 1 Summary (continued) Transforming delimited data into rows and columns of data that can be sorted and filtered using Excel tools Creating subtotals to analyze data Creating and working with data stored in an Excel list
  • 33. Level 2 Objectives: Analyzing Data Imported from a Database & Organizing Data with a PivotTable Report Import data stored in a database into Excel Use dates and times in calculations Analyze data using a PivotTable report Create a PivotChart report Import information from the Web into Excel using a Web query
  • 35. Importing Data from a Database into Excel Database provides the structure to ensure that the right data is available and protected Spreadsheet provides analytical power and flexibility Reduce data redundancy by storing data in related tables in a normalized database
  • 36. Importing an Access Table into Excel
  • 37. Using the Query Wizard to Select Data from a Database Lets you choose the data source and select the database table and fields to import into the workbook Prompts you to define criteria for the data you want to import by selecting only rows that meet criteria you specify
  • 38. Using the Query Wizard to Select Data from a Database
  • 39. Making Calculations with Date and Time Data TODAY function Returns current date’s serial number (based on computer’s internal clock) =TODAY() Requires no additional arguments YEARFRAC function Calculates the number of years between the two days =YEARFRAC(start_date,end_date,basis)
  • 40. Using the TODAY Function
  • 41. Using the YEARFRAC Function
  • 42.
  • 43. Analyzing Data Usinga PivotTable Report Interactive report that lets you summarize and analyze a data set Dynamic organization; can be “pivoted” to examine data from various perspectives by rearranging its structure Best used to analyze data that can be summarized in multiple ways
  • 45. PivotTable Added to a Worksheet
  • 46. Analyzing Data Using the Row, Column, and Data Areas To add data to a PivotTable report, drag the field you want to summarize to a drop area on the report Row Area displays data from that field in rows Column Area displays data from that field in rows Data Area summarizes data from that field
  • 49. Adding Fields to the Page Area
  • 50. Evaluating Data Using a PivotChart Report Represents source data (usually from PivotTable report) as a graphic Use Chart Wizard button on PivotTable toolbar Can change layout, data displayed, and chart type
  • 51. Importing Information from the Web into Excel Web query Automated method for retrieving information from a Web page without having to copy and past
  • 52. Level 2 Summary Advantages of using a database to store data that can be exported to Excel for analysis Using the Query Wizard to select specific records in a database and import them into Excel How Excel stores and works with dates and times Using dates in calculations to determine the number of days and years between two dates Creating and using a PivotTable report Using a Web query to import information from the Web into an Excel worksheet to use in calculations
  • 53. Level 3 Objectives: Importing and Exporting XML Data Understand markup languages and XML Import XML data into Excel as an XML list Add an XML map to a workbook Export XML data from Excel into an XML document Map elements in an XML document to a workbook
  • 54. Understanding Markup Languages and XML Markup language Link between content and instructions for formatting that content Uses a set of tags to distinguish different elements in a document Examples HTML (Hypertext Markup Language) SGML (Standardized General Markup Language) XML (Extensible Markup Language)
  • 56. XML Documents User-defined documents in which the user develops a DTD that defines the elements contained in a document and descriptions of how those elements are related to each other Data can be combined with meta-data <shoe> <shoe_ID>SH-1987</shoe_ID> <shoe_name>Running shoe</shoe_name> <description>Men’s size 11, white</description> </shoe>
  • 57. Analyzing XML Data with Excel Import data into worksheet; method depends on the data Import entire XML document as a list (root element, schema) Use XML Source task pane to map elements you need to columns in a list Export XML data as a “well-formed” XML document
  • 58. Importing XML Data as an XML List
  • 59. Importing XML data as an XML list
  • 60. Adding an XML Map to a Workbook
  • 61. Adding an XML Map to a Workbook
  • 62. Adding an XML Map to a Workbook
  • 65. Level 3 Summary Different markup languages, including XML Using an existing XML document to import and XML map in a workbook Mapping XML elements into a worksheet Importing data into an XML list and exporting data to an XML document
  • 66. Chapter Summary Importing and structuring text data in Excel worksheets Analyzing data imported from a database and organizing data with a PivotTable report Importing and exporting XML data