Data Management for Multi-Environment Trials in Excel

Size: px
Start display at page:

Download "Data Management for Multi-Environment Trials in Excel"

Transcription

1 Data Management for Multi-Environment Trials in Excel Cathy Garlick Statistical Services Centre, University of Reading, UK 27 May 2010

2 1. Introduction Excel is widely available and easy to use, and thus, is frequently used in agricultural research for entering and managing data. However, it is easy to use badly. The Statistical Services Centre has produced a guide on using Excel with discipline, available from the SSC web site - the booklet is entitled Disciplined Use of Spreadsheets for Data Entry. This is recommended reading for all researchers using Excel. In this supplement we emphasise the use of Excel for preparing data from multi-environment trials (METs) for analysis. 2. List Format Many users of Excel are tempted to make their spreadsheets look pretty ; effectively laying out the data in tabular form. The following is a simple example for an experiment with 3 treatments and 4 breeds of hen. The number of eggs laid and the cholesterol levels in the blood were measured. The researcher laid out the data in table format as shown below: This layout is fine for a summary report but is not suitable for analysis. Instead you should store your data in a List Format. List format is a rectangular block of data where the rows represent cases and the columns represent variables for experimental data these are generally factors or measurement variables. The list should include column headers. When transferring to a statistics package the column headers are generally used as variable names. There should be no blank rows in the data a statistics package will often interpret a blank row as the end of the data. Each column should have the same data type throughout a statistics package often determines the data type from the first few rows of data. So the data for our example experiment should be stored as follows:

3 The layout is less pretty but more practical. You can always use Pivot Tables to create the summary table from the list. Note we have included a longer description of the variable in the top row with a short variable name in row 2. It is useful to have the longer description, although some statistics packages restrict variable names to 8 characters and do not allow spaces. Thus, we have the description in row 1 and the shorter name in row 2. When the data are exported, we would export from row 2 onwards. 3. Multiple Site Experiments In multiple site experiments the same rules apply, for example, data from all plots in all sites should be together in one list. A column should be added to distinguish the site. This is illustrated below: The last case for site 1 is on row 14, and the first case for site 2 is on row 15. Do not attempt to make this prettier by adding blank rows between sites - there should be no blank rows in the data as this is often interpreted as the end of the data.

4 If the layout factors differ at some sites, then include extra columns and leave blanks as appropriate. For example let s assume site 1 has blocks as a layout factor, but site 2 has ROWs and COLUMNs 1 ; we need 3 columns for the layout factors and would leave blanks for site 1 for ROW and COLUMN and blanks for site 2 for block : 4. Dealing with Numeric Codes Many variables are set up as numeric codes. For example let s assume we have codes associated with districts as follows: District Code District Name 1 Nsitu 2 Kalulu 3 Mkanda 4 Dididi 5 Chitunda 6 Linga 7 Mwansamba 8 Nkhunga The best way to deal with these codes is to enter just the numeric code in the main data sheet. Then, on a separate sheet, enter the list of codes with the district names this is like a codebook. You can then use the Vlookup function in Excel to include the district names in a new column in the main sheet. So we would have a sheet which we ll call Codes, shown below: 1 Note when we say ROW and COLUMN using capital letters we are referring to rows and columns as used in agricultural experiments. When we use local case letters we are referring to rows and columns in the Excel spreadsheet.

5 This is our lookup table or code list. On the main data sheet shown below, we have entered the district code into column A. We insert a new column B and use the vlookup function as shown: Note the formula vlookup (A3, Codes!$A$2:$B$9, 2, FALSE) in cell B3. Vlookup takes 4 parameters: The first in this case A3 is the reference for the cell containing the value we are looking up. In this case A3 contains the value 1. The second parameter Codes!$A$2:$B$9 defines the range of cells, which defines the lookup table or code list. In this example it is the range of cells A2:B9 on the sheet named Codes. Note, here we use absolute cell references (i.e. with the $ signs), so that if we copy this formula the reference remains the same. The third parameter specifies the column in the lookup table from where we should take the value. In this case it is column 2, i.e. column B. Thus in our example, Excel will look for a 1 in the first column of the range A2:B9 on the sheet called Codes. It then takes the corresponding value in column B, i.e. the second column. There is a 1 in cell A2 so the function returns the value in B2 which is Nsitu. The fourth parameter is TRUE or FALSE and determines the action if the code is not found in the lookup table. If you choose TRUE, Excel will return the nearest value; if you choose

6 FALSE it will give the result as #N/A. For example, our coding table includes codes from 1 to 8 if we were to look up the value of 9, then Excel would consider this 4 th parameter. If TRUE, it would find the nearest value which is 8 and return Nkhunga; if FALSE it would return #N/A. For most cases it is best to use FALSE so you can easily see if you have used invalid codes. This method of using codes improves data quality, as you are only typing the text values once entering text values repeatedly can lead to errors. Note you should not attempt to change the district names in the main data sheet if the district is wrong you should change the code and the name will automatically update. If the district name has a mistake, then change it in the Codes sheet. 5. Importing Excel data into a Statistics Package Note that when Excel data are imported into statistics packages, it is the values that are imported and not the formulae. Therefore, if the data mentioned above with the district codes and names were imported into Genstat, changing the district code in Genstat would not automatically change the district name. You must be aware that once you start importing data into other packages you are producing copies of the data, and it is important to keep all copies up-to-date or to have some level of version control. A typical scenario is that a researcher has the data in Excel and imports it into Genstat. She then notices an error which she corrects in Genstat. Meanwhile, another researcher takes the Excel data into STATA where he notices a different error, which he corrects within STATA. There are now 3 copies of the data, all slightly different and none of them totally correct. The solution is to designate the Excel file as the MASTER dataset. If and when errors are found, the correction must be made immediately in the MASTER dataset and ideally a log should be kept of the change so that others using the data will be aware of the change. The corrected data can then be reimported into the statistics package and analysis can continue or be rerun. In most statistics packages it is possible to save the syntax for any analysis you do, so rerunning the analysis should not be a problem. 6. Raw data and Results It is advisable to keep raw data and results on separate sheets in the Excel file. For example Pivot tables and graphs should not be on the same sheet with the raw data. Some researchers like to include summaries (totals and averages) at the end of the data again we would recommend storing these summaries on a separate sheet otherwise you will have problems when exporting the data. 7. Calculations As far as possible, all calculations should be done using formulae in Excel. For example, in the dataset below we have the Fresh Pod Weight in column H and the Sample Grain weight in column I; to calculate the Total grain per plot we use the formula I*H as shown below.

7 We keep the formulae in the spreadsheet so that the values can easily be checked in this case we would not enter values into column K but only the formulae. Doing calculations by hand and entering the results into the spreadsheet can and will lead to errors both in the calculations themselves and in the transcription of the results let the computer do the boring work! 8. Data at different levels Often you will have data at different levels. For example you may have data at the plot level and at the plant level; or data at the site or district level, as well as plot level data. Data at different levels should be stored on separate sheets in the workbook to avoid unnecessary duplication, which can lead to errors. There must be a column or variable which links the 2 sets of data. The example below shows some data from a pigeon pea experiment. Note the farmers are identified by a code (Farmer ID). We also have data at the farmer level, which are shown below:

8 The data are linked by the FarmerID, which appears in both sheets. Data from the farmer level can be displayed in the pigeon pea sheet using Vlookup. The example below shows farm size a farmer level variable included with the pigeon pea data. This is an extension of using Vlookup to display labels for numeric codes. Here we just have more columns in our lookup table, the range for which is A3:K57, so we have 11 columns in the table and we are picking data from the 10 th column. In each sheet you should be able to determine what each row represents e.g. one row per plot, one row per farmer, etc. You should know the number of plots, farmers and other subjects in your experiment, and easily check that you have the correct number of rows. If you have 10 farmers, you must have 10 rows of data at the farmer level; if you have 50 plots in total, you must have 50 rows of data at the plot level. 9. One item per cell dealing with repetitions and missing data A single cell in an Excel spreadsheet must only contain a single item. Two or more numbers in the same cell will be treated as a text value, and will not be unusable. The examples below to the left show where the diameter was measured twice for each tree; this should be split into two columns as shown in the example below to the right.

9 Where data are missing, the cell should be left blank in Excel. You might want to include the reason for the missing value, and this can be done by giving the explanation as a comment or in a separate column. In this example, the tree in row 15 died and the text Dead was entered instead of the diameter measurements. This is text in an otherwise numeric column, which will cause problems and should be avoided. The cells should be left blank and a comment added explaining the missing data as shown below. 10. Sorting the data Data should be entered and stored in field collection order. There is no need to sort the data. The layout factors can be entered prior to data collection, and the spreadsheet printed and used as a data collection sheet.

10 Sorting the sheet can lead to problems and it is easy in Excel to accidentally sort a single column. It is important to check your data after every manipulation, and of course to keep backup copies of your data. 11. Summary The ideas introduced here can be summarised into a set of rules or recommendations as follows: 1. Store the data in List format ; 2. Data from a multiple site experiment should be combined into a single worksheet, not a separate sheet of file for each location; 3. Do not have blank rows in the data; 4. Keep data and results separate; 5. Let the computer do the calculations don t do hand calculations; 6. Store data at different levels on separate sheets; 7. Use vlookup for coded data and to link data at different levels; 8. Only enter one item per cell; 9. Do not include text in numeric columns use comments instead; 10. Keep regular backups of all your data; 11. Designate a MASTER dataset and ensure all corrections are made to this dataset.

Disciplined Use of Spreadsheet Packages for Data Entry

Disciplined Use of Spreadsheet Packages for Data Entry Disciplined Use of Spreadsheet Packages for Data Entry January 2001 The University of Reading Statistical Services Centre Biometrics Advisory and Support Service to DFID Contents 1. Introduction 3 2. An

More information

Using Excel for Statistics Tips and Warnings

Using Excel for Statistics Tips and Warnings Using Excel for Statistics Tips and Warnings November 2000 University of Reading Statistical Services Centre Biometrics Advisory and Support Service to DFID Contents 1. Introduction 3 1.1 Data Entry and

More information

How to Excel with CUFS Part 2 Excel 2010

How to Excel with CUFS Part 2 Excel 2010 How to Excel with CUFS Part 2 Excel 2010 Course Manual Finance Training Contents 1. Working with multiple worksheets 1.1 Inserting new worksheets 3 1.2 Deleting sheets 3 1.3 Moving and copying Excel worksheets

More information

The Role of a Database Package for Research Projects

The Role of a Database Package for Research Projects The Role of a Database Package for Research Projects November 2000 The University of Reading Statistical Services Centre Biometrics Advisory and Support Service to DFID Contents 1. Introduction 3 2. Data

More information

Multi-Environment Trials: Data Quality Guide

Multi-Environment Trials: Data Quality Guide Multi-Environment Trials: Data Quality Guide Thomas Mawora (tmawora@yahoo.com ), Maseno University, Kenya Cathy Garlick (c.a.garlick@reading.ac.uk), Statistical Services Centre, University of Reading,

More information

Working with Spreadsheets

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.

More information

Case Study No. 6. Good practice in data management

Case Study No. 6. Good practice in data management Case Study No. 6 Good practice in data management This Case Study is drawn from the DFID-funded Farming Systems Integrated Pest Management (FSIPM) Project conducted between 1996 and 1999 in Blantyre-Shire

More information

Microsoft Excel 2007 Mini Skills Overview of Tables

Microsoft Excel 2007 Mini Skills Overview of Tables To make managing and analyzing a group of related data easier, you can turn a range of cells into a Microsoft Office Excel table (previously known as an Excel list). A table typically contains related

More information

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700 Information Technology MS Access 2007 Users Guide ACCESS 2007 Importing and Exporting Data Files IT Training & Development (818) 677-1700 training@csun.edu TABLE OF CONTENTS Introduction... 1 Import Excel

More information

Creating A Grade Sheet With Microsoft Excel

Creating A Grade Sheet With Microsoft Excel Creating A Grade Sheet With Microsoft Excel Microsoft Excel serves as an excellent tool for tracking grades in your course. But its power is not limited to its ability to organize information in rows and

More information

Excel 2007 Tutorials - Video File Attributes

Excel 2007 Tutorials - Video File Attributes Get Familiar with Excel 2007 42.40 3.02 The Excel 2007 Environment 4.10 0.19 Office Button 3.10 0.31 Quick Access Toolbar 3.10 0.33 Excel 2007 Ribbon 3.10 0.26 Home Tab 5.10 0.19 Insert Tab 3.10 0.19 Page

More information

Sample- for evaluation only. Advanced Excel. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc.

Sample- for evaluation only. Advanced Excel. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2010 Advanced Excel TeachUcomp, Inc. it s all about you Copyright: Copyright 2010 by TeachUcomp, Inc. All rights reserved. This publication,

More information

Excel 2003 Tutorials - Video File Attributes

Excel 2003 Tutorials - Video File Attributes Using Excel Files 18.00 2.73 The Excel Environment 3.20 0.14 Opening Microsoft Excel 2.00 0.12 Opening a new workbook 1.40 0.26 Opening an existing workbook 1.50 0.37 Save a workbook 1.40 0.28 Copy a workbook

More information

Designed by Jason Wagner, Course Web Programmer, Office of e-learning ZPRELIMINARY INFORMATION... 1 LOADING THE INITIAL REPORT... 1 OUR EXAMPLE...

Designed by Jason Wagner, Course Web Programmer, Office of e-learning ZPRELIMINARY INFORMATION... 1 LOADING THE INITIAL REPORT... 1 OUR EXAMPLE... Excel & Cognos Designed by Jason Wagner, Course Web Programmer, Office of e-learning ZPRELIMINARY INFORMATION... 1 LOADING THE INITIAL REPORT... 1 OUR EXAMPLE... 2 DEFINED NAMES... 2 BUILDING THE DASHBOARD:

More information

Data Management Guidelines for Experimental Projects

Data Management Guidelines for Experimental Projects Data Management Guidelines for Experimental Projects March 1998 The University of Reading Statistical Services Centre Biometrics Advisory and Support Service to DFID Contents 1. Introduction 3 2. What

More information

Research Data Management. Peter Muraya, ICRAF, Kenya Cathy Garlick, SSC, UK Richard Coe, ICRAF, Kenya

Research Data Management. Peter Muraya, ICRAF, Kenya Cathy Garlick, SSC, UK Richard Coe, ICRAF, Kenya Research Data Management Peter Muraya, ICRAF, Kenya Cathy Garlick, SSC, UK Richard Coe, ICRAF, Kenya The World Agroforestry Centre (ICRAF) is the international leader in Agroforestry - the science and

More information

Tommy B. Harrington 104 Azalea Drive Greenville, NC 27858 Email: tommy@tommyharrington.com

Tommy B. Harrington 104 Azalea Drive Greenville, NC 27858 Email: tommy@tommyharrington.com M o s t U s e f u l E x c e l C o m m a n d s Tommy B. Harrington 104 Azalea Drive Greenville, NC 27858 Email: tommy@tommyharrington.com Computer Training YOU Can Understand! Most Useful Excel Commands

More information

Advanced Excel 10/20/2011 1

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

More information

CHAPTER 6: ANALYZE MICROSOFT DYNAMICS NAV 5.0 DATA IN MICROSOFT EXCEL

CHAPTER 6: ANALYZE MICROSOFT DYNAMICS NAV 5.0 DATA IN MICROSOFT EXCEL Chapter 6: Analyze Microsoft Dynamics NAV 5.0 Data in Microsoft Excel CHAPTER 6: ANALYZE MICROSOFT DYNAMICS NAV 5.0 DATA IN MICROSOFT EXCEL Objectives The objectives are: Explain the process of exporting

More information

Microsoft Office 2010: Access 2010, Excel 2010, Lync 2010 learning assets

Microsoft Office 2010: Access 2010, Excel 2010, Lync 2010 learning assets Microsoft Office 2010: Access 2010, Excel 2010, Lync 2010 learning assets Simply type the id# in the search mechanism of ACS Skills Online to access the learning assets outlined below. Titles Microsoft

More information

Performing Simple Calculations Using the Status Bar

Performing Simple Calculations Using the Status Bar Excel Formulas Performing Simple Calculations Using the Status Bar If you need to see a simple calculation, such as a total, but do not need it to be a part of your spreadsheet, all you need is your Status

More information

BSBITU402A Develop and use complex spreadsheets

BSBITU402A Develop and use complex spreadsheets BSBITU402A Develop and use complex spreadsheets Revision Number: 1 BSBITU402A Develop and use complex spreadsheets Modification History Not applicable. Unit Descriptor Unit descriptor This unit describes

More information

INTRODUCTION TO EXCEL

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

More information

Monte Carlo Simulation. SMG ITS Advanced Excel Workshop

Monte Carlo Simulation. SMG ITS Advanced Excel Workshop Advanced Excel Workshop Monte Carlo Simulation Page 1 Contents Monte Carlo Simulation Tutorial... 2 Example 1: New Marketing Campaign... 2 VLOOKUP... 5 Example 2: Revenue Forecast... 6 Pivot Table... 8

More information

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

More information

Data Analysis with Microsoft Excel 2003

Data Analysis with Microsoft Excel 2003 Data Analysis with Microsoft Excel 2003 Working with Lists: Microsoft Excel is an excellent tool to manage and manipulate lists. With the information you have in a list, you can sort and display data that

More information

University of Southern California Marshall Information Services

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

More information

Excel Database Management Microsoft Excel 2003

Excel Database Management Microsoft Excel 2003 Excel Database Management Microsoft Reference Guide University Technology Services Computer Training Copyright Notice Copyright 2003 EBook Publishing. All rights reserved. No part of this publication may

More information

Excel 2010: Create your first spreadsheet

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

More information

Microsoft Excel 2010 Training. Use Excel tables to manage information

Microsoft Excel 2010 Training. Use Excel tables to manage information Microsoft Excel 2010 Training Use Excel tables to manage information Overview: Help with data management In this course, you ll learn how to manage information by using tables in Excel. Tables make it

More information

Technical White Paper. Automating the Generation and Secure Distribution of Excel Reports

Technical White Paper. Automating the Generation and Secure Distribution of Excel Reports Technical White Paper Automating the Generation and Secure Distribution of Excel Reports Table of Contents Introduction...3 Creating Spreadsheet Reports: A Cumbersome and Manual Process...3 Distributing

More information

Monthly Payroll to Finance Reconciliation Report: Access and Instructions

Monthly Payroll to Finance Reconciliation Report: Access and Instructions Monthly Payroll to Finance Reconciliation Report: Access and Instructions VCU Reporting Center... 2 Log in... 2 Open Folder... 3 Other Useful Information: Copying Sheets... 5 Creating Subtotals... 5 Outlining

More information

By: Peter K. Mulwa MSc (UoN), PGDE (KU), BSc (KU) Email: Peter.kyalo@uonbi.ac.ke

By: Peter K. Mulwa MSc (UoN), PGDE (KU), BSc (KU) Email: Peter.kyalo@uonbi.ac.ke SPREADSHEETS FOR MARKETING & SALES TRACKING - DATA ANALYSIS TOOLS USING MS EXCEL By: Peter K. Mulwa MSc (UoN), PGDE (KU), BSc (KU) Email: Peter.kyalo@uonbi.ac.ke Objectives By the end of the session, participants

More information

EXCEL 2007 VLOOKUP FOR BUDGET EXAMPLE

EXCEL 2007 VLOOKUP FOR BUDGET EXAMPLE EXCEL 2007 VLOOKUP FOR BUDGET EXAMPLE 1 The primary reports used in the budgeting process, particularly for Financial Review, are the Quarterly Financial Review Reports. These expense and revenue reports

More information

Information Technology Grades 11-12. Students will know and be able to: Basic Operations 1.1 (I)

Information Technology Grades 11-12. Students will know and be able to: Basic Operations 1.1 (I) Information Technology Grades 11-12 Basic Operations, Concepts, and Productivity Tools Basic Operations Word Processing Database Students will know and be able to: Identify the platform, version, properties,

More information

Overview What is a PivotTable? Benefits

Overview What is a PivotTable? Benefits Overview What is a PivotTable? Benefits Create a PivotTable Select Row & Column labels & Values Filtering & Sorting Calculations Data Details Refresh Data Design options Create a PivotChart Slicers Charts

More information

Microsoft Office Word 2010: Level 1

Microsoft Office Word 2010: Level 1 Microsoft Office Word 2010: Level 1 Workshop Objectives: In this workshop, you will learn fundamental Word 2010 skills. You will start by getting acquainted with the Word user interface, creating a new

More information

Task Force on Technology / EXCEL

Task Force on Technology / EXCEL Task Force on Technology EXCEL Basic terminology Spreadsheet A spreadsheet is an electronic document that stores various types of data. There are vertical columns and horizontal rows. A cell is where the

More information

Advanced Excel Charts : Tables : Pivots : Macros

Advanced Excel Charts : Tables : Pivots : Macros Advanced Excel Charts : Tables : Pivots : Macros Charts In Excel, charts are a great way to visualize your data. However, it is always good to remember some charts are not meant to display particular types

More information

How To Use Excel With A Calculator

How To Use Excel With A Calculator Functions & Data Analysis Tools Academic Computing Services www.ku.edu/acs Abstract: This workshop focuses on the functions and data analysis tools of Microsoft Excel. Topics included are the function

More information

Using Excel to find Perimeter, Area & Volume

Using Excel to find Perimeter, Area & Volume Using Excel to find Perimeter, Area & Volume Level: LBS 4 V = lwh Goal: To become familiar with Microsoft Excel by entering formulas into a spreadsheet in order to calculate the perimeter, area and volume

More information

IRF Business Objects. Using Excel as a Data Provider in an IRF BO Report. September, 2009

IRF Business Objects. Using Excel as a Data Provider in an IRF BO Report. September, 2009 IRF Business Objects Using Excel as a Data Provider in an IRF BO Report September, 2009 1 Why use Excel Data? Integrating data from: External systems (e.g. foreign accounting and payroll systems) Budget

More information

Using VLOOKUP to Combine Data in Microsoft Excel

Using VLOOKUP to Combine Data in Microsoft Excel Using VLOOKUP to Combine Data in Microsoft Excel Microsoft Excel includes a very powerful function that helps users combine data from multiple sources into one table in a spreadsheet. For example, if you

More information

GroundWork group Microsoft Office and Computer Class Offerings

GroundWork group Microsoft Office and Computer Class Offerings GroundWork group Microsoft Office and Computer Class Offerings Microsoft Word Word 2010 Level 1 Microsoft Office Word 2010 offers many features that make creating or editing professional documents, flyers,

More information

Excel for Data Cleaning and Management

Excel for Data Cleaning and Management Excel for Data Cleaning and Management Background Information This workshop is designed to teach skills in Excel that will help you manage data from large imports and save them for further use in SPSS

More information

Using MS Excel V Lookups

Using MS Excel V Lookups Using MS Excel V Lookups This article discusses MS Excel functionality called V-Lookups that could greatly improve your efficiency when reconciling and comparing records between two separate data columns

More information

Loading Data into salesforce.com

Loading Data into salesforce.com Overview Data can be uploaded into salesforce.com from Excel using the sforce connector, an open source plugin for excel, available here: http://sforce.sourceforge.net/excel/downloads.htm This plug-in

More information

Computer Training Centre University College Cork. Excel 2013 The Quick Analysis Tool

Computer Training Centre University College Cork. Excel 2013 The Quick Analysis Tool Computer Training Centre University College Cork Excel 2013 The Quick Analysis Tool Quick Analysis Tool The quick analysis tool is new to Excel 2013. This tool enables the user to quickly access features

More information

Section 1 Spreadsheet Design

Section 1 Spreadsheet Design Section 1 Spreadsheet Design Level 6 Spreadsheet 6N4089 Contents 1. Assess the suitability of using a spreadsheet to achieve a given requirement from a given specification... 1 Advantages of using Spreadsheet

More information

Excel 2007 - Using Pivot Tables

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

More information

How To Create A Report In Excel

How To Create A Report In Excel Table of Contents Overview... 1 Smartlists with Export Solutions... 2 Smartlist Builder/Excel Reporter... 3 Analysis Cubes... 4 MS Query... 7 SQL Reporting Services... 10 MS Dynamics GP Report Templates...

More information

Macros allow you to integrate existing Excel reports with a new information system

Macros allow you to integrate existing Excel reports with a new information system Macro Magic Macros allow you to integrate existing Excel reports with a new information system By Rick Collard Many water and wastewater professionals use Microsoft Excel extensively, producing reports

More information

To add a data form to excel - you need to have the insert form table active - to make it active and add it to excel do the following:

To add a data form to excel - you need to have the insert form table active - to make it active and add it to excel do the following: Excel Forms A data form provides a convenient way to enter or display one complete row of information in a range or table without scrolling horizontally. You may find that using a data form can make data

More information

4. The Third Stage In Designing A Database Is When We Analyze Our Tables More Closely And Create A Between Tables

4. The Third Stage In Designing A Database Is When We Analyze Our Tables More Closely And Create A Between Tables 1. What Are The Different Views To Display A Table A) Datasheet View B) Design View C) Pivote Table & Pivot Chart View D) All Of Above 2. Which Of The Following Creates A Drop Down List Of Values To Choose

More information

Moving Data Between Access and Excel

Moving Data Between Access and Excel Moving Data Between Access and Excel This document provides basic techniques for exchanging data between Microsoft Access and Excel. Transferring from Excel to Access To bring data into Access from Excel,

More information

Pulling a Random Sample from a MAXQDA Dataset

Pulling a Random Sample from a MAXQDA Dataset In this guide you will learn how to pull a random sample from a MAXQDA dataset, using the random cell function in Excel. In this process you will learn how to export and re-import variables from MAXQDA.

More information

Excel 2013 - Using Pivot Tables

Excel 2013 - 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

More information

Data Mining and Analysis With Excel PivotTables and The QI Macros By Jay Arthur, The KnowWare Man

Data Mining and Analysis With Excel PivotTables and The QI Macros By Jay Arthur, The KnowWare Man Data Mining and Analysis With Excel PivotTables and The QI Macros By Jay Arthur, The KnowWare Man It s an old, but true saying that what gets measured gets done. That s why so many companies are looking

More information

Business Objects Enterprise version 4.1. Report Viewing

Business Objects Enterprise version 4.1. Report Viewing Business Objects Enterprise version 4.1 Note about Java: With earlier versions, the Java run-time was not needed for report viewing; but was needed for report writing. The default behavior in version 4.1

More information

EXCEL Tutorial: How to use EXCEL for Graphs and Calculations.

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

More information

Intermediate. Microsoft Excel 2007- Tables and Printing

Intermediate. Microsoft Excel 2007- Tables and Printing John W. Jacobs Technology Center 450 Exton Square Parkway Exton, PA 19341 610.280.2666 ccljtc@ccls.org www.ccls.org Facebook.com/ChesterCountyLibrary Intermediate Microsoft Excel 2007- Tables and Printing

More information

Getting Started with Excel 2008. Table of Contents

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...

More information

INTERMEDIATE Excel 2013

INTERMEDIATE Excel 2013 INTERMEDIATE Excel 2013 Information Technology September 1, 2014 1 P a g e Managing Workbooks Excel uses the term workbook for a file. The term worksheet refers to an individual spreadsheet within a workbook.

More information

To reuse a template that you ve recently used, click Recent Templates, click the template that you want, and then click Create.

To reuse a template that you ve recently used, click Recent Templates, click the template that you want, and then click Create. What is Excel? Applies to: Excel 2010 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

More information

Microsoft Excel 2010 Pivot Tables

Microsoft Excel 2010 Pivot Tables Microsoft Excel 2010 Pivot Tables Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Microsoft Excel 2010: Pivot Tables 1.5 hours Topics include data groupings, pivot tables, pivot

More information

Creating a Gradebook in Excel

Creating a Gradebook in Excel Creating a Spreadsheet Gradebook 1 Creating a Gradebook in Excel Spreadsheets are a great tool for creating gradebooks. With a little bit of work, you can create a customized gradebook that will provide

More information

Coding & Data Skills for Communicators Dr. Cindy Royal Texas State University - San Marcos School of Journalism and Mass Communication

Coding & Data Skills for Communicators Dr. Cindy Royal Texas State University - San Marcos School of Journalism and Mass Communication Coding & Data Skills for Communicators Dr. Cindy Royal Texas State University - San Marcos School of Journalism and Mass Communication Spreadsheet Basics Excel is a powerful productivity tool. It s a spreadsheet

More information

Basic Pivot Tables. To begin your pivot table, choose Data, Pivot Table and Pivot Chart Report. 1 of 18

Basic Pivot Tables. To begin your pivot table, choose Data, Pivot Table and Pivot Chart Report. 1 of 18 Basic Pivot Tables Pivot tables summarize data in a quick and easy way. In your job, you could use pivot tables to summarize actual expenses by fund type by object or total amounts. Make sure you do not

More information

Microsoft Excel 2010 Part 3: Advanced Excel

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

More information

Using Excel for descriptive statistics

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

More information

Comparing Excel, Access and REDCap as Data Management Tools for Human Health Research Data

Comparing Excel, Access and REDCap as Data Management Tools for Human Health Research Data Comparing Excel, Access and REDCap as Data Management Tools for Human Health Research Data Sue Lowry (sklowry@umn.edu) Database Programmer/Analyst Biostatistical Design and Analysis Center Clinical and

More information

Text files fall into several classifications. When importing from a text file, you need to specify the correct type for the import to go smoothly.

Text files fall into several classifications. When importing from a text file, you need to specify the correct type for the import to go smoothly. The Data Ribbon About Importing Data from Other Types of Files Excel 2007 incorporates wizards for importing data from many types of files. View the Data Ribbon and choose the appropriate button in the

More information

Excel Intermediate. Table of Contents UPPER, LOWER, PROPER AND TRIM...28

Excel Intermediate. Table of Contents UPPER, LOWER, PROPER AND TRIM...28 Excel Intermediate Table of Contents Formulas UPPER, LOWER, PROPER AND TRM...2 LEFT, MID, and RIGHT...3 CONCATENATE...4 & (Ampersand)...5 CONCATENATE vs. & (Ampersand)...5 ROUNDUP, and ROUNDDOWN...6 VLOOKUP...7

More information

Microsoft Excel 2010

Microsoft Excel 2010 Microsoft Excel 2010 Special Topics PivotTable IF Function V-Lookup Function Information Technology Services Outreach and Distance Learning Technologies Copyright 2011 KSU Department of Information Technology

More information

Time Clock Import Setup & Use

Time Clock Import Setup & Use Time Clock Import Setup & Use Document # Product Module Category CenterPoint Payroll Processes (How To) This document outlines how to setup and use of the Time Clock Import within CenterPoint Payroll.

More information

Here is a Trial Balance sample, generated and exported into an Excel spreadsheet, by an accounting software*

Here is a Trial Balance sample, generated and exported into an Excel spreadsheet, by an accounting software* Here is a Trial Balance sample, generated and exported into an Excel spreadsheet, by an accounting software* (*) It should be straightforward to put the trial balance produced by accounting software into

More information

Search help. More on Office.com: images templates. Here are some basic tasks that you can do in Microsoft Excel 2010.

Search help. More on Office.com: images templates. Here are some basic tasks that you can do in Microsoft Excel 2010. Page 1 of 8 Excel 2010 Home > Excel 2010 Help and How-to > Getting started with Excel Search help More on Office.com: images templates Basic tasks in Excel 2010 Here are some basic tasks that you can do

More information

MS Excel as a Database

MS Excel as a Database Centre for Learning and Academic Development (CLAD) Technology Skills Development Team MS Excel as a Database http://intranet.birmingham.ac.uk/itskills Using MS Excel as a Database (XL2103) Author: Sonia

More information

CGS2531 Problem Solving Using Computer Software Sample Exam 3. Select the most appropriate answer(s).

CGS2531 Problem Solving Using Computer Software Sample Exam 3. Select the most appropriate answer(s). CGS2531 Problem Solving Using Computer Software Sample Exam 3. Select the most appropriate answer(s). Please also go through the exercises in the end of each chapter in the textbook. 1. The Text Import

More information

In This Issue: Excel Sorting with Text and Numbers

In This Issue: Excel Sorting with Text and Numbers In This Issue: Sorting with Text and Numbers Microsoft allows you to manipulate the data you have in your spreadsheet by using the sort and filter feature. Sorting is performed on a list that contains

More information

USC Marshall School of Business Marshall Information Services

USC Marshall School of Business Marshall Information Services USC Marshall School of Business Marshall Information Services Excel Dashboards and Reports The goal of this workshop is to create a dynamic "dashboard" or "Report". A partial image of what we will be creating

More information

Creating an RFM Summary Using Excel

Creating an RFM Summary Using Excel Creating an RFM Summary Using Excel Peter S. Fader www.petefader.com Bruce G. S. Hardie www.brucehardie.com December 2008 1. Introduction In order to estimate the parameters of transaction-flow models

More information

NEXT-ANALYTICS lets you specify more than one profile View in a single query.

NEXT-ANALYTICS lets you specify more than one profile View in a single query. NEXT-ANALYTICS lets you specify more than one profile View in a single query. For historical reasons, NEXT-ANALYTICS often uses the word Profile to refer to Google Analytics Views. Summary. Choose multiple

More information

Commonly Used Excel Functions. Supplement to Excel for Budget Analysts

Commonly Used Excel Functions. Supplement to Excel for Budget Analysts Supplement to Excel for Budget Analysts Version 1.0: February 2016 Table of Contents Introduction... 4 Formulas and Functions... 4 Math and Trigonometry Functions... 5 ABS... 5 ROUND, ROUNDUP, and ROUNDDOWN...

More information

Power Users Series: Excel Databases

Power Users Series: Excel Databases Power Users Series: Excel Databases Northern New York Library Network Workshop www.nnyln.org Jim Crowley C3 Crowley Computer Consulting 9148 State Highway 37 Ogdensburg NY 13669 315 394 7008 315 394 7009

More information

Using Excel for Analyzing Survey Questionnaires Jennifer Leahy

Using Excel for Analyzing Survey Questionnaires Jennifer Leahy University of Wisconsin-Extension Cooperative Extension Madison, Wisconsin PD &E Program Development & Evaluation Using Excel for Analyzing Survey Questionnaires Jennifer Leahy G3658-14 Introduction You

More information

Departmental Reporting in Microsoft Excel for Sage 50 Accounts

Departmental Reporting in Microsoft Excel for Sage 50 Accounts al Reporting in Microsoft Excel for Sage 50 Accounts 1 Introduction Whilst Sage 50 Accounts does already offer integrated Excel reporting functionality, we found that it was often missing the flexibility

More information

4. Are you satisfied with the outcome? Why or why not? Offer a solution and make a new graph (Figure 2).

4. Are you satisfied with the outcome? Why or why not? Offer a solution and make a new graph (Figure 2). Assignment 1 Introduction to Excel and SPSS Graphing and Data Manipulation Part 1 Graphing (worksheet 1) 1. Download the BHM excel data file from the course website. 2. Save it to the desktop as an excel

More information

Microsoft Courses. Microsoft Office 2007

Microsoft Courses. Microsoft Office 2007 Microsoft Courses Course Overview With over 90% of UK businesses using Microsoft Office, it's the world's leading software package. Our Microsoft Office course will show you how to operate the three main

More information

How to Use a Data Spreadsheet: Excel

How to Use a Data Spreadsheet: Excel How to Use a Data Spreadsheet: Excel One does not necessarily have special statistical software to perform statistical analyses. Microsoft Office Excel can be used to run statistical procedures. Although

More information

Exam Name: Excel 2010 Exam Type: Microsoft Exam Code: 77-882 Certification Microsoft Office Specialist (MOS) Total Questions: 26

Exam Name: Excel 2010 Exam Type: Microsoft Exam Code: 77-882 Certification Microsoft Office Specialist (MOS) Total Questions: 26 Question: 1 You work as a Sales Manager for Rainbow Inc. Your responsibility includes preparing sales report of the Sales department. You use Microsoft Excel 2010 to prepare sales reports. You have created

More information

A Guide to Using Excel in Physics Lab

A Guide to Using Excel in Physics Lab A Guide to Using Excel in Physics Lab Excel has the potential to be a very useful program that will save you lots of time. Excel is especially useful for making repetitious calculations on large data sets.

More information

Excel Reporting with 1010data

Excel Reporting with 1010data Excel Reporting with 1010data (212) 405.1010 info@1010data.com Follow: @1010data www.1010data.com Excel Reporting with 1010data Contents 2 Contents Overview... 3 Start with a 1010data query... 5 Running

More information

Excel Add-ins Quick Start Guide

Excel Add-ins Quick Start Guide Excel Add-ins Quick Start Guide Contents Bloomberg - Excel Add-In... 2 Datastream - Excel Add-in... 9 FactSet - Excel Add-in... 13 Thomson Reuters Eikon - Excel Add-in... 19 Bloomberg - Excel Add-In Bloomberg

More information

ABSTRACT INTRODUCTION CLINICAL PROJECT TRACKER OF SAS TASKS. Paper PH-02-2015

ABSTRACT INTRODUCTION CLINICAL PROJECT TRACKER OF SAS TASKS. Paper PH-02-2015 Paper PH-02-2015 Project Management of SAS Tasks - Excel Dashboard without Using Any Program Kalaivani Raghunathan, Quartesian Clinical Research Pvt. Ltd, Bangalore, India ABSTRACT Have you ever imagined

More information

Lesson 4.3: Using the VLOOKUP Function

Lesson 4.3: Using the VLOOKUP Function Lesson 4.3: Using the VLOOKUP Function Excel 2003 provides two lookup functions that you can use to quickly retrieve information from a table. The functions are called HLOOKUP (horizontal lookup) and VLOOKUP

More information

Using Microsoft Excel to Manage and Analyze Data: Some Tips

Using Microsoft Excel to Manage and Analyze Data: Some Tips Using Microsoft Excel to Manage and Analyze Data: Some Tips Larger, complex data management may require specialized and/or customized database software, and larger or more complex analyses may require

More information

Excel IF Statements, LOOKUPS & INDEX/MATCH. When to choose which one?

Excel IF Statements, LOOKUPS & INDEX/MATCH. When to choose which one? Excel IF Statements, LOOKUPS & INDEX/MATCH. When to choose which one? This article will focus on the appropriate use of IF statements, and also show you when it's better to move into more robust formulas

More information

Customized Excel Output Using the Excel Libname Harry Droogendyk, Stratia Consulting Inc., Lynden, ON

Customized Excel Output Using the Excel Libname Harry Droogendyk, Stratia Consulting Inc., Lynden, ON Paper SIB-105 Customized Excel Output Using the Excel Libname Harry Droogendyk, Stratia Consulting Inc., Lynden, ON ABSTRACT The advent of the ODS ExcelXP tagset and its many features has afforded the

More information

Improving Productivity using IT - Level 3 Scenario Assignment Sample Test 4 Version SampleMQTB/1.0/IP3/v1.0. Part 1 Performance

Improving Productivity using IT - Level 3 Scenario Assignment Sample Test 4 Version SampleMQTB/1.0/IP3/v1.0. Part 1 Performance Improving Productivity using IT - Level 3 Scenario Assignment Sample Test 4 Version SampleMQTB/1.0/IP3/v1.0 This test is divided into two parts. You must read through the whole scenario assignment before

More information