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

Microsoft excel 2010 useful formula & functions
Microsoft excel 2010   useful formula & functionsMicrosoft excel 2010   useful formula & functions
Microsoft excel 2010 useful formula & functions
NR Computer Learning Center
 
M.S EXCEL
M.S EXCELM.S EXCEL
M.S EXCEL
Alvin Maderista
 
03 Excel formulas and functions
03 Excel formulas and functions03 Excel formulas and functions
03 Excel formulas and functionsBuffalo Seminary
 
Excel presentation (short)
Excel presentation (short)Excel presentation (short)
Excel presentation (short)
dhawal mehta
 
Excel functions formulas
Excel functions formulasExcel functions formulas
Excel functions formulasLearnIT@UD
 
Excel2002
Excel2002Excel2002
Excel2002pprinik
 
Excel SUMIFS Function
Excel SUMIFS FunctionExcel SUMIFS Function
Excel SUMIFS Function
Excel
 
Microsoft excel training
Microsoft excel trainingMicrosoft excel training
Microsoft excel trainingEmilyE120
 
functions_in_microsoft_excel_2003
 functions_in_microsoft_excel_2003 functions_in_microsoft_excel_2003
functions_in_microsoft_excel_2003
gaurav jain
 
Mastering Excel Formulas and Functions
Mastering Excel Formulas and FunctionsMastering Excel Formulas and Functions
Mastering Excel Formulas and Functions
LinkedIn Learning Solutions
 
Excel lesson formulas and functions
Excel lesson formulas and functionsExcel lesson formulas and functions
Excel lesson formulas and functionswildman099
 
Excel Solver(By Mahsa Rezaei)
Excel Solver(By Mahsa Rezaei)Excel Solver(By Mahsa Rezaei)
Excel Solver(By Mahsa Rezaei)mahsa rezaei
 
Microsoft Excel Presentation
Microsoft Excel PresentationMicrosoft Excel Presentation
Microsoft Excel Presentation
Ram Bhandari
 
Formula in MS Excel
Formula in MS ExcelFormula in MS Excel
Formula in MS Excel
Muhammad Yasir Bhutta
 
Ms excel training
Ms excel training   Ms excel training
Ms excel training
Jensen Group
 
Excel lesson 01
Excel lesson 01Excel lesson 01
Excel lesson 01
Noah Ark Angel
 

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 Environment
DUSPviz
 
DUSPviz Intro to Illustrator - 2013
DUSPviz Intro to Illustrator - 2013DUSPviz Intro to Illustrator - 2013
DUSPviz Intro to Illustrator - 2013
DUSPviz
 
AFS Connection Instructions
AFS Connection InstructionsAFS Connection Instructions
AFS Connection Instructions
DUSPviz
 
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 Production
DUSPviz
 
Python Programming for ArcGIS: Part I
Python Programming for ArcGIS: Part IPython Programming for ArcGIS: Part I
Python Programming for ArcGIS: Part I
DUSPviz
 
DUSPviz Intro to Photoshop - 2013
DUSPviz Intro to Photoshop - 2013DUSPviz Intro to Photoshop - 2013
DUSPviz Intro to Photoshop - 2013
DUSPviz
 
GIS Orientation 2015
GIS Orientation 2015GIS Orientation 2015
GIS Orientation 2015
DUSPviz
 
Intro to ArcGIS ModelBuilder
Intro to ArcGIS ModelBuilderIntro to ArcGIS ModelBuilder
Intro to ArcGIS ModelBuilder
DUSPviz
 
Easy Steps to Better Maps
Easy Steps to Better MapsEasy Steps to Better Maps
Easy Steps to Better Maps
DUSPviz
 
DUSPviz Rhino 3D Workshop
DUSPviz Rhino 3D WorkshopDUSPviz Rhino 3D Workshop
DUSPviz Rhino 3D Workshop
DUSPviz
 
Review presentation for Orientation 2014
Review presentation for Orientation 2014Review presentation for Orientation 2014
Review presentation for Orientation 2014
DUSPviz
 
Intro to Adobe Illustrator
Intro to Adobe IllustratorIntro to Adobe Illustrator
Intro to Adobe Illustrator
DUSPviz
 
Introduction to InDesign
Introduction to InDesignIntroduction to InDesign
Introduction to InDesign
DUSPviz
 
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
DUSPviz
 
Intro to AutoCAD
Intro to AutoCADIntro to AutoCAD
Intro to AutoCAD
DUSPviz
 
Intro to Microsoft Access
Intro to Microsoft AccessIntro to Microsoft Access
Intro to Microsoft Access
DUSPviz
 

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 beginners
Jitesh Khushalani
 
Excel 2003 tutorial 3
Excel 2003 tutorial 3Excel 2003 tutorial 3
Excel 2003 tutorial 3catacata1976
 
Excel training
Excel trainingExcel training
Excel training
Alexandru Gologan
 
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
vanshikatyagi74
 
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 BANSAL
Rishabh Bansal
 
All About Me
All About MeAll About Me
All About Me
dgardner48
 
All About Me
All About MeAll About Me
All About Me
dgardner48
 
Intro_Excel_FA12.ppt
Intro_Excel_FA12.pptIntro_Excel_FA12.ppt
Intro_Excel_FA12.ppt
rajasekar643931
 
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
parmjeetsingh5014
 
functionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdffunctionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdf
FranzLawrenzDeTorres1
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excel
madhuparna bhowmik
 
Excle
ExcleExcle
Excle
kamal modi
 
Excel for research
Excel  for researchExcel  for research
Excel for research
JamalBhai
 
Excel Basics.ppt
Excel Basics.pptExcel Basics.ppt
Excel Basics.ppt
Anabel Bagdoc
 
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
JoshuaCasas7
 
Intro excel
Intro excelIntro excel
Intro excel
Ujjawal Prakash
 
Lab 4 Excel Basics.ppt
Lab 4 Excel Basics.pptLab 4 Excel Basics.ppt
Lab 4 Excel Basics.ppt
CristianAlfonso20
 
Lab 4 excel basics
Lab 4 excel basicsLab 4 excel basics
Lab 4 excel basics
Prashant07061995
 
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 inkscape
DUSPviz
 
Intro to Tableau Public
Intro to Tableau PublicIntro to Tableau Public
Intro to Tableau Public
DUSPviz
 
Mapping with Adobe CC
Mapping with Adobe CCMapping with Adobe CC
Mapping with Adobe CC
DUSPviz
 
Intro to Adobe Photoshop
Intro to Adobe PhotoshopIntro to Adobe Photoshop
Intro to Adobe Photoshop
DUSPviz
 
Intro to Adobe Illustrator
Intro to Adobe IllustratorIntro to Adobe Illustrator
Intro to Adobe Illustrator
DUSPviz
 
Google Fusion Tables
Google Fusion TablesGoogle Fusion Tables
Google Fusion Tables
DUSPviz
 
Habits of Effective Designers - Handout
Habits of Effective Designers - HandoutHabits of Effective Designers - Handout
Habits of Effective Designers - Handout
DUSPviz
 
Habits of Effective Designers
Habits of Effective DesignersHabits of Effective Designers
Habits of Effective Designers
DUSPviz
 
Intro to Adobe Photoshop
Intro to Adobe PhotoshopIntro to Adobe Photoshop
Intro to Adobe Photoshop
DUSPviz
 
Python Programming for ArcGIS: Part II
Python Programming for ArcGIS: Part IIPython Programming for ArcGIS: Part II
Python Programming for ArcGIS: Part II
DUSPviz
 
The DUSP GIS Data Drive
The DUSP GIS Data DriveThe DUSP GIS Data Drive
The DUSP GIS Data Drive
DUSPviz
 
Drawing for planners_ivanov
Drawing for planners_ivanovDrawing for planners_ivanov
Drawing for planners_ivanov
DUSPviz
 
Art of-presentations
Art of-presentationsArt of-presentations
Art of-presentations
DUSPviz
 
Poster session fall2013_duspviz
Poster session fall2013_duspvizPoster session fall2013_duspviz
Poster session fall2013_duspviz
DUSPviz
 

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

RESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for studentsRESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for students
KAMESHS29
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
mikeeftimakis1
 
UiPath Community Day Dubai: AI at Work..
UiPath Community Day Dubai: AI at Work..UiPath Community Day Dubai: AI at Work..
UiPath Community Day Dubai: AI at Work..
UiPathCommunity
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Aggregage
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Paige Cruz
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
KatiaHIMEUR1
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
Aftab Hussain
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
Safe Software
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
Ralf Eggert
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
Sri Ambati
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
Thijs Feryn
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
nkrafacyberclub
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
sonjaschweigert1
 
Assure Contact Center Experiences for Your Customers With ThousandEyes
Assure Contact Center Experiences for Your Customers With ThousandEyesAssure Contact Center Experiences for Your Customers With ThousandEyes
Assure Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 
Quantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIsQuantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIs
Vlad Stirbu
 

Recently uploaded (20)

RESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for studentsRESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for students
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
 
UiPath Community Day Dubai: AI at Work..
UiPath Community Day Dubai: AI at Work..UiPath Community Day Dubai: AI at Work..
UiPath Community Day Dubai: AI at Work..
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
 
Removing Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software FuzzingRemoving Uninteresting Bytes in Software Fuzzing
Removing Uninteresting Bytes in Software Fuzzing
 
Essentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FMEEssentials of Automations: The Art of Triggers and Actions in FME
Essentials of Automations: The Art of Triggers and Actions in FME
 
PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)PHP Frameworks: I want to break free (IPC Berlin 2024)
PHP Frameworks: I want to break free (IPC Berlin 2024)
 
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdfFIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
FIDO Alliance Osaka Seminar: FIDO Security Aspects.pdf
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
 
Assure Contact Center Experiences for Your Customers With ThousandEyes
Assure Contact Center Experiences for Your Customers With ThousandEyesAssure Contact Center Experiences for Your Customers With ThousandEyes
Assure Contact Center Experiences for Your Customers With ThousandEyes
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 
Quantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIsQuantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIs
 

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…”