Creating an RFM Summary Using Excel
|
|
|
- Buck Burns
- 9 years ago
- Views:
Transcription
1 Creating an RFM Summary Using Excel Peter S. Fader Bruce G. S. Hardie December Introduction In order to estimate the parameters of transaction-flow models such as the Pareto/NBD (Schmittlein, Morrison, and Colombo 1987) and BG/NBD (Fader, Hardie, and Lee 2005a), as well as those of the associated models for spend per transaction (Schmittlein and Peterson 1994; Fader, Hardie, and Lee 2005b), we need an RFM (recency, frequency, monetary value) summary of each customer s purchasing behavior. In particular, The transaction-flow model requires three pieces of information about each customer s purchasing history: their recency (when their last transaction occurred), frequency (how many transactions they made in a specified time period), and the length of time over which we have observed their purchasing behavior. The notation used to represent this information is (x, t x, T), where x is the number of transactions observed in the time period (0, T] and t x (0 t x T) is the time of the last transaction. The spend model requires two pieces of information about each customer s purchasing history: the average monetary value of each transaction (denoted by m x ) and the number of transactions over which this average is computed (i.e., frequency, x). In this note we describe how to create such a summary from raw customerlevel transaction data using pre-office 2007 versions of Excel. (The only issue with the Office 2007 version of Excel is that some of the menu-related instructions given in this note are no longer correct. Readers familiar with Excel 2007 should be able to work out the necessary changes for themselves.) c 2008 Peter S. Fader and Bruce G. S. Hardie. This document, along with a copy of the resulting spreadsheet, can be found at < 1
2 2. Preliminaries We will make use of the CDNOW dataset, as used in Fader et al. (2005a,b). The master dataset contains the entire purchase history up to the end of June 1998 of the cohort of 23,570 individuals who made their first-ever purchase at CDNOW in the first quarter of (See Fader and Hardie (2001) for further details about this dataset.) The file CDNOW sample.txt 1 contains purchasing data for a 1/10th systematic sample of the whole cohort (2357 customers). Each record in this file, 6919 in total, comprises five fields: the customer s ID in the master dataset, the customer s ID in the 1/10th sample dataset (ranging from 1 to 2357), the date of the transaction, the number of CDs purchased, and the dollar value of the transaction. We start the process of creating our summary of each customer s purchasing in the following manner: 2 We import the text file CDNOW sample.txt into an empty blank Excel workbook. We note that the associated worksheet is called CDNOW sample. (We assume that the records in the raw transaction data file are grouped by customer, and sorted within customer by date of transaction. If in doubt, sort the raw dataset by customer ID and date of transaction.) As they are of no interest to us in this particular case (unlike, say, in Fader and Hardie (2001)), we delete the first and fourth columns (master dataset customer ID and # CDs purchased, respectively). We insert a row at the top of the worksheet, adding field names: ID, Date, Spend. (See Figure 1.) A B C ID Date Spend Figure 1: Raw transaction data 1 See sample.zip 2 Note that the following steps are not meant to represent the most elegant approach to the task of creating the RFM summary; Excel experts will be able to identify better approaches. 2
3 Scrolling down the dataset, we note that some customers had more than one transaction on a given day. For example, customer 26 had two separate transactions on 13 January 1997, while customer 46 had two separate transactions on 28 August Typing =IF(AND(A2=A1,B2=B1),1,0) into cell D2 and copying it down to cell D6920, we note that cells D2:D6920 sum to 223, indicating that there are a total of 223 such additional transactions. The transaction-flow models are developed by telling a story about interpurchase times. As we only know the date (and not the time) of each transaction, we need to aggregate the records associated with same-day transactions we can t have an interpurchase time of 0. We do so in the following manner: Deleting the current contents of column D, we type =IF(AND(A2=A1,B2=B1),C2+D1,C2) into celld2 and copy it down to celld6920. This creates a running within-transaction-day total spend for each customer. For those situations where a customer has more than one transaction in a day, we wish to identify the all-but-last transactions (and then delete them). We type =IF(AND(A2=A3,B2=B3),1,0) into cell E2 and copy it down to cell E6920. We then copy and paste special / values cells D2:E6920 onto themselves. Next we sort the whole block of data by column E ascending (with a header row ) and delete the rows for which column E contains a 1, a total of 223 rows. Finally, resorting the block of data by ID and Date (both ascending ), deleting columns C and E, and labeling the new column C Spend gives us a raw transaction dataset in which no customer has more than one transaction on any given day. 3. Frequency and Monetary Value Now that we have a clean raw transaction dataset, we can compute the frequency and monetary value summaries for each customer. Most of the previous analyses undertaken using this dataset have split the 78 weeks of data in half, creating a 39-week calibration period ( ) and 39-week validation period ( ). Furthermore, these analyses have generally ignored each customer s first-ever purchase at CDNOW, which signals the start of the customer s relationship with the firm; this means calibration-period frequency has usually 3
4 been the number of repeat transactions, and monetary value has been the average dollar value per repeat transaction. In order to identify each transaction as being the first-ever purchase for the customer, a calibration-period repeat transaction, or validationperiod transaction, we enter =IF(A2<>A1,"first",IF(B2<= ,"calib","valid")) into cell D2, copy it down to cell D6920, labeling the column Period (cell D1). We can now create the desired frequency summary table using the pivot tables feature in Excel. We highlight the cell range A1:D6697 and select the PivotTable and PivotChart... option under the Data menu. We use ID as the row field, Period as the column field, and ID as the data item. (Make sure the Pivot Table Field is Count of ID, not sum or some other summary of the ID field.) We rename the worksheet containing the resulting table Pivot Table 1; this reports the number of repeat transactions made by each of the 2357 customers in the calibration and validation periods. We now compute the average spend per repeat transaction for the calibration and validation periods in a similar manner. Going back to the CDNOW sample worksheet, we highlight the cell range A1:D6697, and select the PivotTable and PivotChart... option under the Data menu. We use ID as the row field, Period as the column field, and Spend as the data item. (Make sure the Pivot Table Field is Average of Spend, not sum or some other summary of the Spend field.) We rename the worksheet containing this report Pivot Table Recency The next step is to compute recency, as well as the length of time over which we have observed each customer s purchasing behavior. To identify the date on which each customer made their first-ever purchase at CDNOW, we go back to the CDNOW sample worksheet and type =IF(A2<>A1,B2,0) into cell E2, copy it down to cell E6920, labeling the column First Purchase (cell E1). Highlighting the cell range A1:E6697, we select the PivotTable and PivotChart... option under the Data menu. We use ID as the row 4
5 field and First Purchase as the data item. (Make sure the Pivot Table Field is Sum of First Purchase.) We rename the worksheet containing this report Pivot Table 3; this gives us the calendar date of each customer s first-ever purchase at CDNOW To identify the date on which each customer made their last calibrationperiod purchase, we go back to the CDNOW sample worksheet and type =IF(B2<= ,IF(OR(A2<>A3,B3> ),B2,0),0) into cell F2, copy it down to cell F6920, labeling the column Last Purchase (cell F1). Highlighting the cell range A1:F6697, we select the PivotTable and PivotChart... option under the Data menu. We use ID as the row field and Last Purchase as the data item. (Make sure the Pivot Table Field is Sum of Last Purchase.) We rename the worksheet containing this report Pivot Table 4; this gives us the calendar date of each customer s last calibration-period purchase. For modeling purposes, recency is not the calendar date of the last observed purchase; rather the time origin for t x is the start of the observation period. Since we track customers purchasing from their first-ever purchase at CDNOW, the date of this first purchase is the time origin. Therefore, t x is the length of time between the first-ever purchase and the last observed purchase (in the calibration period), i.e., Last Purchase First Purchase. In order to perform the difference in dates calculation, we need to convert the data fields into Excel dates : Going to the Pivot Table 3 worksheet, we enter =DATE(LEFT(B5,4),MID(B5,5,2),RIGHT(B5,2)) into cell C5 and copy it down to cell C2361. Highlighting cells C5:C2361, we change the cell Number format to General. (The resulting numbers represent the number of days since January 1, 1900.) Similarly for the Pivot Table 4 worksheet, we enter =DATE(LEFT(B5,4),MID(B5,5,2),RIGHT(B5,2)) into cell C5 and copy it down to cell C2361. Highlighting cells C5:C2361, we change the cell Number format to General. The difference between a column C entry in the Pivot Table 4 worksheet and the corresponding cell in the Pivot Table 3 worksheet gives us the desired recency number in days. When analyzing this dataset, Fader et al. (2005a,b) have used week as the basic unit of time. We therefore compute recency by entering 5
6 =(C5- Pivot Table 3!C5)/7 in cell D5 of the Pivot Table 4 worksheet and copy it down to cell D2361. (We label the column by entering t x in cell D4). The final piece of information we need is T, the length of time we observe each customer (i.e., the time between the customer s first-ever purchase at CDNOW and the end of the calibration period, ). We compute this in the Pivot Table 3 worksheet by entering =(DATE(1997,9,30)-C5)/7 in cell D5 and copying it down to cell D2361. (We label the column by entering T in cell D4). 5. Bringing It All Together We can now create a single worksheet that contains all the required RFM information. We insert a new worksheet (let s call it Summary) and label the first five cells of row 1 ID, x, t x, T, and m x. We enter = Pivot Table 1!A5 = Pivot Table 1!B5 = Pivot Table 4!D5 = Pivot Table 3!D5 = Pivot Table 2!B5 into cells A2 E2 respectively and copy this block of cells down to row (See Figure 2.) A B C D E ID x t_x T m_x Figure 2: RFM summary of calibration-period transactions 6
7 This is the required RFM summary of calibration-period buying behavior needed to estimate the previously mentioned models of transaction flow and spend per transaction. (Columns A D contain the same data as given in the Raw Data worksheet in the Excel workbook bgnbd.xls found at < We can create a summary of validation-period purchasing behavior by extracting the corresponding number of transactions and average spend per transaction numbers from the Pivot Table 1 and Pivot Table 2 worksheets. References Fader, Peter S. and Bruce G. S. Hardie, (2001), Forecasting Repeat Sales at CDNOW: A Case Study, Interfaces, 31 (May June), Part 2 of 2, S94 S107. Fader, Peter S., Bruce G.S. Hardie, and Ka Lok Lee (2005a), "Counting Your Customers" the Easy Way: An Alternative to the Pareto/NBD Model, Marketing Science, 24 (Spring), Fader, Peter S., Bruce G.S. Hardie, and Ka Lok Lee (2005b), RFM and CLV: Using Iso-value Curves for Customer Base Analysis, Journal of Marketing Research, 42 (November), Schmittlein, David C., Donald G. Morrison, and Richard Colombo (1987), Counting Your Customers: Who They Are and What Will They Do Next? Management Science, 33 (January), Schmittlein, David C. and Robert A. Peterson (1994), Customer Base Analysis: An Industrial Purchase Process Application, Marketing Science, 13 (Winter),
Implementing the BG/NBD Model for Customer Base Analysis in Excel
Implementing the BG/NBD Model for Customer Base Analysis in Excel Peter S. Fader www.petefader.com Bruce G. S. Hardie www.brucehardie.com Ka Lok Lee www.kaloklee.com June 2005 1. Introduction This note
Using Excel s PivotTable to Analyze Learning Assessment Data
Using Excel s PivotTable to Analyze Learning Assessment Data Assessment Office University of Hawaiʻiat Mānoa Feb 13, 2013 1 Mission: Improve student learning through program assessment 2 1 Learning Outcomes
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.
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
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
ACADEMIC TECHNOLOGY SUPPORT
ACADEMIC TECHNOLOGY SUPPORT Microsoft Excel: Tables & Pivot Tables [email protected] 439-8611 www.etsu.edu/ats Table of Contents: Overview... 1 Objectives... 1 1. What is an Excel Table?... 2 2. Creating Pivot
By: Peter K. Mulwa MSc (UoN), PGDE (KU), BSc (KU) Email: [email protected]
SPREADSHEETS FOR MARKETING & SALES TRACKING - DATA ANALYSIS TOOLS USING MS EXCEL By: Peter K. Mulwa MSc (UoN), PGDE (KU), BSc (KU) Email: [email protected] Objectives By the end of the session, participants
Excel: Analyze PowerSchool Data
Excel: Analyze PowerSchool Data Trainer Name Trainer/Consultant PowerSchool University 2012 Agenda Welcome & Introductions Organizing Data with PivotTables Displaying Data with Charts Creating Dashboards
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
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
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
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
About PivotTable reports
Page 1 of 8 Excel Home > PivotTable reports and PivotChart reports > Basics Overview of PivotTable and PivotChart reports Show All Use a PivotTable report to summarize, analyze, explore, and present summary
NATIONAL STUDENT CLEARINGHOUSE RESEARCH CENTER
StudentTracker SM Detail Report NATIONAL STUDENT CLEARINGHOUSE RESEARCH CENTER 2300 Dulles Station Blvd., Suite 300, Herndon, VA 20171 Contents How the National Student Clearinghouse populates its database...
How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com
Sage 500 ERP Intelligence Reporting Getting Started Guide 27.11.2012 Table of Contents 1.0 Getting started 3 2.0 Managing your reports 10 3.0 Defining report properties 18 4.0 Creating a simple PivotTable
More BY PETER S. FADER, BRUCE G.S. HARDIE, AND KA LOK LEE
More than meets the eye BY PETER S. FADER, BRUCE G.S. HARDIE, AND KA LOK LEE The move toward a customer-centric approach to marketing, coupled with the increasing availability of customer transaction data,
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
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
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
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
Data exploration with Microsoft Excel: univariate analysis
Data exploration with Microsoft Excel: univariate analysis Contents 1 Introduction... 1 2 Exploring a variable s frequency distribution... 2 3 Calculating measures of central tendency... 16 4 Calculating
Pivot Tables & Pivot Charts
Pivot Tables & Pivot Charts Pivot tables... 2 Creating pivot table using the wizard...2 The pivot table toolbar...5 Analysing data in a pivot table...5 Pivot Charts... 6 Creating a pivot chart using the
BUSINESS DATA ANALYSIS WITH PIVOTTABLES
BUSINESS DATA ANALYSIS WITH PIVOTTABLES Jim Chen, Ph.D. Professor Norfolk State University 700 Park Avenue Norfolk, VA 23504 (757) 823-2564 [email protected] BUSINESS DATA ANALYSIS WITH PIVOTTABLES INTRODUCTION
Create a PivotTable or PivotChart report
Page 1 of 5 Excel Home > PivotTable reports and PivotChart reports > Basics Create or delete a PivotTable or PivotChart report Show All To analyze numerical data in depth and to answer unanticipated questions
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
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
In-Depth Guide Advanced Spreadsheet Techniques
In-Depth Guide Advanced Spreadsheet Techniques Learning Objectives By reading and completing the activities in this chapter, you will be able to: Create PivotTables using Microsoft Excel Create scenarios
Analytics with Excel and ARQUERY for Oracle OLAP
Analytics with Excel and ARQUERY for Oracle OLAP Data analytics gives you a powerful advantage in the business industry. Companies use expensive and complex Business Intelligence tools to analyze their
Importing TSM Data into Microsoft Excel using Microsoft Query
Importing TSM Data into Microsoft Excel using Microsoft Query An alternate way to report on TSM information is to use Microsoft Excel s import facilities using Microsoft Query to selectively import the
STATEMENT OF TRANSACTION REPORT ANALYSIS USING EXCEL
STATEMENT OF TRANSACTION REPORT ANALYSIS USING EXCEL Excel can be used to analyze the MCPS Statement of Transaction EXCEL Report Selected Fields to more easily track expenses through the procurement cycle.
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
Detail Report Excel Guide for High Schools
StudentTracker SM Detail Report NATIONAL STUDENT CLEARINGHOUSE RESEARCH CENTER 2300 Dulles Station Blvd., Suite 300, Herndon, VA 20171 Contents How the National Student Clearinghouse populates its database...
Tommy B. Harrington 104 Azalea Drive Greenville, NC 27858 Email: [email protected]
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: [email protected] Computer Training YOU Can Understand! Most Useful Excel Commands
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
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
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
Using Excel in Research. Hui Bian Office for Faculty Excellence
Using Excel in Research Hui Bian Office for Faculty Excellence Data entry in Excel Directly type information into the cells Enter data using Form Command: File > Options 2 Data entry in Excel Tool bar:
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
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
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
New Orleans 2007 Workshop Tips For Using Microsoft Excel to Analyze EMSC Data and Generate Reports Pivot Tables and Other Goodies
1 of 17 New Orleans 2007 Workshop Tips For Using Microsoft Excel to Analyze EMSC Data and Generate Reports Pivot Tables and Other Goodies Introduction In this document, we will describe several more advanced
Analyzing Data Using Excel
Analyzing Data Using Excel What you will do: Create a spreadsheet Use formulas and basic formatting Import text files Save worksheets as web pages Add interactivity to web worksheets Use pivot tables Create
Microsoft Excel: Pivot Tables
Microsoft Excel: Pivot Tables Pivot Table Reports A PivotTable report is an interactive table that you can use to quickly summarize large amounts of data. You can rotate its rows and columns to see different
MICROSOFT EXCEL 2010 ANALYZE DATA
MICROSOFT EXCEL 2010 ANALYZE DATA Microsoft Excel 2010 Essential Analyze data Last Edited: 2012-07-09 1 Basic analyze data... 4 Use diagram to audit formulas... 4 Use Error Checking feature... 4 Use Evaluate
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
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.
To complete this workbook, you will need the following file:
CHAPTER 4 Excel More Skills 13 Create PivotTable Reports A PivotTable report is an interactive, crosstabulated Excel report that summarizes and analyzes data such as database records from various sources,
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
Using Excel for your assignments
[Type here] Using Excel for your assignments This document covers the basics of using Excel to perform simple data analysis and represent that data visually. Excel is a very powerful data analysis tool.
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
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
MBA for EXECUTIVES REUNION 2015 REUNION 2015 WELCOME BACK ALUMNI! Daniel McCarthy Peter Fader Bruce Hardie
MBA for EXECUTIVES REUNION 2015 MBA for EXECUTIVES REUNION 2015 WELCOME BACK ALUMNI! CLV, From Inside and Out Daniel McCarthy Peter Fader Bruce Hardie Wharton School of the University of Pennsylvania November
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
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
Using Excel as a Management Reporting Tool with your Minotaur Data. Exercise 1 Customer Item Profitability Reporting Tool for Management
Using Excel as a Management Reporting Tool with your Minotaur Data with Judith Kirkness These instruction sheets will help you learn: 1. How to export reports from Minotaur to Excel (these instructions
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
Produced by Flinders University Centre for Educational ICT. PivotTables Excel 2010
Produced by Flinders University Centre for Educational ICT PivotTables Excel 2010 CONTENTS Layout... 1 The Ribbon Bar... 2 Minimising the Ribbon Bar... 2 The File Tab... 3 What the Commands and Buttons
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
RIFIS Ad Hoc Reports
RIFIS Ad Hoc Reports To retrieve the entire list of all Ad Hoc Reports, including the Base reports and any additional reports published to your Role, select Ad Hoc for the Type under Filter Report By and
EXCEL FINANCIAL USES
EXCEL FINANCIAL USES Table of Contents Page LESSON 1: FINANCIAL DOCUMENTS...1 Worksheet Design...1 Selecting a Template...2 Adding Data to a Template...3 Modifying Templates...3 Saving a New Workbook as
International Monetary Fund. The Integrated Correspondence System Instructions for Editing Excel-Based Report Forms
International Monetary Fund The Integrated Correspondence System Instructions for Editing Excel-Based Report Forms Rev: May 10, 2005 TABLE OF CONTENTS: I. Introduction... 3 II. Editing Excel-Based Report
Creating Pivot Tables
Creating Pivot Tables Example Using CIA Inspection Information This is a step by step guide of how to create pivot tables using Microsoft Excel. You can create a pivot tables from any database you have
Microsoft Office Excel 2013
Microsoft Office Excel 2013 PivotTables and PivotCharts University Information Technology Services Training, Outreach & Learning Technologies Copyright 2014 KSU Department of University Information Technology
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...
Working with Data in Microsoft Excel 2003
Working with Data in Microsoft Excel 2003 Doc 5.94 Ver 2 March 2005 John Matthews Central Computing Services Abstract This document provides some examples of handling numeric data using the Microsoft Excel
Excel Pivot Tables. Blue Pecan Computer Training Ltd - Onsite Training Provider www.bluepecantraining.com :: 0800 6124105 :: [email protected].
Excel Pivot Tables 1 Table of Contents Pivot Tables... 3 Preparing Data for a Pivot Table... 3 Creating a Dynamic Range for a Pivot Table... 3 Creating a Pivot Table... 4 Removing a Field... 5 Change the
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
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
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
Sample- for evaluation purposes only! Advanced Excel. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc.
A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2012 Advanced Excel TeachUcomp, Inc. it s all about you Copyright: Copyright 2012 by TeachUcomp, Inc. All rights reserved. This publication,
MS Excel: Analysing Data using Pivot Tables
Centre for Learning and Academic Development (CLAD) Technology Skills Development Team MS Excel: Analysing Data using Pivot Tables www.intranet.birmingham.ac.uk/itskills MS Excel: Analysing Data using
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...
Excel 2013 What s New. Introduction. Modified Backstage View. Viewing the Backstage. Process Summary Introduction. Modified Backstage View
Excel 03 What s New Introduction Microsoft Excel 03 has undergone some slight user interface (UI) enhancements while still keeping a similar look and feel to Microsoft Excel 00. In this self-help document,
Excel 2003 PivotTables Summarizing, Analyzing, and Presenting Your Data
The Company Rocks Excel 2003 PivotTables Summarizing, Analyzing, and Presenting Step-by-step instructions to accompany video lessons Danny Rocks 5/19/2011 Creating PivotTables in Excel 2003 PivotTables
SPSS Workbook 1 Data Entry : Questionnaire Data
TEESSIDE UNIVERSITY SCHOOL OF HEALTH & SOCIAL CARE SPSS Workbook 1 Data Entry : Questionnaire Data Prepared by: Sylvia Storey [email protected] SPSS data entry 1 This workbook is designed to introduce
How to Make the Most of Excel Spreadsheets
How to Make the Most of Excel Spreadsheets Analyzing data is often easier when it s in an Excel spreadsheet rather than a PDF for example, you can filter to view just a particular grade, sort to view which
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
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,
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
How To Understand The Basic Concepts Of A Database And Data Science
Database Concepts Using Microsoft Access lab 9 Objectives: Upon successful completion of Lab 9, you will be able to Understand fundamental concepts including database, table, record, field, field name,
Module 4 (Effect of Alcohol on Worms): Data Analysis
Module 4 (Effect of Alcohol on Worms): Data Analysis Michael Dunn Capuchino High School Introduction In this exercise, you will first process the timelapse data you collected. Then, you will cull (remove)
Data Management for Multi-Environment Trials in Excel
Data Management for Multi-Environment Trials in Excel Cathy Garlick ([email protected]), Statistical Services Centre, University of Reading, UK 27 May 2010 1. Introduction Excel is widely available
Scott Harvey, Registrar Tri County Technical College. Using Excel Pivot Tables to Analyze Student Data
Scott Harvey, Registrar Tri County Technical College Using Excel Pivot Tables to Analyze Student Data 1Introduction to PivotTables 2Prepare the source data Discussion Points 3Create a PivotTable 5Show
Using Delphi Data with Excel and Access
$FDGHPLF&RPSXWLQJ &RPSXWHU 7UDLQLQJ 6XSSRUW 6HUYLFHV 1HWZRUNLQJ6HUYLFHV :HEHU%XLOGLQJ Using Delphi Data with Excel and Access Using Delphi Data The raw data used to create the CSU financial, human resource,
Using Pivot Tables in Microsoft Excel 2003
Using Pivot Tables in Microsoft Excel 2003 Introduction A Pivot Table is the name Excel gives to what is more commonly known as a cross-tabulation table. Such tables can be one, two or three-dimensional
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
SPSS: Getting Started. For Windows
For Windows Updated: August 2012 Table of Contents Section 1: Overview... 3 1.1 Introduction to SPSS Tutorials... 3 1.2 Introduction to SPSS... 3 1.3 Overview of SPSS for Windows... 3 Section 2: Entering
FTS Real Time Client: Equity Portfolio Rebalancer
FTS Real Time Client: Equity Portfolio Rebalancer Many portfolio management exercises require rebalancing. Examples include Portfolio diversification and asset allocation Indexation Trading strategies
Introduction to Microsoft Access 2003
Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft
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
Microsoft' Excel & Access Integration
Microsoft' Excel & Access Integration with Office 2007 Michael Alexander and Geoffrey Clark J1807 ; pwiueyb Wiley Publishing, Inc. Contents About the Authors Acknowledgments Introduction Part I: Basic
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
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...
Jump Start: Aspen Simulation Workbook in Aspen HYSYS V8
Jump Start: Aspen Simulation Workbook in Aspen HYSYS V8 A Brief Tutorial (and supplement to training and online documentation) David Tremblay,Product Management Director, Aspen Technology, Inc. Vidya Mantrala,
RFM Analysis: The Key to Understanding Customer Buying Behavior
RFM Analysis: The Key to Understanding Customer Buying Behavior Can you identify your best customers? Do you know who your worst customers are? Do you know which customers you just lost, and which ones
Invoice Line Export. Guide
Invoice Line Export Save time and avoid entering booked invoices manually in the financial system Guide Get started with Invoice Line Export This document describes how TimeLog Project s function for export
To launch the Microsoft Excel program, locate the Microsoft Excel icon, and double click.
EDIT202 Spreadsheet Lab Assignment Guidelines Getting Started 1. For this lab you will modify a sample spreadsheet file named Starter- Spreadsheet.xls which is available for download from the Spreadsheet
Downloading RIT Account Analysis Reports into Excel
Downloading RIT Account Analysis Reports into Excel In the last lesson you learned how to access the Account Analysis detail and export it to Excel through the Account Analysis function. Another way to
MicroStrategy Desktop
MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop is designed to enable business professionals like you to explore data, simply and without needing direct support from IT. 1 Import data from
