SlideShare a Scribd company logo
1 of 28
Download to read offline
Putting the
         Data
 in Data Visualization



Excel                 Access
Excel is a spreadsheet program that allows you to view, create,
       modify, and visualize data. It can also help manage simple
       databases




A typical Excel spreadsheet
Excel
Interface
Ribbon




Excel        The Ribbon displays many of the most commonly used tools. There are
Interface    multiple ribbons that organize tools by category.
Formula Bar




                               Selected Cell




Excel       The Formula Bar displays the formula behind the contents of the selected cell
Interface
Moving and Selecting in Excel
• Arrow keys move to adjacent cells
• Double-click a cell to enter the formula bar and edit contents
   • Tab to end edit and go to cell in next column
   • Return to end edit and go to cell in next row
• Click and drag to select multiple cells
• Click a row number or column letter to select the entire thing
• Click the Select All Arrow to select all cells in the worksheet
                            Select All Arrow
•   Ctrl + Arrow goes to the end of a range
•   Shift + Arrow selects adjacent cells
•   Ctrl + Shift + Arrow selects range
•   Ctrl + Scroll to zoom in and out
Excel
Interface
Freezing rows or columns makes it easier to
navigate around. To freeze the top row:
                 1            2


                              3




 Excel
                    1. Click on the View ribbon 2. Click on Freeze Panes 3. Click Freeze Top Row
 Prepping a dataset
The Auto Filter makes it easy to filter and sort
your data. Here’s how to turn it on:
                                                                 2
1
                                                                 3




    Excel                1. Click on the   2. Click on     3. Click Filter
    Prepping a dataset   Home ribbon       Sort & Filter
You can change the height of a row or the
width of a column to see your data better.
                                             1


                                                    Click on the divider
                                                   bar and drag to resize




 Excel                Selecting multiple columns or    Double-clicking the divider bar
 Prepping a dataset   rows modifies them all at once   auto-sizes to the largest value
You can hide rows or columns to make your
data easier to view. Hidden columns are
marked by a thicker divider bar
                                         1




                                         2




 Excel                1. Select one or       2. Right-click in the
 Prepping a dataset   more columns           selection and click Hide
You can change the way numbers display to
make them easier to read.
                                       2

                                                      1


                                                                                  3




 Excel                1. Select the cells,   2. Click in the bottom-   3. Edit the number
 Prepping a dataset   row, or column         right corner of the       format or display
                                             number options
Sometimes numbers are stored as text. To
operate on these, they need to be numbers.
                                                 1
                                          2

                                          3




 Excel                1. Select cell(s)       2. Click on the    3. Click Convert to
 Prepping a dataset   with a left-            exclamation mark   Number
                      justified number
How Excel handles dates and times:




 Excel                Days are numbered starting at Time is a fraction of a day
 Prepping a dataset   January 1, 1900 (Today is day (Midnight = 0, Noon = 0.5, etc.)
                      40975)
Inserting a Row or Column
                                                                     2

             1                                  1

                 2




 Tip: If you Select multiple rows/columns, Excel will insert an equal
 number of rows/columns
 Excel               1. Select the row/column       2.Right-click and select Insert
 Functions           before which you want to       or click Insert in the Ribbon
                     insert new rows/columns
Using Functions to Calculate Cell Values
             The formula bar displays
             the function you enter
                                   1
                 2
               Excel color-codes
               your cell
               references for
               easy auditing




             1. Type = in          2. Click on cell BD2 to   3. Type / and click
 Excel       Cell BG2              “refer” Excel to the      on cell AG2
 Functions                         value in it
More on Formulas
Basic mathematical operators can be used by
entering a value or cell reference, the operator,
and another value or cell reference.
               +    Add
               -    Subtract
               *    Multiply
               /    Divide
               ^    Exponent
               ()   Order of Operations




 Excel
 Functions
Anatomy of a Formula
                                                       Colon indicates a   Parenthesis
                                                       range – all cells   denotes end
                     Parenthesis denotes               between A2 and A7   of a function
                     start of a function



                =SUMPRODUCT(A2:A7,B2:B7)
                                           Ranges or numbers
                                           separated by commas
A function tells excel to perform                                  Comma denotes
                                           are arguments
a specific set of operations on                                    the next argument
the cells you refer it to




 When you enter a function, a box appears below
 the cell telling you the arguments Excel expects

 Excel
 Functions
Common Formulas and Their Arguments
SUM(Range1,Range2,…)                 Returns the sum of the values
PRODUCT(Number1,Number2,…)           Returns the product of the values
                                     Multiplies each value in range 1 by the
SUMPRODUCT(Range1,Range2,…)
                                     corresponding value in range 2, then sums these
AVERAGE(Range1,Range2,…)             Returns the average of a set of values
MAX(Number1,Number2,…)               Returns the maximum value of a set
MIN(Number1,Number2,…)               Returns the minimum value of a set
COUNT(Range1,Range2,…)               Counts the number of items in a range
                                  Returns the sum of the values in the “sum range”
SUMIF(Range,Criteria,[Sum_Range]) whose associated cell in the “range” is equal to the
                                  “criteria”
                                     Counts the number of items in a range equal to the
COUNTIF(Range,Criteria)
                                     “criteria”

Tip: You can browse all of Excel’s functions, their output, and their
arguments by clicking the fx next to the formula bar
Excel
Functions
Using IF Statements for Conditional Calculation




  1. Enter =IF(   2. Enter the              3. Enter the               4. Enter the
                  condition you’d           value or                   value or
                  like to test              calculation if             calculation if
                  (e.g. B2=0)               the condition is           the condition is
                                            true                       false
                                            (e.g. “”) **               (e.g. A2/B2)

  ** Note: “” is the symbol for a null (blank) cell

 Excel            To propagate a formula to all rows, select the cell with the formula, & double
 Functions        click the black handle in the bottom right corner of the cell
Using Lookups to Associate New Data




 1. Enter    2. Enter the             3. Enter the              4. Enter the
 =VLOOKUP(   value or cell            range from                index number
             you will use to          which you will            of the column
             look up the              look up                   that contains
             data                     (e.g. D1:F6) **           the data you
             (e.g. B2)                                          want



 Excel          Excel only looks for the value you specify from the first column of the
 Functions      “table_array”, so make sure your lookup range is arranged accordingly
Using Lookups to Associate New Data



 By default, when you propagate a formula
 Excel uses relative references, changing
 the input cells each time. For lookups, you
 usually want to be looking up from the
 same range, so these can be converted to
 absolute references, which are denoted by
 a $ before the column and row labels




                          Convert to absolute cell references for “table_array” inserting a $ before
 Excel
                          the column and row of the reference. This can be done by selecting the
 Functions
                          reference and hitting F4 once (⌘+T on a mac).
Excel    SUMIF Allows you to summarize data for different categories and help create
Charts   charts
Creating a Chart
                     2




 1                                                    1




     Tip: Hold Ctrl to select multiple columns at once if they’re not adjacent

 Excel                   1. Select the columns you want          2. Select the Insert ribbon and
 Charts                  as categories and as values             click the type of chart you want
Formatting a Chart

                                             2

1




             You can modify any part of a        To change the values displayed on an axis:
    Excel
             chart by selecting that part,       1. Select and double-click the axis
    Charts
             then double-clicking it             2. Under Axis Options, enter the values you want
About Pivot Tables
 •     Pivot tables allow you to summarize your data
       quickly and flexibly
 •     Within the input range, all cells in the same
       row is considered to be associated with each
       other, and each column is assumed to contain
       a different piece of information
 •     Pivot tables then allow you to use columns as
       categories and others as values to create
       summary tables of your data


 Excel
 Pivot Tables
Creating a Pivot Table
  2

 1




                                                                    3




 Excel          1. Select the data you want      2. Select the Insert   3. Select New
 Pivot Tables   to use in the table, including   Ribbon and click       Worksheet
                the column headers               PivotTable
Using a Pivot Table
                                                      Field List




 Excel          1. Drag the fields you want to use        2. Drag the information you
 Pivot Tables   for rows and columns from the field       want to populate the table to
                list to the label boxes                   the values box
Using a Pivot Table




                                                2



                   1




                To change how the     1. Click on the arrow next to the 2. Select how you want
 Excel
                values are displayed: field in the Values Box and       your data to display
 Pivot Tables
                                      select “Value Field Settings…”

More Related Content

What's hot

What's hot (20)

Microsoft excel 2010 useful formula & functions
Microsoft excel 2010   useful formula & functionsMicrosoft excel 2010   useful formula & functions
Microsoft excel 2010 useful formula & functions
 
Excel300
Excel300Excel300
Excel300
 
M.S EXCEL
M.S EXCELM.S EXCEL
M.S EXCEL
 
03 Excel formulas and functions
03 Excel formulas and functions03 Excel formulas and functions
03 Excel formulas and functions
 
Excel presentation (short)
Excel presentation (short)Excel presentation (short)
Excel presentation (short)
 
Excel
ExcelExcel
Excel
 
Excel functions formulas
Excel functions formulasExcel functions formulas
Excel functions formulas
 
MS Excel 2nd
MS Excel 2ndMS Excel 2nd
MS Excel 2nd
 
Excel2002
Excel2002Excel2002
Excel2002
 
Excel SUMIFS Function
Excel SUMIFS FunctionExcel SUMIFS Function
Excel SUMIFS Function
 
Quicktip excel
Quicktip excelQuicktip excel
Quicktip excel
 
Microsoft excel training
Microsoft excel trainingMicrosoft excel training
Microsoft excel training
 
functions_in_microsoft_excel_2003
 functions_in_microsoft_excel_2003 functions_in_microsoft_excel_2003
functions_in_microsoft_excel_2003
 
Mastering Excel Formulas and Functions
Mastering Excel Formulas and FunctionsMastering Excel Formulas and Functions
Mastering Excel Formulas and Functions
 
Excel lesson formulas and functions
Excel lesson formulas and functionsExcel lesson formulas and functions
Excel lesson formulas and functions
 
Excel Solver(By Mahsa Rezaei)
Excel Solver(By Mahsa Rezaei)Excel Solver(By Mahsa Rezaei)
Excel Solver(By Mahsa Rezaei)
 
Microsoft Excel Presentation
Microsoft Excel PresentationMicrosoft Excel Presentation
Microsoft Excel Presentation
 
Formula in MS Excel
Formula in MS ExcelFormula in MS Excel
Formula in MS Excel
 
Ms excel training
Ms excel training   Ms excel training
Ms excel training
 
Excel lesson 01
Excel lesson 01Excel lesson 01
Excel lesson 01
 

Viewers also liked

Setting up your DUSP ArcGIS Environment
Setting up your DUSP ArcGIS EnvironmentSetting up your DUSP ArcGIS Environment
Setting up your DUSP ArcGIS EnvironmentDUSPviz
 
DUSPviz Intro to Illustrator - 2013
DUSPviz Intro to Illustrator - 2013DUSPviz Intro to Illustrator - 2013
DUSPviz Intro to Illustrator - 2013DUSPviz
 
AFS Connection Instructions
AFS Connection InstructionsAFS Connection Instructions
AFS Connection InstructionsDUSPviz
 
Duspviz website
Duspviz websiteDuspviz website
Duspviz websiteDUSPviz
 
Duspviz sketchup
Duspviz sketchupDuspviz sketchup
Duspviz sketchupDUSPviz
 
DUSPviz2012 InDesign
DUSPviz2012 InDesignDUSPviz2012 InDesign
DUSPviz2012 InDesignDUSPviz
 
Video Production
Video ProductionVideo Production
Video ProductionDUSPviz
 
Python Programming for ArcGIS: Part I
Python Programming for ArcGIS: Part IPython Programming for ArcGIS: Part I
Python Programming for ArcGIS: Part IDUSPviz
 
DUSPviz Intro to Photoshop - 2013
DUSPviz Intro to Photoshop - 2013DUSPviz Intro to Photoshop - 2013
DUSPviz Intro to Photoshop - 2013DUSPviz
 
GIS Orientation 2015
GIS Orientation 2015GIS Orientation 2015
GIS Orientation 2015DUSPviz
 
Intro to ArcGIS ModelBuilder
Intro to ArcGIS ModelBuilderIntro to ArcGIS ModelBuilder
Intro to ArcGIS ModelBuilderDUSPviz
 
Easy Steps to Better Maps
Easy Steps to Better MapsEasy Steps to Better Maps
Easy Steps to Better MapsDUSPviz
 
DUSPviz Rhino 3D Workshop
DUSPviz Rhino 3D WorkshopDUSPviz Rhino 3D Workshop
DUSPviz Rhino 3D WorkshopDUSPviz
 
Review presentation for Orientation 2014
Review presentation for Orientation 2014Review presentation for Orientation 2014
Review presentation for Orientation 2014DUSPviz
 
Intro to Adobe Illustrator
Intro to Adobe IllustratorIntro to Adobe Illustrator
Intro to Adobe IllustratorDUSPviz
 
Introduction to InDesign
Introduction to InDesignIntroduction to InDesign
Introduction to InDesignDUSPviz
 
Seven Habits of Highly Effective Designers - Fall 2013
Seven Habits of Highly Effective Designers - Fall 2013Seven Habits of Highly Effective Designers - Fall 2013
Seven Habits of Highly Effective Designers - Fall 2013DUSPviz
 
Intro to AutoCAD
Intro to AutoCADIntro to AutoCAD
Intro to AutoCADDUSPviz
 
Intro to Microsoft Access
Intro to Microsoft AccessIntro to Microsoft Access
Intro to Microsoft AccessDUSPviz
 

Viewers also liked (19)

Setting up your DUSP ArcGIS Environment
Setting up your DUSP ArcGIS EnvironmentSetting up your DUSP ArcGIS Environment
Setting up your DUSP ArcGIS Environment
 
DUSPviz Intro to Illustrator - 2013
DUSPviz Intro to Illustrator - 2013DUSPviz Intro to Illustrator - 2013
DUSPviz Intro to Illustrator - 2013
 
AFS Connection Instructions
AFS Connection InstructionsAFS Connection Instructions
AFS Connection Instructions
 
Duspviz website
Duspviz websiteDuspviz website
Duspviz website
 
Duspviz sketchup
Duspviz sketchupDuspviz sketchup
Duspviz sketchup
 
DUSPviz2012 InDesign
DUSPviz2012 InDesignDUSPviz2012 InDesign
DUSPviz2012 InDesign
 
Video Production
Video ProductionVideo Production
Video Production
 
Python Programming for ArcGIS: Part I
Python Programming for ArcGIS: Part IPython Programming for ArcGIS: Part I
Python Programming for ArcGIS: Part I
 
DUSPviz Intro to Photoshop - 2013
DUSPviz Intro to Photoshop - 2013DUSPviz Intro to Photoshop - 2013
DUSPviz Intro to Photoshop - 2013
 
GIS Orientation 2015
GIS Orientation 2015GIS Orientation 2015
GIS Orientation 2015
 
Intro to ArcGIS ModelBuilder
Intro to ArcGIS ModelBuilderIntro to ArcGIS ModelBuilder
Intro to ArcGIS ModelBuilder
 
Easy Steps to Better Maps
Easy Steps to Better MapsEasy Steps to Better Maps
Easy Steps to Better Maps
 
DUSPviz Rhino 3D Workshop
DUSPviz Rhino 3D WorkshopDUSPviz Rhino 3D Workshop
DUSPviz Rhino 3D Workshop
 
Review presentation for Orientation 2014
Review presentation for Orientation 2014Review presentation for Orientation 2014
Review presentation for Orientation 2014
 
Intro to Adobe Illustrator
Intro to Adobe IllustratorIntro to Adobe Illustrator
Intro to Adobe Illustrator
 
Introduction to InDesign
Introduction to InDesignIntroduction to InDesign
Introduction to InDesign
 
Seven Habits of Highly Effective Designers - Fall 2013
Seven Habits of Highly Effective Designers - Fall 2013Seven Habits of Highly Effective Designers - Fall 2013
Seven Habits of Highly Effective Designers - Fall 2013
 
Intro to AutoCAD
Intro to AutoCADIntro to AutoCAD
Intro to AutoCAD
 
Intro to Microsoft Access
Intro to Microsoft AccessIntro to Microsoft Access
Intro to Microsoft Access
 

Similar to Excel presentation

Basics of excel for beginners
Basics of excel for beginnersBasics of excel for beginners
Basics of excel for beginnersJitesh Khushalani
 
Excel 2003 tutorial 3
Excel 2003 tutorial 3Excel 2003 tutorial 3
Excel 2003 tutorial 3catacata1976
 
Useful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptxUseful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptxvanshikatyagi74
 
Getting started with_microsoft_excel
Getting started with_microsoft_excelGetting started with_microsoft_excel
Getting started with_microsoft_excelPratiksha Mhatre
 
MIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSAL
MIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSALMIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSAL
MIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSALRishabh Bansal
 
Introduction of Excel and describe the excel
Introduction of Excel and describe the excelIntroduction of Excel and describe the excel
Introduction of Excel and describe the excelparmjeetsingh5014
 
functionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdffunctionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdfFranzLawrenzDeTorres1
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excelmadhuparna bhowmik
 
Excel for research
Excel  for researchExcel  for research
Excel for researchJamalBhai
 
Correlations and Scatterplots MS Excel Lesson 2 Grade 8.ppt
Correlations and Scatterplots MS Excel Lesson 2 Grade 8.pptCorrelations and Scatterplots MS Excel Lesson 2 Grade 8.ppt
Correlations and Scatterplots MS Excel Lesson 2 Grade 8.pptJoshuaCasas7
 
Module 5 entering data in worksheet
Module 5 entering data in worksheetModule 5 entering data in worksheet
Module 5 entering data in worksheetDr. Shalini Pandey
 

Similar to Excel presentation (20)

Basics of excel for beginners
Basics of excel for beginnersBasics of excel for beginners
Basics of excel for beginners
 
Excel 2003 tutorial 3
Excel 2003 tutorial 3Excel 2003 tutorial 3
Excel 2003 tutorial 3
 
Excel training
Excel trainingExcel training
Excel training
 
Useful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptxUseful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptx
 
Getting started with_microsoft_excel
Getting started with_microsoft_excelGetting started with_microsoft_excel
Getting started with_microsoft_excel
 
MIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSAL
MIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSALMIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSAL
MIRCROSOFT EXCEL- brief and useful for beginners by RISHABH BANSAL
 
All About Me
All About MeAll About Me
All About Me
 
All About Me
All About MeAll About Me
All About Me
 
Intro_Excel_FA12.ppt
Intro_Excel_FA12.pptIntro_Excel_FA12.ppt
Intro_Excel_FA12.ppt
 
Introduction of Excel and describe the excel
Introduction of Excel and describe the excelIntroduction of Excel and describe the excel
Introduction of Excel and describe the excel
 
functionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdffunctionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdf
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excel
 
Excle
ExcleExcle
Excle
 
Excel for research
Excel  for researchExcel  for research
Excel for research
 
Excel Basics.ppt
Excel Basics.pptExcel Basics.ppt
Excel Basics.ppt
 
Correlations and Scatterplots MS Excel Lesson 2 Grade 8.ppt
Correlations and Scatterplots MS Excel Lesson 2 Grade 8.pptCorrelations and Scatterplots MS Excel Lesson 2 Grade 8.ppt
Correlations and Scatterplots MS Excel Lesson 2 Grade 8.ppt
 
Intro excel
Intro excelIntro excel
Intro excel
 
Lab 4 Excel Basics.ppt
Lab 4 Excel Basics.pptLab 4 Excel Basics.ppt
Lab 4 Excel Basics.ppt
 
Lab 4 excel basics
Lab 4 excel basicsLab 4 excel basics
Lab 4 excel basics
 
Module 5 entering data in worksheet
Module 5 entering data in worksheetModule 5 entering data in worksheet
Module 5 entering data in worksheet
 

More from DUSPviz

Intro to inkscape
Intro to inkscapeIntro to inkscape
Intro to inkscapeDUSPviz
 
Intro to Tableau Public
Intro to Tableau PublicIntro to Tableau Public
Intro to Tableau PublicDUSPviz
 
Mapping with Adobe CC
Mapping with Adobe CCMapping with Adobe CC
Mapping with Adobe CCDUSPviz
 
Intro to Adobe Photoshop
Intro to Adobe PhotoshopIntro to Adobe Photoshop
Intro to Adobe PhotoshopDUSPviz
 
Intro to Adobe Illustrator
Intro to Adobe IllustratorIntro to Adobe Illustrator
Intro to Adobe IllustratorDUSPviz
 
Google Fusion Tables
Google Fusion TablesGoogle Fusion Tables
Google Fusion TablesDUSPviz
 
Habits of Effective Designers - Handout
Habits of Effective Designers - HandoutHabits of Effective Designers - Handout
Habits of Effective Designers - HandoutDUSPviz
 
Habits of Effective Designers
Habits of Effective DesignersHabits of Effective Designers
Habits of Effective DesignersDUSPviz
 
Intro to Adobe Photoshop
Intro to Adobe PhotoshopIntro to Adobe Photoshop
Intro to Adobe PhotoshopDUSPviz
 
Python Programming for ArcGIS: Part II
Python Programming for ArcGIS: Part IIPython Programming for ArcGIS: Part II
Python Programming for ArcGIS: Part IIDUSPviz
 
The DUSP GIS Data Drive
The DUSP GIS Data DriveThe DUSP GIS Data Drive
The DUSP GIS Data DriveDUSPviz
 
Drawing for planners_ivanov
Drawing for planners_ivanovDrawing for planners_ivanov
Drawing for planners_ivanovDUSPviz
 
Art of-presentations
Art of-presentationsArt of-presentations
Art of-presentationsDUSPviz
 
Poster session fall2013_duspviz
Poster session fall2013_duspvizPoster session fall2013_duspviz
Poster session fall2013_duspvizDUSPviz
 

More from DUSPviz (14)

Intro to inkscape
Intro to inkscapeIntro to inkscape
Intro to inkscape
 
Intro to Tableau Public
Intro to Tableau PublicIntro to Tableau Public
Intro to Tableau Public
 
Mapping with Adobe CC
Mapping with Adobe CCMapping with Adobe CC
Mapping with Adobe CC
 
Intro to Adobe Photoshop
Intro to Adobe PhotoshopIntro to Adobe Photoshop
Intro to Adobe Photoshop
 
Intro to Adobe Illustrator
Intro to Adobe IllustratorIntro to Adobe Illustrator
Intro to Adobe Illustrator
 
Google Fusion Tables
Google Fusion TablesGoogle Fusion Tables
Google Fusion Tables
 
Habits of Effective Designers - Handout
Habits of Effective Designers - HandoutHabits of Effective Designers - Handout
Habits of Effective Designers - Handout
 
Habits of Effective Designers
Habits of Effective DesignersHabits of Effective Designers
Habits of Effective Designers
 
Intro to Adobe Photoshop
Intro to Adobe PhotoshopIntro to Adobe Photoshop
Intro to Adobe Photoshop
 
Python Programming for ArcGIS: Part II
Python Programming for ArcGIS: Part IIPython Programming for ArcGIS: Part II
Python Programming for ArcGIS: Part II
 
The DUSP GIS Data Drive
The DUSP GIS Data DriveThe DUSP GIS Data Drive
The DUSP GIS Data Drive
 
Drawing for planners_ivanov
Drawing for planners_ivanovDrawing for planners_ivanov
Drawing for planners_ivanov
 
Art of-presentations
Art of-presentationsArt of-presentations
Art of-presentations
 
Poster session fall2013_duspviz
Poster session fall2013_duspvizPoster session fall2013_duspviz
Poster session fall2013_duspviz
 

Recently uploaded

Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
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
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
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
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxBkGupta21
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
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
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 

Recently uploaded (20)

Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
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
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
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)
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptx
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
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
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 

Excel presentation

  • 1. Putting the Data in Data Visualization Excel Access
  • 2. Excel is a spreadsheet program that allows you to view, create, modify, and visualize data. It can also help manage simple databases A typical Excel spreadsheet
  • 4. Ribbon Excel The Ribbon displays many of the most commonly used tools. There are Interface multiple ribbons that organize tools by category.
  • 5. Formula Bar Selected Cell Excel The Formula Bar displays the formula behind the contents of the selected cell Interface
  • 6. Moving and Selecting in Excel • Arrow keys move to adjacent cells • Double-click a cell to enter the formula bar and edit contents • Tab to end edit and go to cell in next column • Return to end edit and go to cell in next row • Click and drag to select multiple cells • Click a row number or column letter to select the entire thing • Click the Select All Arrow to select all cells in the worksheet Select All Arrow • Ctrl + Arrow goes to the end of a range • Shift + Arrow selects adjacent cells • Ctrl + Shift + Arrow selects range • Ctrl + Scroll to zoom in and out Excel Interface
  • 7. Freezing rows or columns makes it easier to navigate around. To freeze the top row: 1 2 3 Excel 1. Click on the View ribbon 2. Click on Freeze Panes 3. Click Freeze Top Row Prepping a dataset
  • 8. The Auto Filter makes it easy to filter and sort your data. Here’s how to turn it on: 2 1 3 Excel 1. Click on the 2. Click on 3. Click Filter Prepping a dataset Home ribbon Sort & Filter
  • 9. You can change the height of a row or the width of a column to see your data better. 1 Click on the divider bar and drag to resize Excel Selecting multiple columns or Double-clicking the divider bar Prepping a dataset rows modifies them all at once auto-sizes to the largest value
  • 10. You can hide rows or columns to make your data easier to view. Hidden columns are marked by a thicker divider bar 1 2 Excel 1. Select one or 2. Right-click in the Prepping a dataset more columns selection and click Hide
  • 11. You can change the way numbers display to make them easier to read. 2 1 3 Excel 1. Select the cells, 2. Click in the bottom- 3. Edit the number Prepping a dataset row, or column right corner of the format or display number options
  • 12. Sometimes numbers are stored as text. To operate on these, they need to be numbers. 1 2 3 Excel 1. Select cell(s) 2. Click on the 3. Click Convert to Prepping a dataset with a left- exclamation mark Number justified number
  • 13. How Excel handles dates and times: Excel Days are numbered starting at Time is a fraction of a day Prepping a dataset January 1, 1900 (Today is day (Midnight = 0, Noon = 0.5, etc.) 40975)
  • 14. Inserting a Row or Column 2 1 1 2 Tip: If you Select multiple rows/columns, Excel will insert an equal number of rows/columns Excel 1. Select the row/column 2.Right-click and select Insert Functions before which you want to or click Insert in the Ribbon insert new rows/columns
  • 15. Using Functions to Calculate Cell Values The formula bar displays the function you enter 1 2 Excel color-codes your cell references for easy auditing 1. Type = in 2. Click on cell BD2 to 3. Type / and click Excel Cell BG2 “refer” Excel to the on cell AG2 Functions value in it
  • 16. More on Formulas Basic mathematical operators can be used by entering a value or cell reference, the operator, and another value or cell reference. + Add - Subtract * Multiply / Divide ^ Exponent () Order of Operations Excel Functions
  • 17. Anatomy of a Formula Colon indicates a Parenthesis range – all cells denotes end Parenthesis denotes between A2 and A7 of a function start of a function =SUMPRODUCT(A2:A7,B2:B7) Ranges or numbers separated by commas A function tells excel to perform Comma denotes are arguments a specific set of operations on the next argument the cells you refer it to When you enter a function, a box appears below the cell telling you the arguments Excel expects Excel Functions
  • 18. Common Formulas and Their Arguments SUM(Range1,Range2,…) Returns the sum of the values PRODUCT(Number1,Number2,…) Returns the product of the values Multiplies each value in range 1 by the SUMPRODUCT(Range1,Range2,…) corresponding value in range 2, then sums these AVERAGE(Range1,Range2,…) Returns the average of a set of values MAX(Number1,Number2,…) Returns the maximum value of a set MIN(Number1,Number2,…) Returns the minimum value of a set COUNT(Range1,Range2,…) Counts the number of items in a range Returns the sum of the values in the “sum range” SUMIF(Range,Criteria,[Sum_Range]) whose associated cell in the “range” is equal to the “criteria” Counts the number of items in a range equal to the COUNTIF(Range,Criteria) “criteria” Tip: You can browse all of Excel’s functions, their output, and their arguments by clicking the fx next to the formula bar Excel Functions
  • 19. Using IF Statements for Conditional Calculation 1. Enter =IF( 2. Enter the 3. Enter the 4. Enter the condition you’d value or value or like to test calculation if calculation if (e.g. B2=0) the condition is the condition is true false (e.g. “”) ** (e.g. A2/B2) ** Note: “” is the symbol for a null (blank) cell Excel To propagate a formula to all rows, select the cell with the formula, & double Functions click the black handle in the bottom right corner of the cell
  • 20. Using Lookups to Associate New Data 1. Enter 2. Enter the 3. Enter the 4. Enter the =VLOOKUP( value or cell range from index number you will use to which you will of the column look up the look up that contains data (e.g. D1:F6) ** the data you (e.g. B2) want Excel Excel only looks for the value you specify from the first column of the Functions “table_array”, so make sure your lookup range is arranged accordingly
  • 21. Using Lookups to Associate New Data By default, when you propagate a formula Excel uses relative references, changing the input cells each time. For lookups, you usually want to be looking up from the same range, so these can be converted to absolute references, which are denoted by a $ before the column and row labels Convert to absolute cell references for “table_array” inserting a $ before Excel the column and row of the reference. This can be done by selecting the Functions reference and hitting F4 once (⌘+T on a mac).
  • 22. Excel SUMIF Allows you to summarize data for different categories and help create Charts charts
  • 23. Creating a Chart 2 1 1 Tip: Hold Ctrl to select multiple columns at once if they’re not adjacent Excel 1. Select the columns you want 2. Select the Insert ribbon and Charts as categories and as values click the type of chart you want
  • 24. Formatting a Chart 2 1 You can modify any part of a To change the values displayed on an axis: Excel chart by selecting that part, 1. Select and double-click the axis Charts then double-clicking it 2. Under Axis Options, enter the values you want
  • 25. About Pivot Tables • Pivot tables allow you to summarize your data quickly and flexibly • Within the input range, all cells in the same row is considered to be associated with each other, and each column is assumed to contain a different piece of information • Pivot tables then allow you to use columns as categories and others as values to create summary tables of your data Excel Pivot Tables
  • 26. Creating a Pivot Table 2 1 3 Excel 1. Select the data you want 2. Select the Insert 3. Select New Pivot Tables to use in the table, including Ribbon and click Worksheet the column headers PivotTable
  • 27. Using a Pivot Table Field List Excel 1. Drag the fields you want to use 2. Drag the information you Pivot Tables for rows and columns from the field want to populate the table to list to the label boxes the values box
  • 28. Using a Pivot Table 2 1 To change how the 1. Click on the arrow next to the 2. Select how you want Excel values are displayed: field in the Values Box and your data to display Pivot Tables select “Value Field Settings…”