Introduction to Using SPSS Command Files

Size: px
Start display at page:

Download "Introduction to Using SPSS Command Files"

Transcription

1 Introduction to Using SPSS Command Files Joel P. Wiesen, Ph.D. 31th Annual IPMAAC Conference St. Louis, MO June 13, 2007 Wiesen (2007), IPMAAC Conference 1

2 Outline Overview Some command syntax details Examples of command files Tips Exercises Review Q&A Wiesen (2007), IPMAAC Conference 2

3 Overview Two ways to use SPSS Pros and Cons of each type of use Quick review of SPSS windows How to write command files How to save a command file How to run a command file Wiesen (2007), IPMAAC Conference 3

4 Two Ways to Use SPSS Drop-down menus Point-and-click Widely used Fraught with problems Tedious for long analyses Command syntax files Not commonly taught in college Provides more functionality Wiesen (2007), IPMAAC Conference 4

5 Pros and Cons Functionality Re-running Learning curve Debugging Documentation Long analyses All procedures Menu Harder Easier Harder Harder Harder No Command File Easier Harder Easier Easier Easier Yes Wiesen (2007), IPMAAC Conference 5

6 Quick Review of SPSS Windows Data editor See data Transform variables Output Results from commands, including tables, charts Chart editor Can edit graphs Syntax editor Write and execute SPSS commands Wiesen (2007), IPMAAC Conference 6

7 How To Write Command Files Paste from drop-down menus Menu choices generate syntax automatically Modify previous command file Write commands in text file Wiesen (2007), IPMAAC Conference 7

8 Creating Syntax From Menus Use drop-down menus but do not run Choose PASTE Creates a syntax window Save command file Run pasted commands Wiesen (2007), IPMAAC Conference 8

9 How to Save a Command File File-Save File extension:.sps Can use same name for data and sps files Wiesen (2007), IPMAAC Conference 9

10 How to Run a Command File Open command file File-Open Click on.sps file in Windows Explorer Highlight all or part of command file Run commands in one of several ways Click on right arrow Control-R Run-all Wiesen (2007), IPMAAC Conference 10

11 Some Command Syntax Details What is a command file? Command syntax structure Example of an SPSS command Some details of commands Common and important commands Wiesen (2007), IPMAAC Conference 11

12 What is a Command File? An ASCII text file Contains SPSS commands written out AKA syntax file Wiesen (2007), IPMAAC Conference 12

13 Command Syntax Structure Name of command May include some variable names May included some command options Name of subcommand May include variable names or command options Slashes used to start subcommands Can continue over multiple lines End command with a period or blank line Wiesen (2007), IPMAAC Conference 13

14 Example of an SPSS Command GET DATA / TYPE=XLS / FILE='c:\path\file_name.xls'. This is one command With two subcommands SPSS tries to use the Excel column heads as the variable names Wiesen (2007), IPMAAC Conference 14

15 Some Details of Commands Each command begins on a new line Variable names cannot be abbreviated Command may span lines Max line length: 80 characters Period or blank line terminates command Command syntax is case insensitive Wiesen (2007), IPMAAC Conference 15

16 Common & Important Commands Commands allow you to Get data Manipulate data List data Do statistical analyses Save data Wiesen (2007), IPMAAC Conference 16

17 Most Important Command Asterisk Identifies a comment line End comment with period or blank line * This is an example of a comment line. * The next two lines correct data errors. Wiesen (2007), IPMAAC Conference 17

18 Compute Command Used to change values COMPUTE perscore = (score/60). COMPUTE composite = var1 + var2 + var3. COMPUTE average = composite / 3. Wiesen (2007), IPMAAC Conference 18

19 IF IF (form = "A") zscore = (score 44.5)/6.5 Wiesen (2007), IPMAAC Conference 19

20 Create Ranks RANK VARIABLES = written oral ppt (A). Default is to create new variables rwritten roral rppt Can specify names of new variables (A) means ascending Wiesen (2007), IPMAAC Conference 20

21 Save SPSS Data File SAVE OUTFILE = 'c:\path\filename.sav'. SAVE OUTFILE = 'c:\path\filename.sav' / DROP ssn. SAVE OUTFILE = 'c:\path\filename.sav' / KEEP id lastname grade. Wiesen (2007), IPMAAC Conference 21

22 TEMPORARY TEMPORARY. SELECT IF (eeo_gp = 1). LIST id written oral ppt /CASES = 15. Wiesen (2007), IPMAAC Conference 22

23 SORT SORT CASES BY grade. LIST id lastname firstname grade. SORT CASES BY grade (A). Wiesen (2007), IPMAAC Conference 23

24 Variable Label VARIABLE LABEL failcol 'failed color vision'. Wiesen (2007), IPMAAC Conference 24

25 Value Label VALUE LABEL eeo_gp 0 Unknown' 1 'Non-Minority' 2 'Minority'. VALUE LABEL eeo_gp 0 'Unknown' 1 'Non-Minority' 2 'Minority'. Wiesen (2007), IPMAAC Conference 25

26 Save Non-SPSS Data File SAVE TRANSLATE OUTFILE = 'c:\path\filename.xls' /TYPE=XLS / KEEP id gender eeo_gp age compos /FIELDNAMES. This creates an Excel file with variable names for column heads. Wiesen (2007), IPMAAC Conference 26

27 Statistical Commands Means Graph Correlation Many other commands Wiesen (2007), IPMAAC Conference 27

28 Means Command MEANS TABLES= oral written BY eeo_gp. This minimal command will work Commands have default settings MEANS TABLES= oral written BY eeo_gp / CELLS MEAN COUNT STDDEV. This command is more specific. Wiesen (2007), IPMAAC Conference 28

29 Graph GRAPH /SCATTERPLOT(BIVAR)= oral WITH written /MISSING=LISTWISE /TITLE= 'Title goes here' 'line 2 of title goes here /SUBTITLE= 'sub title goes here /FOOTNOTE= 'footnote goes here 'line 2 footnote goes here'. Wiesen (2007), IPMAAC Conference 29

30 Correlation CORRELATIONS /VARIABLES= oral written ppt /PRINT=TWOTAIL NOSIG /STATISTICS DESCRIPTIVES /MISSING=PAIRWISE. Wiesen (2007), IPMAAC Conference 30

31 Command File Example SPSS Program to Grade a Test (See separate pdf file.) Wiesen (2007), IPMAAC Conference 31

32 Tips for Using Command Files Documenting Debugging Use of capitalization Separate the major aspects of analyses Wiesen (2007), IPMAAC Conference 32

33 Document Your Files File name Date created Author Log of changes over time Outline file Visual divisions of file into sections Wiesen (2007), IPMAAC Conference 33

34 Debugging Debugging individual commands Debugging command logic Wiesen (2007), IPMAAC Conference 34

35 Debugging Individual Commands SPSS is very detail demanding Look for: Missing or extra quotation marks Unbalanced parentheses Missing periods Wiesen (2007), IPMAAC Conference 35

36 Debugging Command Logic Look at data at various points in the file List data Do crosstabulations Do analyses in another software package Excel SAS Minitab R Wiesen (2007), IPMAAC Conference 36

37 Use of Capitalization Helpful convention SPSS commands in upper case Variable names in lower case Wiesen (2007), IPMAAC Conference 37

38 Separate the Major Aspects of Read and save Analyses Verify data is read correctly Groom data Transform variables Change numbers 1 to 4 to letters A to D Add variables Name of data set Analyze data Wiesen (2007), IPMAAC Conference 38

39 Name Various Files Use one basic name Keep track of all files related to one project For example: IPMAAC_2007.dat Read_IPMAAC_2007.sps Groom_IPMAAC_2007.sps Analyze_IPMAAC_2007.sps Similar system to name output files Wiesen (2007), IPMAAC Conference 39

40 Display Commands in Output Do this through menu Edit Options Select the Viewer or Draft Viewer tab Check the Display commands in the log Wiesen (2007), IPMAAC Conference 40

41 SPSS Training Resources SPSS built-in tutorial Help-Tutorial-Working with syntax SPSS help menu Help - Command Syntax Reference Full syntax options Gives examples States limitations SPSS website Wiesen (2007), IPMAAC Conference 41

42 SPSS Help When cursor is in a command Click Syntax Help button to find out what subcommands and keywords are available for the current command If the cursor is not in a command Clicking the Syntax Help button to display an alphabetical list of commands You can select the one you want. Wiesen (2007), IPMAAC Conference 42

43 Other Training Resources On line tutorials for SPSS Many from colleges Listserves Wiesen (2007), IPMAAC Conference 43

44 Exercise 1 Fetch data from an Excel file Get average of oral and written scores Save data to an SPSS.sav file Wiesen (2007), IPMAAC Conference 44

45 Exercise 2 Get data from an Excel file Get average of oral and written z-scores Save data to an SPSS.sav file Wiesen (2007), IPMAAC Conference 45

46 Review Pros and cons of drop-down menu How to use command files Wiesen (2007), IPMAAC Conference 46

47 Drop-Down Menus Easy to get started Unwieldy for longer analyses Easy to make undetected errors Hard to proof analyses Wiesen (2007), IPMAAC Conference 47

48 How to Use Command Files Create files Edit files Save files Name files Run files Wiesen (2007), IPMAAC Conference 48

49 Summary Start using SPSS drop-down menus Next, paste menu commands Write command files as soon as possible This enables you to Do longer, more complex analyses Detect errors and proof analyses Wiesen (2007), IPMAAC Conference 49

50 Final Thoughts Look at SPSS programs written by others Become acquainted with SPSS commands Learn details of commands you use often Copies of this presentation are available at: Wiesen (2007), IPMAAC Conference 50

51 Q&A s The floor is open Questions Comments Wiesen (2007), IPMAAC Conference 51

SPSS: Getting Started. For Windows

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

More information

How To Use Spss

How To Use Spss 1: Introduction to SPSS Objectives Learn about SPSS Open SPSS Review the layout of SPSS Become familiar with Menus and Icons Exit SPSS What is SPSS? SPSS is a Windows based program that can be used to

More information

Introduction to SPSS 16.0

Introduction to SPSS 16.0 Introduction to SPSS 16.0 Edited by Emily Blumenthal Center for Social Science Computation and Research 110 Savery Hall University of Washington Seattle, WA 98195 USA (206) 543-8110 November 2010 http://julius.csscr.washington.edu/pdf/spss.pdf

More information

Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ

Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ PharmaSUG 2014 PO10 Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ ABSTRACT As more and more organizations adapt to the SAS Enterprise Guide,

More information

Lab 2: MS ACCESS Tables

Lab 2: MS ACCESS Tables Lab 2: MS ACCESS Tables Summary Introduction to Tables and How to Build a New Database Creating Tables in Datasheet View and Design View Working with Data on Sorting and Filtering 1. Introduction Creating

More information

HOW TO CREATE AND MERGE DATASETS IN SPSS

HOW TO CREATE AND MERGE DATASETS IN SPSS HOW TO CREATE AND MERGE DATASETS IN SPSS If the original datasets to be merged are large, the process may be slow and unwieldy. Therefore the preferred method for working on multiple sweeps of data is

More information

SPSS 12 Data Analysis Basics Linda E. Lucek, Ed.D. LindaL@niu.edu 815-753-9516

SPSS 12 Data Analysis Basics Linda E. Lucek, Ed.D. LindaL@niu.edu 815-753-9516 SPSS 12 Data Analysis Basics Linda E. Lucek, Ed.D. LindaL@niu.edu 815-753-9516 Technical Advisory Group Customer Support Services Northern Illinois University 120 Swen Parson Hall DeKalb, IL 60115 SPSS

More information

Word 2007: Mail Merge Learning Guide

Word 2007: Mail Merge Learning Guide Word 2007: Mail Merge Learning Guide Getting Started Mail merge techniques allow you to create a document which combines repetitive text elements with data drawn from an external data document. To perform

More information

Tutorial #7A: LC Segmentation with Ratings-based Conjoint Data

Tutorial #7A: LC Segmentation with Ratings-based Conjoint Data Tutorial #7A: LC Segmentation with Ratings-based Conjoint Data This tutorial shows how to use the Latent GOLD Choice program when the scale type of the dependent variable corresponds to a Rating as opposed

More information

SPSS (Statistical Package for the Social Sciences)

SPSS (Statistical Package for the Social Sciences) SPSS (Statistical Package for the Social Sciences) What is SPSS? SPSS stands for Statistical Package for the Social Sciences The SPSS home-page is: www.spss.com 2 What can you do with SPSS? Run Frequencies

More information

IBM SPSS Statistics 20 Part 1: Descriptive Statistics

IBM SPSS Statistics 20 Part 1: Descriptive Statistics CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES IBM SPSS Statistics 20 Part 1: Descriptive Statistics Summer 2013, Version 2.0 Table of Contents Introduction...2 Downloading the

More information

There are six different windows that can be opened when using SPSS. The following will give a description of each of them.

There are six different windows that can be opened when using SPSS. The following will give a description of each of them. SPSS Basics Tutorial 1: SPSS Windows There are six different windows that can be opened when using SPSS. The following will give a description of each of them. The Data Editor The Data Editor is a spreadsheet

More information

Appendix III: SPSS Preliminary

Appendix III: SPSS Preliminary Appendix III: SPSS Preliminary SPSS is a statistical software package that provides a number of tools needed for the analytical process planning, data collection, data access and management, analysis,

More information

Creating QBE Queries in Microsoft SQL Server

Creating QBE Queries in Microsoft SQL Server Creating QBE Queries in Microsoft SQL Server When you ask SQL Server or any other DBMS (including Access) a question about the data in a database, the question is called a query. A query is simply a question

More information

This book serves as a guide for those interested in using IBM

This book serves as a guide for those interested in using IBM 1 Overview This book serves as a guide for those interested in using IBM SPSS/PASW Statistics software to aid in statistical data analysis whether as a companion to a statistics or research methods course

More information

Introduction to Microsoft Access 2013

Introduction to Microsoft Access 2013 Introduction to Microsoft Access 2013 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

Microsoft Access 2000

Microsoft Access 2000 Microsoft Access 2000 Level 1 Region 4 Teaching, Learning and Technology Center Kaplan, LA Activity 1 Creating a Database 1. Open Microsoft Access 2000 a. Click on START, highlight Programs, point and

More information

This book serves as a guide for those interested in using IBM SPSS

This book serves as a guide for those interested in using IBM SPSS 1 Overview This book serves as a guide for those interested in using IBM SPSS Statistics software to assist in statistical data analysis whether as a companion to a statistics or research methods course,

More information

Getting Started With SPSS

Getting Started With SPSS Getting Started With SPSS To investigate the research questions posed in each section of this site, we ll be using SPSS, an IBM computer software package specifically designed for use in the social sciences.

More information

Simple Linear Regression, Scatterplots, and Bivariate Correlation

Simple Linear Regression, Scatterplots, and Bivariate Correlation 1 Simple Linear Regression, Scatterplots, and Bivariate Correlation This section covers procedures for testing the association between two continuous variables using the SPSS Regression and Correlate analyses.

More information

Introduction to Microsoft Access 2010

Introduction to Microsoft Access 2010 Introduction to Microsoft Access 2010 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

MS Access Lab 2. Topic: Tables

MS Access Lab 2. Topic: Tables MS Access Lab 2 Topic: Tables Summary Introduction: Tables, Start to build a new database Creating Tables: Datasheet View, Design View Working with Data: Sorting, Filtering Help on Tables Introduction

More information

IT Service Manager Agent Guide

IT Service Manager Agent Guide IT Service Manager Agent Guide Issue Training - Online Tutorials & Guides http://www.it.northwestern.edu/service-manager/ IT Service Manager Login Page https://itsm-fp.northwestern.edu/footprints/ Contents

More information

Introduction to SPSS (version 16) for Windows

Introduction to SPSS (version 16) for Windows Introduction to SPSS (version 16) for Windows Practical workbook Aims and Learning Objectives By the end of this course you will be able to: get data ready for SPSS create and run SPSS programs to do simple

More information

Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro

Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro, to your M: drive. To do the second part of the prelab, you will need to have available a database from that folder. Creating a new

More information

SPSS Workbook 1 Data Entry : Questionnaire Data

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 s.storey@tees.ac.uk SPSS data entry 1 This workbook is designed to introduce

More information

Access Queries (Office 2003)

Access Queries (Office 2003) Access Queries (Office 2003) Technical Support Services Office of Information Technology, West Virginia University OIT Help Desk 293-4444 x 1 oit.wvu.edu/support/training/classmat/db/ Instructor: Kathy

More information

Shark Talent Management System Performance Reports

Shark Talent Management System Performance Reports Shark Talent Management System Performance Reports Goals Reports Goal Details Report. Page 2 Goal Exception Report... Page 4 Goal Hierarchy Report. Page 6 Goal Progress Report.. Page 8 Goal Status Report...

More information

Working with Access Tables A Continuation

Working with Access Tables A Continuation Working with Access Tables A Continuation This document provides basic techniques for working with tables in Microsoft Access by setting field properties, creating reference tables, sorting and filtering

More information

Online Appointments (Patients)

Online Appointments (Patients) Online Appointments (Patients) Overview Once the patient has registered and activated their account they can use the modules available at the practice. This section of the user guide details how the patient

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

Statistical Data analysis With Excel For HSMG.632 students

Statistical Data analysis With Excel For HSMG.632 students 1 Statistical Data analysis With Excel For HSMG.632 students Dialog Boxes Descriptive Statistics with Excel To find a single descriptive value of a data set such as mean, median, mode or the standard deviation,

More information

Can SAS Enterprise Guide do all of that, with no programming required? Yes, it can.

Can SAS Enterprise Guide do all of that, with no programming required? Yes, it can. SAS Enterprise Guide for Educational Researchers: Data Import to Publication without Programming AnnMaria De Mars, University of Southern California, Los Angeles, CA ABSTRACT In this workshop, participants

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

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA All information presented in the document has been acquired from http://docs.joomla.org to assist you with your website 1 JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA BACK

More information

Create AKINDI Courses In AKINDI, create an AKINDI course for each section you teach. STUDENTS TAKE TEST VIEW RESULTS AND ADDRESS EXCEPTIONS

Create AKINDI Courses In AKINDI, create an AKINDI course for each section you teach. STUDENTS TAKE TEST VIEW RESULTS AND ADDRESS EXCEPTIONS USC Marshall School of Business Customer Technology Services AKINDI Test Forms Creating and Grading Test Forms You can use AKINDI to create multiple choice test forms that can be printed out for student

More information

Chapter 1: The Cochrane Library Search Tour

Chapter 1: The Cochrane Library Search Tour Chapter : The Cochrane Library Search Tour Chapter : The Cochrane Library Search Tour This chapter will provide an overview of The Cochrane Library Search: Learn how The Cochrane Library new search feature

More information

Directions for Frequency Tables, Histograms, and Frequency Bar Charts

Directions for Frequency Tables, Histograms, and Frequency Bar Charts Directions for Frequency Tables, Histograms, and Frequency Bar Charts Frequency Distribution Quantitative Ungrouped Data Dataset: Frequency_Distributions_Graphs-Quantitative.sav 1. Open the dataset containing

More information

MICROSOFT ACCESS 2003 TUTORIAL

MICROSOFT ACCESS 2003 TUTORIAL MICROSOFT ACCESS 2003 TUTORIAL M I C R O S O F T A C C E S S 2 0 0 3 Microsoft Access is powerful software designed for PC. It allows you to create and manage databases. A database is an organized body

More information

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS Last Edited: 2012-07-09 1 Access to Outlook contacts area... 4 Manage Outlook contacts view... 5 Change the view of Contacts area... 5 Business Cards view... 6

More information

CIRCULAR LETTER NO. 2263 ONLINE CERTIFICATE OF INSURANCE TOOL ASSIGNED RISK POOL POLICIES

CIRCULAR LETTER NO. 2263 ONLINE CERTIFICATE OF INSURANCE TOOL ASSIGNED RISK POOL POLICIES September 11, 2015 CIRCULAR LETTER NO. 2263 To All Members and Subscribers of the WCRIBMA: ONLINE CERTIFICATE OF INSURANCE TOOL ASSIGNED RISK POOL POLICIES The WCRIBMA is pleased to announce the availability

More information

ecw Weekly Users Tip: My Settings: Template-Friendly Settings & My Favorites: Templates

ecw Weekly Users Tip: My Settings: Template-Friendly Settings & My Favorites: Templates ecw Weekly Users Tip: My Settings: Template-Friendly Settings & My Favorites: Templates Templates, regardless of how basic or how comprehensive, can make your notes overwhelming and visually harder to

More information

Affiliation Security

Affiliation Security Affiliation Security Access to more student information: View student information with majors/minors* View student information under your advisement View students who have signed up for courses* View student

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

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

Database File. Table. Field. Datatype. Value. Department of Computer and Mathematical Sciences

Database File. Table. Field. Datatype. Value. Department of Computer and Mathematical Sciences Unit 4 Introduction to Spreadsheet and Database, pages 1 of 12 Department of Computer and Mathematical Sciences CS 1305 Intro to Computer Technology 15 Module 15: Introduction to Microsoft Access Objectives:

More information

DataDirector Getting Started

DataDirector Getting Started DataDirector Getting Started LOGIN Log into the DataDirector website: https://www.achievedata.com/yourdistrictname User Name: New Password: Enter your User Name and Password o After login, you may need

More information

Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102

Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Intellect Platform - The Workflow Engine Basic HelpDesk Troubleticket System - A102 Interneer, Inc. Updated on 2/22/2012 Created by Erika Keresztyen Fahey 2 Workflow - A102 - Basic HelpDesk Ticketing System

More information

Note: With v3.2, the DocuSign Fetch application was renamed DocuSign Retrieve.

Note: With v3.2, the DocuSign Fetch application was renamed DocuSign Retrieve. Quick Start Guide DocuSign Retrieve 3.2.2 Published April 2015 Overview DocuSign Retrieve is a windows-based tool that "retrieves" envelopes, documents, and data from DocuSign for use in external systems.

More information

Microsoft Excel Tips & Tricks

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

More information

Chapter 24: Creating Reports and Extracting Data

Chapter 24: Creating Reports and Extracting Data Chapter 24: Creating Reports and Extracting Data SEER*DMS includes an integrated reporting and extract module to create pre-defined system reports and extracts. Ad hoc listings and extracts can be generated

More information

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9. Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format

More information

Crystal Reports Payroll Exercise

Crystal Reports Payroll Exercise Crystal Reports Payroll Exercise Objective This document provides step-by-step instructions on how to build a basic report on Crystal Reports XI on the MUNIS System supported by MAISD. The exercise will

More information

Frequently Asked Questions About Using The GRE Search Service

Frequently Asked Questions About Using The GRE Search Service Frequently Asked Questions About Using The GRE Search Service General Information Who can use the GRE Search Service? Institutions eligible to participate in the GRE Search Service include (1) institutions

More information

4. Descriptive Statistics: Measures of Variability and Central Tendency

4. Descriptive Statistics: Measures of Variability and Central Tendency 4. Descriptive Statistics: Measures of Variability and Central Tendency Objectives Calculate descriptive for continuous and categorical data Edit output tables Although measures of central tendency and

More information

UCINET Quick Start Guide

UCINET Quick Start Guide UCINET Quick Start Guide This guide provides a quick introduction to UCINET. It assumes that the software has been installed with the data in the folder C:\Program Files\Analytic Technologies\Ucinet 6\DataFiles

More information

Tutorial Microsoft Office Excel 2003

Tutorial Microsoft Office Excel 2003 Tutorial Microsoft Office Excel 2003 Introduction: Microsoft Excel is the most widespread program for creating spreadsheets on the market today. Spreadsheets allow you to organize information in rows and

More information

Database Forms and Reports Tutorial

Database Forms and Reports Tutorial Database Forms and Reports Tutorial Contents Introduction... 1 What you will learn in this tutorial... 2 Lesson 1: Create First Form Using Wizard... 3 Lesson 2: Design the Second Form... 9 Add Components

More information

IBM SPSS Statistics for Beginners for Windows

IBM SPSS Statistics for Beginners for Windows ISS, NEWCASTLE UNIVERSITY IBM SPSS Statistics for Beginners for Windows A Training Manual for Beginners Dr. S. T. Kometa A Training Manual for Beginners Contents 1 Aims and Objectives... 3 1.1 Learning

More information

SPSS Step-by-Step Tutorial: Part 1

SPSS Step-by-Step Tutorial: Part 1 SPSS Step-by-Step Tutorial: Part 1 For SPSS Version 11.5 DataStep Development 2004 Table of Contents 1 SPSS Step-by-Step 5 Introduction 5 Installing the Data 6 Installing files from the Internet 6 Installing

More information

Creating and Using Databases with Microsoft Access

Creating and Using Databases with Microsoft Access CHAPTER A Creating and Using Databases with Microsoft Access In this chapter, you will Use Access to explore a simple database Design and create a new database Create and use forms Create and use queries

More information

Excel Database Management

Excel Database Management How to use AutoFill Whether you just want to copy the same value down or need to get a series of numbers or text values, fill handle in Excel is the feature to help. It's an irreplaceable part of the AutoFill

More information

In this example, Mrs. Smith is looking to create graphs that represent the ethnic diversity of the 24 students in her 4 th grade class.

In this example, Mrs. Smith is looking to create graphs that represent the ethnic diversity of the 24 students in her 4 th grade class. Creating a Pie Graph Step-by-step directions In this example, Mrs. Smith is looking to create graphs that represent the ethnic diversity of the 24 students in her 4 th grade class. 1. Enter Data A. Open

More information

Using Excel for Statistical Analysis

Using Excel for Statistical Analysis 2010 Using Excel for Statistical Analysis Microsoft Excel is spreadsheet software that is used to store information in columns and rows, which can then be organized and/or processed. Excel is a powerful

More information

Introduction. Why Use ODBC? Setting Up an ODBC Data Source. Stat/Math - Getting Started Using ODBC with SAS and SPSS

Introduction. Why Use ODBC? Setting Up an ODBC Data Source. Stat/Math - Getting Started Using ODBC with SAS and SPSS Introduction Page 1 of 15 The Open Database Connectivity (ODBC) standard is a common application programming interface for accessing data files. In other words, ODBC allows you to move data back and forth

More information

Data exploration with Microsoft Excel: analysing more than one variable

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

More information

Making an online form in Serif WebPlus

Making an online form in Serif WebPlus Making an online form in Serif WebPlus Before you begin your form, it is a very good idea to plan it out on a piece of paper. Decide what information you wish to collect, and which type of fields will

More information

NDSR Utilities. Creating Backup Files. Chapter 9

NDSR Utilities. Creating Backup Files. Chapter 9 Chapter 9 NDSR Utilities NDSR utilities include various backup and restore features, ways to generate output files, and methods of importing and exporting Header tab information. This chapter describes:

More information

Tutorial of Deltek s Expense Report Domestic Travel Edition

Tutorial of Deltek s Expense Report Domestic Travel Edition Tutorial of Deltek s Expense Report Domestic Travel Edition Please note that any expense incurred by an employee and to be reimbursed by BCF Solutions, Inc. has to be through an expense report. Step 1:

More information

Using Spreadsheets, Selection Sets, and COGO Controls

Using Spreadsheets, Selection Sets, and COGO Controls Using Spreadsheets, Selection Sets, and COGO Controls Contents About this tutorial... 3 Step 1. Open the project... 3 Step 2. View spreadsheets... 4 Step 3. Create a selection set... 10 Step 4. Work with

More information

Psych. Research 1 Guide to SPSS 11.0

Psych. Research 1 Guide to SPSS 11.0 SPSS GUIDE 1 Psych. Research 1 Guide to SPSS 11.0 I. What is SPSS: SPSS (Statistical Package for the Social Sciences) is a data management and analysis program. It allows us to store and analyze very large

More information

SAS Task Manager 2.2. User s Guide. SAS Documentation

SAS Task Manager 2.2. User s Guide. SAS Documentation SAS Task Manager 2.2 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2015. SAS Task Manager 2.2: User's Guide. Cary, NC: SAS Institute

More information

CSPro Getting Started

CSPro Getting Started CSPro Getting Started Version 2.6 International Programs Center U.S. Census Bureau Washington DC 20233-8860 Phone: 1-301-763-1451 Fax: 1-301-457-3033 E-mail: CSPro@lists.census.gov 13 Jun 2005 Table of

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

SPSS Introduction. Yi Li

SPSS Introduction. Yi Li SPSS Introduction Yi Li Note: The report is based on the websites below http://glimo.vub.ac.be/downloads/eng_spss_basic.pdf http://academic.udayton.edu/gregelvers/psy216/spss http://www.nursing.ucdenver.edu/pdf/factoranalysishowto.pdf

More information

SPOC Instruction Guide

SPOC Instruction Guide SPOC Instruction Guide The following information should guide you through navigating NC AWWA-WEA s self-paced online course (SPOC) program. If you have additional questions please contact Nicole Banks

More information

What Do You Think? for Instructors

What Do You Think? for Instructors Accessing course reports and analysis views What Do You Think? for Instructors Introduction As an instructor, you can use the What Do You Think? Course Evaluation System to see student course evaluation

More information

2 SQL in iseries Navigator

2 SQL in iseries Navigator 2 SQL in iseries Navigator In V4R4, IBM added an SQL scripting tool to the standard features included within iseries Navigator and has continued enhancing it in subsequent releases. Because standard features

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

Data exploration with Microsoft Excel: univariate analysis

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

More information

Using Excel for Data Manipulation and Statistical Analysis: How-to s and Cautions

Using Excel for Data Manipulation and Statistical Analysis: How-to s and Cautions 2010 Using Excel for Data Manipulation and Statistical Analysis: How-to s and Cautions This document describes how to perform some basic statistical procedures in Microsoft Excel. Microsoft Excel is spreadsheet

More information

An Introduction to SPSS. Workshop Session conducted by: Dr. Cyndi Garvan Grace-Anne Jackman

An Introduction to SPSS. Workshop Session conducted by: Dr. Cyndi Garvan Grace-Anne Jackman An Introduction to SPSS Workshop Session conducted by: Dr. Cyndi Garvan Grace-Anne Jackman Topics to be Covered Starting and Entering SPSS Main Features of SPSS Entering and Saving Data in SPSS Importing

More information

2: Entering Data. Open SPSS and follow along as your read this description.

2: Entering Data. Open SPSS and follow along as your read this description. 2: Entering Data Objectives Understand the logic of data files Create data files and enter data Insert cases and variables Merge data files Read data into SPSS from other sources The Logic of Data Files

More information

Using Excel As A Database

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

More information

Ansur Test Executive. Users Manual

Ansur Test Executive. Users Manual Ansur Test Executive Users Manual April 2008 2008 Fluke Corporation, All rights reserved. All product names are trademarks of their respective companies Table of Contents 1 Introducing Ansur... 4 1.1 About

More information

Microsoft Access Basics

Microsoft Access Basics Microsoft Access Basics 2006 ipic Development Group, LLC Authored by James D Ballotti Microsoft, Access, Excel, Word, and Office are registered trademarks of the Microsoft Corporation Version 1 - Revision

More information

Word 2010: Mail Merge to Email with Attachments

Word 2010: Mail Merge to Email with Attachments Word 2010: Mail Merge to Email with Attachments Table of Contents TO SEE THE SECTION FOR MACROS, YOU MUST TURN ON THE DEVELOPER TAB:... 2 SET REFERENCE IN VISUAL BASIC:... 2 CREATE THE MACRO TO USE WITHIN

More information

Introduction to PASW Statistics 34152-001

Introduction to PASW Statistics 34152-001 Introduction to PASW Statistics 34152-001 V18 02/2010 nm/jdr/mr For more information about SPSS Inc., an IBM Company software products, please visit our Web site at http://www.spss.com or contact: SPSS

More information

Totally Internet Based Software. User Entry. Strategy Systems, Inc. PO Box 2136 Rogers, AR 72757 (479) 271-7400

Totally Internet Based Software. User Entry. Strategy Systems, Inc. PO Box 2136 Rogers, AR 72757 (479) 271-7400 Totally Internet Based Software User Entry Strategy Systems, Inc. PO Box 2136 Rogers, AR 72757 (479) 271-7400 Adding Users... 1 User Information Tab... 1 Operations Tab... 2 Accounting Tab... 2 Display

More information

Microsoft Access 2007 Introduction

Microsoft Access 2007 Introduction Microsoft Access 2007 Introduction Access is the database management system in Microsoft Office. A database is an organized collection of facts about a particular subject. Examples of databases are an

More information

Access 2010 Intermediate Skills

Access 2010 Intermediate Skills Access 2010 Intermediate Skills (C) 2013, BJC HealthCare (St Louis, Missouri). All Rights Reserved. Revised June 5, 2013. TABLE OF CONTENTS OBJECTIVES... 3 UNDERSTANDING RELATIONSHIPS... 4 WHAT IS A RELATIONSHIP?...

More information

Upon Installation, Soda

Upon Installation, Soda Upon Installation, Soda Prompts you to create your user profile to register for a new profile Note: Asks your for your particulars Prompts you to select a password. You would need to provide this password

More information

PDF Web Form. Projects 1

PDF Web Form. Projects 1 Projects 1 In this project, you ll create a PDF form that can be used to collect user data online. In this exercise, you ll learn how to: Design a layout for a functional form. Add form fields and set

More information

AIM Dashboard-User Documentation

AIM Dashboard-User Documentation AIM Dashboard-User Documentation Accessing the Academic Insights Management (AIM) Dashboard Getting Started Navigating the AIM Dashboard Advanced Data Analysis Features Exporting Data Tables into Excel

More information

SonicWALL GMS Custom Reports

SonicWALL GMS Custom Reports SonicWALL GMS Custom Reports Document Scope This document describes how to configure and use the SonicWALL GMS 6.0 Custom Reports feature. This document contains the following sections: Feature Overview

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

SAP BusinessObjects Financial Consolidation Web User Guide

SAP BusinessObjects Financial Consolidation Web User Guide SAP BusinessObjects Financial Consolidation Document Version: 10.0 Support Package 18 2016-02-19 SAP BusinessObjects Financial Consolidation Web User Guide Content 1 General user functions....12 1.1 To

More information

Top Tips 9 IS Portal Tips & Tricks

Top Tips 9 IS Portal Tips & Tricks OPENING THE INCLUSION SUPPORT (IS) PORTAL To open the IS Portal services can open the Introduction Letter sent by their Inclusion Support Agency and click the web address listed. MOVING BETWEEN THE IS

More information

Working with SQL Server Integration Services

Working with SQL Server Integration Services SQL Server Integration Services (SSIS) is a set of tools that let you transfer data to and from SQL Server 2005. In this lab, you ll work with the SQL Server Business Intelligence Development Studio to

More information