The 'Excel 3D Scatter Plot' macro The Manual
|
|
|
- Catherine Dawson
- 10 years ago
- Views:
Transcription
1 The 'Excel 3D Scatter Plot' macro The Manual Copyleft by Gabor Doka, Switzerland, reach the author under: scaplo {at} doka {dot} ch A very quick introduction: A first chart 1. Open the workbook "3Dscatterplot.xls" that contains the necessary macros. 2. In a trial workbook enter some data you want to display in three columns (x,y,z). 3. Optionally you can enter a header column containing text labels for each point. 4. Leave 10 empty rows above the data range and one empty column to the left. 5. Select the data (3 columns) or the data + label text (4 columns). Don't select the top row containing labels for the three axes. 6. Run the macro "Make3DscatterplotFromDataRange" and wait a moment (5 10 seconds, longer, if data labels are involved) 4 columns selected (step 5) looks like this: (label text, X, Y, Z) With the created scroll bars i.e you can rotate the viewpoint and move 3 orthogonal projection planes (= cut planes). Coloring the chart points according to z value: (What follows will change the color palette of your whole workbook and all its contained sheets. If color-coded info is important in your workbook, please try this on a trial workbook only). 7. Run the macro "MakeNiceGradientColorPalette" 8. Select a chart series in the plot 9. Run the macro "ColorSeriesPoints" and choose 3 in the dialog The basic workings of these macros are explained in the steps above. If you want to be better informed, read on. page 1 of 9
2 The Extended Manual A very quick introduction:... 1 A first chart...1 The Extended Manual D scatter plot...2 Interactive Display...2 Remove projection planes...2 Adding more data points...2 Removing data points...3 Bounding box...3 3D Realism...3 Data labels...3 Re-doing a plot...4 Changing the Color Palette...4 Color coding...5 Behaviour of color information to changing data...5 Coloring the projection planes...5 Marker formatting...5 Color legend...6 Changing the color palette again...6 Going 4-dimensional... 6 Changing marker color...6 Changing the marker sizes...7 Please note: Bubble sizes are in 3D...7 FAQ Troubleshooting... 7 "Nothing happens when I move the scroll bars."...7 "When I run the macro 'ColorSeriesPoints' I get an error."...7 "I get some other error when I run the macros."...7 "I cannot format the gridlines?"...8 "How do I set the chart to the original orientation?"...8 "If I look at the definition of the data series it says something like '=SERIES(,Workbook1!ABC_xs, Workbook1!ABC_ys,1)'. Where is this data range on the worksheet?"...8 "I have messed up the color palette of my workbook. Help!"...8 "Your examples show semi-transparent color, yet my charts have only solid colors."...8 Contact... 8 Legalese... 8 For programmers: encountered VBA weirdness: D scatter plot Interactive Display If automatic calculation is on, changes in the source data (x, y, z coordinates) are immediately reflected in the position of points in the chart (dynamic data). If manual calculation is on, you need to recalculate the sheet to see changes in data points. Similarly changes of scroll bar positions for 3D rotation and projection planes are only shown after a recalculation. Change automatic/manual calculation in the menu command "Preferences.../Calculation". Remove projection planes If you don't want the projection planes (cut planes) just select the corresponding points and delete the series. You can also delete the cut plane scroll bars on the sheet without impediment. Adding more data points Appending data in the rows at the bottom of the existing data table will not include this data in the chart. Inserting additional rows within the existing data table will include this data dynamically in the chart (the defined names used for the chart are related to the location of top and bottom row of the selected table. If rows are inserted within the table, Excel will adapt the names to include page 2 of 9
3 these new rows ). Adding rows after plot creation can however corrupt data point label display. So it is best to have the final number of data points assembled in a table before creating the plot. Removing data points You can delete any medium rows in the data table. One you have created a plot, you should not remove the first (top) or the last (bottom) row, since these are needed to define the displayed data range. If you remove either of those rows, the plot calculation is corrupted and no data will be displayed. You can delete medium rows even after plot creation, and the plot will adapt to the changes in data range. Removing rows after plot creation can however corrupt data point label display. So it is best to have the final number of data points assembled in a table before creating the plot. Bounding box The charting space is defined by the minimal and maximal values in the source data at the moment of creation. If later theses boundaries are exceeded through data changes or additional data rows, the bounding box will adapt dynamically. 3D Realism Regardless of what you perceive in the 3D scatter chart, it is still essentially a regular, built-in 2D scatter plot (XY). So Excel is not aware of which points are "in front" of others in 3D space. The only thing determining if a point is plotted on top of another is series sequence and point sequence (e.g. all points of series number 2 are plotted over the points of series number 1. And e.g. point number 5 can be plotted over point number 4 of the same series). A good way to obtain 3D realism in the standard "looking down on XY plane" projection, is to sort values of the data table in order of ascending z values prior to creating a chart. Data labels If four columns of data are selected in step 5 of the plot creation, the macro "Make3DscatterplotFromDataRange" assumes that the 1 st column contains text for individual labels for the data points. A dynamic data label is created for each data point ('dynamic data label' means that the text in the header cell is linked to the data label: change the text in the cell and the text in the data label will change accordingly). The macro additionally looks in the row directly above the selected data range, for labels of the three axes. If it finds label text, it creates a dynamic data label for the axis. If it finds empty cells, it provides a default text ("X axis", "Y axis" etc.). If you don t want any such labels on the axis, enter a single space in the cells of the row directly above the data range. Data labels are created for data points at the moment when the macro is run. If later data is added by inserting rows, these data points will be shown, but will not automatically contain a label. To obtain a chart with labels for all points, the macro "Make3DscatterplotFromDataRange" needs to be run again, to create a new chart. Dynamic data labels can be pretty useful, especially for large datasets. You can, for example, label conditionally certain points, to highlight them. In a cell for a data label you could enter a formula like: =IF(X>5, Z, "") where X and Z are the cell references to the x and z coordinates of the point, respectively. This will label points in the chart with the z value of a point, only if x meets the condition. For labels it might be convenient to apply rounding, so that labels are not cluttered with too many digits. So instead to display a label like " " you can apply the ROUND function on a number X: page 3 of 9
4 X (cell reference value) Result =ROUND(X, 0) =ROUND(X, 0) =ROUND(X, 0) =ROUND(X, 3) =ROUND(X, 3) =ROUND(X, 3) =ROUND(X, -2) 1200 Please note the effects of the second parameter, which can be positive or negative. In science, one usually does not want a fixed number of decimal places behind or in front of the decimal point, but a certain number of information carrying digits, so called significant digits. Excel does not contain a function to round numbers to a certain number of significant digits, but this is easily reproduced with: =ROUND(X, 3 - INT(LOG(ABS(X))) - 1) This formula will round X to 3 significant decimal places. If X is zero, this formula will produce an error. So, prevent this by writing: =IF(VALUE(X)=0,X,ROUND(X, 3 - INT(LOG(ABS(X))) - 1)) This formula is entered in some label cells on the sheet 'sample plot'. X (cell reference value) Rounded to 3 significant digits Result With these formulas you can create versatile data labels, that won't be too extensive. Re-doing a plot If you have created a plot, the VBA code has placed some 100 names in the sheet and added the six scroll bar controls on top of the data range. If you repeat the plot creation, the VBA code will add another 100 names and add new scroll bars. This can needlessly clutter up your sheet. Before repeating plot creation it is best to remove the scroll bars and also the names. Use the macro 'DeleteAllNames' or 'DeleteCertainNames' where you can specify a character sequence the names to be deleted must contain. Changing the Color Palette Sometimes especially with many data points it might be hard to distinguish data points, since all are the same color. With the macros "MakeNiceGradientColorPalette" and "ColorSeriesPoints" you achieve to add a color gradient the data points according to their z axis value. The macro "ColorSeriesPoints" works only with data series in 3Dscatterplots that were created with the "Make3DscatterplotFromDataRange". The cells containing the data values will be receive a color fill according to the used color scheme. This is not interactive (changing the color fill in the cell won't change the color of the data point), but it might help identify single points. With a small data set, colored data cells might be used as a legend. For reasons unknown I was not able to color single data points with different colors using to the flexible RGB coloring scheme (=16 million colors). I only succeed with colors off the less flexible standard color palette (56 colors). The macro "MakeNiceGradientColorPalette" makes the tailing 50 of the 56 standard colors into a nice, smooth color gradient (blue violet red orange yellow). The first color numbers 1 to 5 (black, white, red, green, blue) are left untouched. page 4 of 9
5 The Standard color palette, before. and after the macro "MakeNiceGradientColorPalette" has been run. However, two usually minor drawbacks: Standard color palettes are defined per workbook. This macro changes almost all of the standard 56 colors in the active workbook. This could adversely affect colors in charts and cells (see pictures below). If e.g. cell colors have an important meaning in your workbook, make the scatter plot in a separate workbook. 50 different color shades are used for coloring points which should be ample in most cases. It means that the z-axis is divided equally into 50 coloring layers. The gradient will not contain more than 50 colors and is thus unable to represent small relative differences in z values. This is how a standard pie chart looks like, after the macro "MakeNiceGradientColorPalette" has been run. The differences in color might be too slight to be recognizable (think of print versions, or the color-blind). Solution: make the scatter plot in a separate workbook to avoid messing up other charts and color information in your project. After the palette change, the standard color 'light yellow' is changed to a dark purple in this workbook. This could puzzle users, who are asked to enter values in yellow cells. Color coding Behaviour of color information to changing data The color-coded info in the chart (i.e. points colored according to z value) is generated at the moment when the macro "ColorSeriesPoints" is run. The colors will not be dynamically adapted. If later the z values change, the points in the chart will not change their colors accordingly, but only their positions. You need to run the macro "ColorSeriesPoints" again, to obtain an updated color coding. Similarly, the color legend created will not dynamically adapted, if the minimal or the maximal values of the data changes. Run the macro "ColorSeriesPoints" again, to obtain an updated color legend. Coloring the projection planes Try selecting points from a projection plane (cut plane) and run the macro "ColorSeriesPoints". Marker formatting Marker sizes, marker types and transparency of the series are set by the macro. Manual changes of the appearance of a data series by the user are possible, but strangely Excel then looses the color-coded info. For example, if you ask for a smaller marker size for a series in the "Data Series Formatting" dialog, you will get uniform marker colors for all data points. Manual changes on the appearance of individual points of the series by the user are however possible. page 5 of 9
6 Color legend When you color data points with the macro "ColorSeriesPoints", a color legend is created at the right side of the chart. This is a group of drawing shapes (circles and text boxes). It is drawn outside of the chart area. If you want it inside the chart, then simply paste it into the chart area (select legend; copy; select chart; paste). The legend displays values from smallest values encountered (top) to largest values (bottom). If you want to reverse that order, grab hold of a top corner of the legend group and drag down for twice as far as the legend is long. Changing the color palette again 3D-Chart is drawn with the currently defined color palette. If the colors palette is changed later 1, colors of data points are not updated, i.e. adapted to the new palette, but retain their old color (apparently as an RGB value). Colored fills of worksheet cells however are adapted to a changed standard color palette (MSExcel apparently has its very own idea of what a standard color palette should accomplish). Also the color legend displayed right to the chart will adapt colors, since they are created from standard drawing shapes (circles and text boxes). So either choose initially the palette you want to stick to, or rerun the macro "ColorSeriesPoints" to update color info to a changed color palette. If you really need several different color palettes for your charts, you need to keep them in separate workbooks (if you need to display charts with different color palettes in the same workbook, there is a trick: link a chart from another workbook as a hyperlink. Choose the source chart, copy, go to the destination workbook and choose the menu command "paste as hyperlink". Color palette of the source should be retained). It is best to apply color coding to points only when you are quite sure that the data extent and values won't change anymore. Going 4-dimensional Changing marker color The macro "ColorSeriesPoints" lets you choose which column shall be used to color the data series. Column 3 (= z axis values) are preselected. But you can also choose x-axis (=1), y- axis (=2) or even one of the columns right of the z-axis columns. This allows you to color data points according to a fourth, independent parameter in a 4 th column. With this you can create actually a 4- dimensional plot, the 4 dimensions being x, y, z, and color. This also lets you create plots with more than one series. If you put a class number in the 4 th column, you can color markers according to this, which result in a plot which discerns data points by adherence to a class (all x,y,z, and class data must still be contained in one row each of the data table). 1 As yet, there is no real interface in these macros to create user-defined color palettes and the macro "MakeNiceGradientColorPalette" produces always the same palette. However you can alter variables within the macro code to obtain other palettes. The code also contains examples for combinations of variables that produce different palettes in the bottom part of the code. page 6 of 9
7 Changing the marker sizes (3D bubble plot) In response to a user request, I added the possibility to change the marker sizes of the main series according to an additional column of data. So we actually get a 4D plot: An x/y/z-position and an additional size data i.e. spheres in 3D. To use this you need to do the following: 1. Create a 3d plot as outlined in the chapter 'A first chart' (without colouring the points) 2. In the column immediately right of the data table (4 th column) enter the bubble sizes you want to plot. 3. In the plot select the main chart series points by clicking once on a point. 4. Run the macro 'SizeSeriesPoints' The macro crates a size legend right of the plot (this is a group of drawing shapes). The assignment of marker sizes and the legend is static, i.e. it won't update if the underlying data changes 2. If the data changes you need to select the data series and re-run the macro 'SizeSeriesPoints' (steps 3 and 4 from above). Please note: Bubble sizes are in 3D Since they are perceived as 3D bubbles (i.e. spheres in 3D) the radius of the bubbles is proportional to the third root of the value in the 4th column 3. If the radius were directly proportional to the data, the large values would unjustifiably dominate the visually impression (this is a frequently lamented example of bad charting). I.e. the perceived volume of the bubbles represents the value displayed (not the radius nor the projected circular area). FAQ Troubleshooting "Nothing happens when I move the scroll bars." You probably got the automatic calculation set to 'manual'. Change calculation mode to 'automatic' in the menu command "Preferences.../Calculation". For workbooks with very extendend calculations, this can slow down performance considerably. "When I run the macro 'ColorSeriesPoints' I get an error." You need to select a data series in the chart before running this macro. And it has to be a series in a chart created by the macro "Make3DscatterplotFromDataRange" otherwise the macro will not find the pertinent values. Be sure to select the points of the series, not the data labels (check your selection in the name field, usually in top left corner) "I get some other error when I run the macros." Please contact me (Gabor Doka: scaplo {at} doka {dot} ch) and describe which of the various macros you were running, what version of Excel you are working with, what operating system your computer has (Windows/Mac), screencapture/text of the error messsage you get, 2 Excel has not provisioned automatic adjustments of marker sizes in this type of chart. I tried marrying a standard XL bubble plot with my 3D scatterplot (which is based on a standard XL 2D scatter plot), which would have assured the bubbles sizes are always automatically updated, but Excel won't allow such combinations :-( 3 I.e. the largest value V max gets the largest displayed marker size, which is 72 points. For any other value V the displayed marker size is then given by 3 (V/Vmax) 72 where 3 is the third root. page 7 of 9
8 and possibly the VBA code line that is displayed when you choose "Debug..." in the error dialog. "I cannot format the gridlines?" What looks like a 3D scatterplot is in reality a built-in 2D (XY) scatterplot, that the macro uses to display where points in a 3D scatterplot would appear. The tick marks you see are also a dedicated series with labels to simulate automatic tick marks. So this chart does not have all the functionalities that normal Excel charts have. "How do I set the chart to the original orientation?" After you have played with the scroll bars it can become difficult to move the plot into the original orientation. Simply go to the row headed "angles" and enter the values 120, 180, and 70 in the three cells to the right. "If I look at the definition of the data series it says something like '=SERIES(,Workbook1!ABC_xs, Workbook1!ABC_ys,1)'. Where is this data range on the worksheet?" This data is nowhere on the sheet. The macro defines 100+ of hidden names, which contain all the necessary projection calculations, based on the raw data range you selected. The names 'ABC_xs' and 'ABC_ys' in the series definition are such hidden names, where 'ABC' is the series name you gave after starting the macro. The advantage of this is that your worksheet is not cluttered with calculation junk; the disadvantage is that you cannot exactly see which data series relates to which data range. For the example above, the source data ranges are named 'ABC_datx', 'ABC_daty', and 'ABC_datz'. Similar names are defined for each chart. These ranges are displayed, when you choose the menu command "Edit/Goto...". "I have messed up the color palette of my workbook. Help!" Choose the Excel menu command "Preferences/Colors" where you find a reset button. This reestablishes the original default 56 color palette. If you did use a non-default color palette to begin with, i.e. colors were already changed in your workbook, then this user-defined palette is probably lost, unless you can re-establish it from a backup (but I warned you to use a trial wookbook). "Your examples show semi-transparent color, yet my charts have only solid colors." Excel has introduced transparent colors with version 8 (Excel 97), I think. If you are running a version earlier than that, the macro can't assign transparent colors. Ability to display transparent colors depends also on hardware (graphics processor). Contact If you encounter other problems, please contact me: Gabor Doka: scaplo {at} doka {dot} ch You are also welcome to send me any nice scatterplots you created with these macros in either form (as PNGs, JPEGs, GIFs, XLS) Legalese Copyleft Gabor Doka <scaplo {at} doka {dot} ch> page 8 of 9
9 Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License ( Version 1.1 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front- Cover Texts, and with no Back-Cover Texts. The 'Excel 3D Scatter Plot' macros are provided free of charge. They may be distributed freely provided that all the macro and documentation are always distributed together, in whole and unchanged. The 'Excel 3D Scatter Plot' macros may not be sold or offered for sale, or included with another software product offered for sale. Companies that distribute public domain/freeware/shareware software for profit are expressly prohibited from distributing the 'Excel 3D Scatter Plot' macros. The 'Excel 3D Scatter Plot' macros come with ABSOLUTELY NO WARRANTY. These are free softwares, and you are welcome to redistribute them under certain conditions. See GNU General Public License ( for details. For programmers: encountered VBA weirdness: One cannot change the color of a single point of a chart with VBA unless all points of the series are previously formatted the same. One cannot change the color of a single point of a chart with VBA using the RGB color definitions. The obvious command ActiveChart.Series(1).Point(i).MarkerBackgroundColor = RGB(re, gr, bl) does not work as one would imagine. The RGB color will be changed to a similar IndexColor from the Standard color palette. That's why I had to resort to using the IndexColor palette. The charting macro relies heavily on defining names. A definition that in the Names Definition Dialog (Menu command "Insert/Names/Define ") might for example be displayed as e.g. vx ={0\1\0\1} (array with four elements). Such a name must be programmed in VBA as ActiveWorkbook.Names.Add Name:="vx", RefersTo:="={0,1,0,1}". I.e. delimiters in VBA are commas, although back-slashes are used in the menu dialog. page 9 of 9
Excel -- Creating Charts
Excel -- Creating Charts The saying goes, A picture is worth a thousand words, and so true. Professional looking charts give visual enhancement to your statistics, fiscal reports or presentation. Excel
Intro to Excel spreadsheets
Intro to Excel spreadsheets What are the objectives of this document? The objectives of document are: 1. Familiarize you with what a spreadsheet is, how it works, and what its capabilities are; 2. Using
Plotting: Customizing the Graph
Plotting: Customizing the Graph Data Plots: General Tips Making a Data Plot Active Within a graph layer, only one data plot can be active. A data plot must be set active before you can use the Data Selector
Information Literacy Program
Information Literacy Program Excel (2013) Advanced Charts 2015 ANU Library anulib.anu.edu.au/training [email protected] Table of Contents Excel (2013) Advanced Charts Overview of charts... 1 Create a chart...
Final Software Tools and Services for Traders
Final Software Tools and Services for Traders TPO and Volume Profile Chart for NinjaTrader Trial Period The software gives you a 7-day free evaluation period starting after loading and first running the
Differences in Use between Calc and Excel
Differences in Use between Calc and Excel Title: Differences in Use between Calc and Excel: Version: 1.0 First edition: October 2004 Contents Overview... 3 Copyright and trademark information... 3 Feedback...3
Chapter 4 Creating Charts and Graphs
Calc Guide Chapter 4 OpenOffice.org Copyright This document is Copyright 2006 by its contributors as listed in the section titled Authors. You can distribute it and/or modify it under the terms of either
Drawing a histogram using Excel
Drawing a histogram using Excel STEP 1: Examine the data to decide how many class intervals you need and what the class boundaries should be. (In an assignment you may be told what class boundaries to
Creating Charts in Microsoft Excel A supplement to Chapter 5 of Quantitative Approaches in Business Studies
Creating Charts in Microsoft Excel A supplement to Chapter 5 of Quantitative Approaches in Business Studies Components of a Chart 1 Chart types 2 Data tables 4 The Chart Wizard 5 Column Charts 7 Line charts
Create Charts in Excel
Create Charts in Excel Table of Contents OVERVIEW OF CHARTING... 1 AVAILABLE CHART TYPES... 2 PIE CHARTS... 2 BAR CHARTS... 3 CREATING CHARTS IN EXCEL... 3 CREATE A CHART... 3 HOW TO CHANGE THE LOCATION
Microsoft Excel 2010 Charts and Graphs
Microsoft Excel 2010 Charts and Graphs Email: [email protected] Web Page: http://training.health.ufl.edu Microsoft Excel 2010: Charts and Graphs 2.0 hours Topics include data groupings; creating
Excel Tutorial. Bio 150B Excel Tutorial 1
Bio 15B Excel Tutorial 1 Excel Tutorial As part of your laboratory write-ups and reports during this semester you will be required to collect and present data in an appropriate format. To organize and
Figure 1. An embedded chart on a worksheet.
8. Excel Charts and Analysis ToolPak Charts, also known as graphs, have been an integral part of spreadsheets since the early days of Lotus 1-2-3. Charting features have improved significantly over the
Data representation and analysis in Excel
Page 1 Data representation and analysis in Excel Let s Get Started! This course will teach you how to analyze data and make charts in Excel so that the data may be represented in a visual way that reflects
Advanced Microsoft Excel 2010
Advanced Microsoft Excel 2010 Table of Contents THE PASTE SPECIAL FUNCTION... 2 Paste Special Options... 2 Using the Paste Special Function... 3 ORGANIZING DATA... 4 Multiple-Level Sorting... 4 Subtotaling
Plots, Curve-Fitting, and Data Modeling in Microsoft Excel
Plots, Curve-Fitting, and Data Modeling in Microsoft Excel This handout offers some tips on making nice plots of data collected in your lab experiments, as well as instruction on how to use the built-in
Computer Training Centre University College Cork. Excel 2013 Pivot Tables
Computer Training Centre University College Cork Excel 2013 Pivot Tables Table of Contents Pivot Tables... 1 Changing the Value Field Settings... 2 Refreshing the Data... 3 Refresh Data when opening a
Microsoft Excel 2010 Part 3: Advanced Excel
CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Excel 2010 Part 3: Advanced Excel Winter 2015, Version 1.0 Table of Contents Introduction...2 Sorting Data...2 Sorting
How to make a line graph using Excel 2007
How to make a line graph using Excel 2007 Format your data sheet Make sure you have a title and each column of data has a title. If you are entering data by hand, use time or the independent variable in
KaleidaGraph Quick Start Guide
KaleidaGraph Quick Start Guide This document is a hands-on guide that walks you through the use of KaleidaGraph. You will probably want to print this guide and then start your exploration of the product.
Excel Unit 4. Data files needed to complete these exercises will be found on the S: drive>410>student>computer Technology>Excel>Unit 4
Excel Unit 4 Data files needed to complete these exercises will be found on the S: drive>410>student>computer Technology>Excel>Unit 4 Step by Step 4.1 Creating and Positioning Charts GET READY. Before
Introduction to Microsoft Excel 2007/2010
to Microsoft Excel 2007/2010 Abstract: Microsoft Excel is one of the most powerful and widely used spreadsheet applications available today. Excel's functionality and popularity have made it an essential
EXCEL Tutorial: How to use EXCEL for Graphs and Calculations.
EXCEL Tutorial: How to use EXCEL for Graphs and Calculations. Excel is powerful tool and can make your life easier if you are proficient in using it. You will need to use Excel to complete most of your
Excel Project Creating a Stock Portfolio Simulation
Background Vocabulary Excel Project Creating a Stock Portfolio Simulation 1. What is a stock? A stock is a share in the ownership of a corporation, a large business organization. A stock, also, represents
How to Use Excel for Law Firm Billing
How to Use Excel for Law Firm Billing FEATURED FACULTY: Staci Warne, Microsoft Certified Trainer (MCT) (801) 463-1213 [email protected] Staci Warne, Microsoft Certified Trainer (MCT) Staci Warne
Excel 2010: Create your first spreadsheet
Excel 2010: Create your first spreadsheet Goals: After completing this course you will be able to: Create a new spreadsheet. Add, subtract, multiply, and divide in a spreadsheet. Enter and format column
Working with Spreadsheets
osborne books Working with Spreadsheets UPDATE SUPPLEMENT 2015 The AAT has recently updated its Study and Assessment Guide for the Spreadsheet Software Unit with some minor additions and clarifications.
This activity will show you how to draw graphs of algebraic functions in Excel.
This activity will show you how to draw graphs of algebraic functions in Excel. Open a new Excel workbook. This is Excel in Office 2007. You may not have used this version before but it is very much the
Microsoft Excel 2010 Tutorial
1 Microsoft Excel 2010 Tutorial Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze data and
SECTION 2-1: OVERVIEW SECTION 2-2: FREQUENCY DISTRIBUTIONS
SECTION 2-1: OVERVIEW Chapter 2 Describing, Exploring and Comparing Data 19 In this chapter, we will use the capabilities of Excel to help us look more carefully at sets of data. We can do this by re-organizing
Excel Working with Data Lists
Excel Working with Data Lists Excel Working with Data Lists Princeton University COPYRIGHT Copyright 2001 by EZ-REF Courseware, Laguna Beach, CA http://www.ezref.com/ All rights reserved. This publication,
3 What s New in Excel 2007
3 What s New in Excel 2007 3.1 Overview of Excel 2007 Microsoft Office Excel 2007 is a spreadsheet program that enables you to enter, manipulate, calculate, and chart data. An Excel file is referred to
APPLYING BENFORD'S LAW This PDF contains step-by-step instructions on how to apply Benford's law using Microsoft Excel, which is commonly used by
APPLYING BENFORD'S LAW This PDF contains step-by-step instructions on how to apply Benford's law using Microsoft Excel, which is commonly used by internal auditors around the world in their day-to-day
Scientific Graphing in Excel 2010
Scientific Graphing in Excel 2010 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.
MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11
MS Excel Handout: Level 2 elearning Department 2016 Page 1 of 11 Contents Excel Environment:... 3 To create a new blank workbook:...3 To insert text:...4 Cell addresses:...4 To save the workbook:... 5
Analyzing Excel Data Using Pivot Tables
NDUS Training and Documentation Analyzing Excel Data Using Pivot Tables Pivot Tables are interactive worksheet tables you can use to quickly and easily summarize, organize, analyze, and compare large amounts
Basic Excel Handbook
2 5 2 7 1 1 0 4 3 9 8 1 Basic Excel Handbook Version 3.6 May 6, 2008 Contents Contents... 1 Part I: Background Information...3 About This Handbook... 4 Excel Terminology... 5 Excel Terminology (cont.)...
GelAnalyzer 2010 User s manual. Contents
GelAnalyzer 2010 User s manual Contents 1. Starting GelAnalyzer... 2 2. The main window... 2 3. Create a new analysis... 2 4. The image window... 3 5. Lanes... 3 5.1 Detect lanes automatically... 3 5.2
Microsoft Excel 2010 Pivot Tables
Microsoft Excel 2010 Pivot Tables Email: [email protected] Web Page: http://training.health.ufl.edu Microsoft Excel 2010: Pivot Tables 1.5 hours Topics include data groupings, pivot tables, pivot
Advanced Excel 10/20/2011 1
Advanced Excel Data Validation Excel has a feature called Data Validation, which will allow you to control what kind of information is typed into cells. 1. Select the cell(s) you wish to control. 2. Click
Using Excel for descriptive statistics
FACT SHEET Using Excel for descriptive statistics Introduction Biologists no longer routinely plot graphs by hand or rely on calculators to carry out difficult and tedious statistical calculations. These
Working with Excel in Origin
Working with Excel in Origin Limitations When Working with Excel in Origin To plot your workbook data in Origin, you must have Excel version 7 (Microsoft Office 95) or later installed on your computer
GUIDELINES FOR PREPARING POSTERS USING POWERPOINT PRESENTATION SOFTWARE
Society for the Teaching of Psychology (APA Division 2) OFFICE OF TEACHING RESOURCES IN PSYCHOLOGY (OTRP) Department of Psychology, Georgia Southern University, P. O. Box 8041, Statesboro, GA 30460-8041
Graphing Parabolas With Microsoft Excel
Graphing Parabolas With Microsoft Excel Mr. Clausen Algebra 2 California State Standard for Algebra 2 #10.0: Students graph quadratic functions and determine the maxima, minima, and zeros of the function.
Charting LibQUAL+(TM) Data. Jeff Stark Training & Development Services Texas A&M University Libraries Texas A&M University
Charting LibQUAL+(TM) Data Jeff Stark Training & Development Services Texas A&M University Libraries Texas A&M University Revised March 2004 The directions in this handout are written to be used with SPSS
PERFORMING REGRESSION ANALYSIS USING MICROSOFT EXCEL
PERFORMING REGRESSION ANALYSIS USING MICROSOFT EXCEL John O. Mason, Ph.D., CPA Professor of Accountancy Culverhouse School of Accountancy The University of Alabama Abstract: This paper introduces you to
0 Introduction to Data Analysis Using an Excel Spreadsheet
Experiment 0 Introduction to Data Analysis Using an Excel Spreadsheet I. Purpose The purpose of this introductory lab is to teach you a few basic things about how to use an EXCEL 2010 spreadsheet to do
Excel 2010 Sorting and Filtering
Excel 2010 Sorting and Filtering Computer Training Centre, UCC, [email protected], 021-4903749/3751/3752 Table of Contents Sorting Data... 1 Sort Order... 1 Sorting by Cell Colour, Font Colour or Cell Icon...
The following is an overview of lessons included in the tutorial.
Chapter 2 Tutorial Tutorial Introduction This tutorial is designed to introduce you to some of Surfer's basic features. After you have completed the tutorial, you should be able to begin creating your
Excel 2007 Basic knowledge
Ribbon menu The Ribbon menu system with tabs for various Excel commands. This Ribbon system replaces the traditional menus used with Excel 2003. Above the Ribbon in the upper-left corner is the Microsoft
Microsoft Excel Tutorial
Microsoft Excel Tutorial Microsoft Excel spreadsheets are a powerful and easy to use tool to record, plot and analyze experimental data. Excel is commonly used by engineers to tackle sophisticated computations
Spreadsheet software for linear regression analysis
Spreadsheet software for linear regression analysis Robert Nau Fuqua School of Business, Duke University Copies of these slides together with individual Excel files that demonstrate each program are available
The Center for Teaching, Learning, & Technology
The Center for Teaching, Learning, & Technology Instructional Technology Workshops Microsoft Excel 2010 Formulas and Charts Albert Robinson / Delwar Sayeed Faculty and Staff Development Programs Colston
Introduction Course in SPSS - Evening 1
ETH Zürich Seminar für Statistik Introduction Course in SPSS - Evening 1 Seminar für Statistik, ETH Zürich All data used during the course can be downloaded from the following ftp server: ftp://stat.ethz.ch/u/sfs/spsskurs/
TIPS FOR DOING STATISTICS IN EXCEL
TIPS FOR DOING STATISTICS IN EXCEL Before you begin, make sure that you have the DATA ANALYSIS pack running on your machine. It comes with Excel. Here s how to check if you have it, and what to do if you
MetroBoston DataCommon Training
MetroBoston DataCommon Training Whether you are a data novice or an expert researcher, the MetroBoston DataCommon can help you get the information you need to learn more about your community, understand
Computer Skills Microsoft Excel Creating Pie & Column Charts
Computer Skills Microsoft Excel Creating Pie & Column Charts In this exercise, we will learn how to display data using a pie chart and a column chart, color-code the charts, and label the charts. Part
Dealing with Data in Excel 2010
Dealing with Data in Excel 2010 Excel provides the ability to do computations and graphing of data. Here we provide the basics and some advanced capabilities available in Excel that are useful for dealing
STATGRAPHICS Online. Statistical Analysis and Data Visualization System. Revised 6/21/2012. Copyright 2012 by StatPoint Technologies, Inc.
STATGRAPHICS Online Statistical Analysis and Data Visualization System Revised 6/21/2012 Copyright 2012 by StatPoint Technologies, Inc. All rights reserved. Table of Contents Introduction... 1 Chapter
Visualization with Excel Tools and Microsoft Azure
Visualization with Excel Tools and Microsoft Azure Introduction Power Query and Power Map are add-ins that are available as free downloads from Microsoft to enhance the data access and data visualization
Using Excel for Business Analysis: A Guide to Financial Modelling Fundamentals
Excel 2003 Instructions Using Excel for Business Analysis: A Guide to Financial Modelling Fundamentals contains extensive instructions for using Excel 2010 and Excel for Mac 2011. There are a few instances
Microsoft Excel Training - Course Topic Selections
Microsoft Excel Training - Course Topic Selections The Basics Creating a New Workbook Navigating in Excel Moving the Cell Pointer Using Excel Menus Using Excel Toolbars: Hiding, Displaying, and Moving
Communicate: In Print
Communicate: In Print A simple guide Work areas Communicate: In Print has two different modes in which to edit your documents: Create and Adjust modes. These are easily interchangeable and the toolbars
Appendix 2.1 Tabular and Graphical Methods Using Excel
Appendix 2.1 Tabular and Graphical Methods Using Excel 1 Appendix 2.1 Tabular and Graphical Methods Using Excel The instructions in this section begin by describing the entry of data into an Excel spreadsheet.
TIBCO Spotfire Business Author Essentials Quick Reference Guide. Table of contents:
Table of contents: Access Data for Analysis Data file types Format assumptions Data from Excel Information links Add multiple data tables Create & Interpret Visualizations Table Pie Chart Cross Table Treemap
Chapter 4 Displaying and Describing Categorical Data
Chapter 4 Displaying and Describing Categorical Data Chapter Goals Learning Objectives This chapter presents three basic techniques for summarizing categorical data. After completing this chapter you should
STC: Descriptive Statistics in Excel 2013. Running Descriptive and Correlational Analysis in Excel 2013
Running Descriptive and Correlational Analysis in Excel 2013 Tips for coding a survey Use short phrases for your data table headers to keep your worksheet neat, you can always edit the labels in tables
Blender Notes. Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine
Blender Notes Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine The Blender Game Engine This week we will have an introduction to the Game Engine build
MARS STUDENT IMAGING PROJECT
MARS STUDENT IMAGING PROJECT Data Analysis Practice Guide Mars Education Program Arizona State University Data Analysis Practice Guide This set of activities is designed to help you organize data you collect
Microsoft Excel. Qi Wei
Microsoft Excel Qi Wei Excel (Microsoft Office Excel) is a spreadsheet application written and distributed by Microsoft for Microsoft Windows and Mac OS X. It features calculation, graphing tools, pivot
EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002
EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 Table of Contents Part I Creating a Pivot Table Excel Database......3 What is a Pivot Table...... 3 Creating Pivot Tables
Visualization Quick Guide
Visualization Quick Guide A best practice guide to help you find the right visualization for your data WHAT IS DOMO? Domo is a new form of business intelligence (BI) unlike anything before an executive
Excel 2007 - Using Pivot Tables
Overview A PivotTable report is an interactive table that allows you to quickly group and summarise information from a data source. You can rearrange (or pivot) the table to display different perspectives
Q&As: Microsoft Excel 2013: Chapter 2
Q&As: Microsoft Excel 2013: Chapter 2 In Step 5, why did the date that was entered change from 4/5/10 to 4/5/2010? When Excel recognizes that you entered a date in mm/dd/yy format, it automatically formats
Interactive Excel Spreadsheets:
Interactive Excel Spreadsheets: Constructing Visualization Tools to Enhance Your Learner-centered Math and Science Classroom Scott A. Sinex Department of Physical Sciences and Engineering Prince George
Excel Intermediate Session 2: Charts and Tables
Excel Intermediate Session 2: Charts and Tables Agenda 1. Introduction (10 minutes) 2. Tables and Ranges (5 minutes) 3. The Report Part 1: Creating and Manipulating Tables (45 min) 4. Charts and other
ORACLE BUSINESS INTELLIGENCE WORKSHOP
ORACLE BUSINESS INTELLIGENCE WORKSHOP Creating Interactive Dashboards and Using Oracle Business Intelligence Answers Purpose This tutorial shows you how to build, format, and customize Oracle Business
University of Southern California Marshall Information Services
University of Southern California Marshall Information Services Determine Breakeven Price Using Excel - Using Goal Seek, Data Tables, Vlookup & Charts This guide covers how to determine breakeven price
EXCEL 2007. Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development
Information Technology MS Office Excel 2007 Users Guide EXCEL 2007 Using Excel for Data Query & Management IT Training & Development (818) 677-1700 [email protected] http://www.csun.edu/training TABLE
INTRODUCTION TO EXCEL
INTRODUCTION TO EXCEL 1 INTRODUCTION Anyone who has used a computer for more than just playing games will be aware of spreadsheets A spreadsheet is a versatile computer program (package) that enables you
Using the Advanced Tier Data Collection Tool. A Troubleshooting Guide
Using the Advanced Tier Data Collection Tool A Troubleshooting Guide Table of Contents Mouse Click the heading to jump to the page Enable Content/ Macros... 4 Add a new student... 6 Data Entry Screen...
Instructions for Creating a Poster for Arts and Humanities Research Day Using PowerPoint
Instructions for Creating a Poster for Arts and Humanities Research Day Using PowerPoint While it is, of course, possible to create a Research Day poster using a graphics editing programme such as Adobe
Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP
Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP Consolidate Data in Multiple Worksheets Example data is saved under Consolidation.xlsx workbook under ProductA through ProductD
Getting Started with Excel 2008. Table of Contents
Table of Contents Elements of An Excel Document... 2 Resizing and Hiding Columns and Rows... 3 Using Panes to Create Spreadsheet Headers... 3 Using the AutoFill Command... 4 Using AutoFill for Sequences...
Plotting Data with Microsoft Excel
Plotting Data with Microsoft Excel Here is an example of an attempt to plot parametric data in a scientifically meaningful way, using Microsoft Excel. This example describes an experience using the Office
Using Excel As A Database
Using Excel As A Database Access is a great database application, but let s face it sometimes it s just a bit complicated! There are a lot of times when it would be nice to have some of the capabilities
Microsoft Excel Tips & Tricks
Microsoft Excel Tips & Tricks Collaborative Programs Research & Evaluation TABLE OF CONTENTS Introduction page 2 Useful Functions page 2 Getting Started with Formulas page 2 Nested Formulas page 3 Copying
Handout: How to Use Excel 2010
How to Use Excel 2010 Table of Contents THE EXCEL ENVIRONMENT... 4 MOVE OR SCROLL THROUGH A WORKSHEET... 5 USE THE SCROLL BARS TO MOVE THROUGH A WORKSHEET... 5 USE THE ARROW KEYS TO MOVE THROUGH A WORKSHEET...
CREATING EXCEL PIVOT TABLES AND PIVOT CHARTS FOR LIBRARY QUESTIONNAIRE RESULTS
CREATING EXCEL PIVOT TABLES AND PIVOT CHARTS FOR LIBRARY QUESTIONNAIRE RESULTS An Excel Pivot Table is an interactive table that summarizes large amounts of data. It allows the user to view and manipulate
Excel 2007: Basics Learning Guide
Excel 2007: Basics Learning Guide Exploring Excel At first glance, the new Excel 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This
Kingsoft Spreadsheet 2012
Kingsoft Spreadsheet 2012 Kingsoft Spreadsheet is a flexible and efficient commercial spreadsheet application. It is widely used by professionals in many fields such as: Business, Finance, Economics and
Formulas, Functions and Charts
Formulas, Functions and Charts :: 167 8 Formulas, Functions and Charts 8.1 INTRODUCTION In this leson you can enter formula and functions and perform mathematical calcualtions. You will also be able to
Using Excel 2003 with Basic Business Statistics
Using Excel 2003 with Basic Business Statistics Introduction Use this document if you plan to use Excel 2003 with Basic Business Statistics, 12th edition. Instructions specific to Excel 2003 are needed
Easy Map Excel Tool USER GUIDE
Easy Map Excel Tool USER GUIDE Overview Easy Map tool provides basic maps showing customized data, by Ontario health unit geographies. This tool will come in handy especially when there is no dedicated
Data exploration with Microsoft Excel: analysing more than one variable
Data exploration with Microsoft Excel: analysing more than one variable Contents 1 Introduction... 1 2 Comparing different groups or different variables... 2 3 Exploring the association between categorical
Tools for Excel Modeling. Introduction to Excel2007 Data Tables and Data Table Exercises
Tools for Excel Modeling Introduction to Excel2007 Data Tables and Data Table Exercises EXCEL REVIEW 2009-2010 Preface Data Tables are among the most useful of Excel s tools for analyzing data in spreadsheet
Excel 2003 Tutorial I
This tutorial was adapted from a tutorial by see its complete version at http://www.fgcu.edu/support/office2000/excel/index.html Excel 2003 Tutorial I Spreadsheet Basics Screen Layout Title bar Menu bar
"Excel with Excel 2013: Pivoting with Pivot Tables" by Venu Gopalakrishna Remani. October 28, 2014
Teaching Excellence and Innovation 1 Pivot table Pivot table does calculations with criteria Data should be arranged as : Field names in the first rows, records in rows No blank rows or blank columns should
I. Create the base view with the data you want to measure
Developing Key Performance Indicators (KPIs) in Tableau The following tutorial will show you how to create KPIs in Tableau 9. To get started, you will need the following: Tableau version 9 Data: Sample
