Using a Fillable PDF together with SAS for Questionnaire Data Donald Evans, US Department of the Treasury

Size: px
Start display at page:

Download "Using a Fillable PDF together with SAS for Questionnaire Data Donald Evans, US Department of the Treasury"

Transcription

1 Using a Fillable PDF together with SAS for Questionnaire Data Donald Evans, US Department of the Treasury Introduction The objective of this paper is to demonstrate how to use a fillable PDF to collect data and use SAS to import and summarize the answers from the questionnaires. When a respondent uses the fillable PDF to answer a question, the PDF is storing the information in XML language in the background of the program. This information can be read and converted into a database format with the built-in SAS XML Engine. An intermediate step is required whereby additional information is added to the xml to identify the start and end of a table and the start and end of a record. This technique is especially effective with questionnaires containing more than 256 fields the column restriction for Excel Create a Document The first step in this process is to create a document that will be used as a foundation for collecting all of the information that we are interested in obtaining. This can be accomplished two ways: create a form directly in Acrobat LifeCyle Designer; or in an editor like Word. If the latter is chosen, then create a rough-version of the form with the overall structure without controls (like radio buttons, text fields, etc.), create a PDF from the document, and then overlay the fillable components of the form directly in Acrobat. Exhibit 1: Example of a Form Started in Word Page 1

2 Exhibit 2: Example of Form with Overlayed Controls Controls The appropriate controls (like radio buttons or check-boxes) need to be added to capture user input. To add these in Acrobat go to Tools Forms and select the control of choice. The naming convention that is used for each of the controls will impact other steps in the process. Acrobat will automatically assign a default name to a control double-click on the control to see the name under the General tab. Choosing a name that is representative of the question that it related to will make it easier to understand where the data is coming from. For example, Q1Gender is easier to track than RadioButton2. Make sure to follow the naming convention for SAS variable names: don t start with a number; names can not be more than 32 characters, and do not include special characters (other than _ ). Control names with spaces will cause additional information to be added to the xml. This extra information will have to be removed for SAS to read the xml. Exhibit 3: Properties of a Control Name Exhibit 4: xml Generated from Variables with and without a Space in the Name Control Name xml output Check Box4 <CheckBox4 xfdf:original="check Box4">$75-$100k</CheckBox4> CheckBox4 <CheckBox4>$75-$100k</CheckBox4> Page 2

3 Each control can operate together or independently. If, for example, two radio buttons have been added to capture the sex of the individual as either male or female, these buttons can be tied together so that answering one restricts the other from being answered. Simply giving each of these controls the same name will achieve this. In order to s has a name. Extracting Responses from Completed PDFs Once completed questionnaires have been received, save to a central location (a single folder). The responses can be extracted en masse through Acrobat. Go to Forms Manage Form Data Merge Data Files into Spreadsheet (Export Data can be used for a single form). Select the files to extract the data and click Export. You will be prompted to save the file and designate a location make sure to change the file type to xml. You will be prompted to view the file or close the dialog box. Viewing the file will open your html browser. Exhibit 5: Extracting Response Data Stored in Multiple Files Exhibit 6: Choose the Files that Contain Response Data Page 3

4 Exhibit 7: Viewing the xml Output File will Open Your html Browser You might be tempted at this point to choose to use the csv file-type, however it is very difficult to view the large data files (too wide) I could only get notepad to fully display the data and it wrapped the lines. The exhibit below shows what the file looks like in WordPad and Notepad. WordPad did not fully display the file stopped scrolling right. Notepad displays the data, but it s easy to get lost quickly. Exhibit 8: Reading Large Files in WordPad and Notepad Adjusting the xml Structure for SAS Some minor revisions need to be made to the xml to put it into the structure that SAS needs. Any text editor can be used, but I prefer Notepad. The xml needs to tell SAS that it is reading a table and where a record starts and ends and when a table ends. A table in this case is asking SAS to generate a SAS dataset. The example below shows the basic structure of the xml. If a field is left blank, it only includes the end-field marker. The word RECORD can be changed to the name of choice this will be the name of the SAS dataset. All other information that Acrobat automatically includes needs to be removed like <DATA>,</FIELD>, and comments outside of the record information. Page 4

5 Exhibit 9: Basic xml Structure that Enables SAS to Read an xml Data File <?xml version="1.0" encoding="utf-8"?> <TABLE> <RECORD> <field1>data from field stored here</field1> <field2>data from field stored here</field2> </field3> </RECORD> <RECORD> <field1>data from field stored here</field1> <field2>data from field stored here</field2> </field3> </RECORD> </TABLE> Exhibit 10: Data File with Acceptable xml Structure Page 5

6 Exhibit 11: Data File with Acceptable xml Structure Raw xml with Acceptable Structure Markers <?xml version="1.0" encoding="utf-8"?> <TABLE> <DEMO> <CheckBox4 >$25-$50K</CheckBox4 ><RadioButton14 >Yes</RadioButton14 ><RadioButton2 >Female</RadioButton2 ><Text12 >Great questionnaire!!!</text12 > </DEMO> <DEMO> <CheckBox4 >$100-$125k</CheckBox4 ><RadioButton14 >No</RadioButton14 ><RadioButton2 >Male</RadioButton2 ><Text12 >Sample questionnaire is too short</text12 > </DEMO> </TABLE> Pretty (Easy-To-Read) View of xml <?xml version="1.0" encoding="utf-8"?> <TABLE> <DEMO> <CheckBox4 >$25-$50K</CheckBox4> <RadioButton14>Yes</RadioButton14> <RadioButton2>Female</RadioButton2> <Text12>Great questionnaire!!!</text12> </DEMO> <DEMO> <CheckBox4>$100-$125k</CheckBox4> <RadioButton14>No</RadioButton14> <RadioButton2>Male</RadioButton2> <Text12>Sample questionnaire is too short</text12> </DEMO> </TABLE> Exhibit 12: SAS Error if the xml is Not in the Appropriate Structure Working in SAS Now that all of the prep-work is done, it s finally time to tell SAS what to do. Two libname statements and a simple data step are all that is needed to read the data. The key to the code is telling SAS that it will be reading some xml and it will be from the trans xml file. The variable names are read directly from the xml labels and the data placed in the correct columns. Exhibit 13: SAS Code to Read an xml File libname trans xml 'D:\don work files\sas Master Files\report.xml'; libname myfiles 'D:\don work files\sas Master Files'; data myfiles.demo; set trans.demo; run; Page 6

7 trans xml myfiles datastep Exhibit 14: What s Going On The points to the raw data file where the new datafile will be saved invokes the SAS xml engine Exhibit 15: Success! Data File Read Successfully SAS Errors The descriptions that SAS uses for the errors in reading xml file are not especially helpful. Here s what I would check: a. Are any of your variables more than 32 characters? b. Did you add the record markers correctly? c. Did you delete the default markers that Acrobat adds? d. Did any of the respondents include a & in the text that was not converted to & in the xml? Page 7

8 Fine-Tuning the SAS Dataset The dataset that SAS created from the xml will be in reverse order and backwards. This is because SAS is creating the variable names directly from the data as it reads it. In order to flip the variables, use a format statement followed by the set statement in a new datastep. Exhibit 16: SAS Dataset Created from Reading the xml File Exhibit 17: SAS Code to Flip the Order of the Variables data demo; format checkbox4 radiobutton14 radiobutton2 text12 ; set myfiles.demo; run; Shortcut: Use a proc contents with a varnum option together with a ods statement to output an excel file. In excel sort the file in descending order and copy the listed variables into your datastep. This assumes that all of the controls were added in order from the start of the form to the end. Handling Numeric Variables If a textbox is being used to capture a number, this variable will be stored as a numeric unless the first record that is read is blank (empty). If this is the case, then it will be created as a character and will need to be converted to a numeric variable. Create a new variable based on the original variable by multiplying it by one. Drop the original variable and in a new datastep, copy the temporary variable back to the original name and drop the temporary variable. Exhibit 18: Datasteps to Convert a Character to Numeric data demo; set demo; text12_temp=text12*1; drop text12; run; data demo; set demo; text12=text12_temp; drop text12_temp; run; Page 8

9 Trademark SAS and all other SAS Institute Inc. product or service names are registered trademarks or trademarks of SAS Institute Inc. in the USA and other countries. indicates USA registration. Other brand and product names are registered trademarks or trademarks of their respective companies. Acknowledgement To Paul Showalter, for helping me work out some issues that I was having with my sample PDF. Contact Information Your comments and questions are valued and encouraged. Please contact the author at: donevans@hotmail.com 202/ Page 9

Select a report and click this to view it. Select a report and click this to change it.

Select a report and click this to view it. Select a report and click this to change it. Quick Videos: A tutorial on creating reports. Shows reports you have created.s Not used by the county Reports pre-made by the county Reports pre-made by 4-H Online Shows reports and folders you have deleted.

More information

irc Pro (Not for diagnostic use)

irc Pro (Not for diagnostic use) irc Pro (Not for diagnostic use) User guide 2016 2 Table of Contents ircpro... 3 Overview... 3 Release notes... 4 Requirements... 5 Setup... 6 Setup by DVD... 7 Setup by Internet... 8 step 1 - Install

More information

How to Mail Merge PDF Documents

How to Mail Merge PDF Documents How to Mail Merge PDF Documents A step-by-step guide to creating personalized documents using AutoMailMerge plug-in for Adobe Acrobat Table of Contents What is a mail merge?...2 What do I need to start?...2

More information

Introduction to SPSS

Introduction to SPSS Introduction to SPSS Purpose The purpose of this assignment is to introduce you to SPSS, the most commonly used statistical package in the social sciences. You will create a new data file and calculate

More information

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide Multi-Sponsor Environment SAS Clinical Trial Data Transparency User Guide Version 6.0 01 December 2017 Contents Contents 1 Overview...1 2 Setting up Your Account...3 2.1 Completing the Initial Email and

More information

Form into function. Getting prepared. Tutorial. Paul Jasper

Form into function. Getting prepared. Tutorial. Paul Jasper Tutorial Paul Jasper TABLE OF CONTENTS 1 Getting prepared 2 Adding a button to the form design 2 Making the button add tasks 3 Sending the XML data 4 Tidying up 5 Next time In the first episode, I showed

More information

SAS Studio: A New Way to Program in SAS

SAS Studio: A New Way to Program in SAS SAS Studio: A New Way to Program in SAS Lora D Delwiche, Winters, CA Susan J Slaughter, Avocet Solutions, Davis, CA ABSTRACT SAS Studio is an important new interface for SAS, designed for both traditional

More information

Freestyle Reports DW DIG Crosstabs, Hotspots and Exporting

Freestyle Reports DW DIG Crosstabs, Hotspots and Exporting Exporting a Report You can export a report into other file formats. Acrobat (.pdf) Before exporting a report to.pdf format, make sure the columns in your report provide ample space for their contents.

More information

The MAXQDA Stats Data Editor

The MAXQDA Stats Data Editor The Data Editor The Data Editor The MAXQDA Stats Data Editor displays the cases in the rows and the variables in the columns. Each case is therefore in a separate line. The following figure shows the Data

More information

Installation Instructions for SAS Activity-Based Management 6.2

Installation Instructions for SAS Activity-Based Management 6.2 Installation Instructions for SAS Activity-Based Management 6.2 Copyright Notice The correct bibliographic citation for this manual is as follows: SAS Institute Inc., Installation Instructions for SAS

More information

Biology 345: Biometry Fall 2005 SONOMA STATE UNIVERSITY Lab Exercise 2 Working with data in Excel and exporting to JMP Introduction

Biology 345: Biometry Fall 2005 SONOMA STATE UNIVERSITY Lab Exercise 2 Working with data in Excel and exporting to JMP Introduction Biology 345: Biometry Fall 2005 SONOMA STATE UNIVERSITY Lab Exercise 2 Working with data in Excel and exporting to JMP Introduction In this exercise, we will learn how to reorganize and reformat a data

More information

My Publications Quick Start Guide

My Publications Quick Start Guide IHS > Decision Support Tool My Publications Quick Start Guide January 28, 2011 Version 2.0 2011 IHS, All Rights Reserved. All trademarks belong to IHS or its affiliated and subsidiary companies, all rights

More information

Enterprise Client Software for the Windows Platform

Enterprise Client Software for the Windows Platform Paper 154 Enterprise Client Software for the Windows Platform Gail Kramer, SAS Institute Inc., Cary, NC Carol Rigsbee, SAS Institute Inc., Cary, NC John Toebes, SAS Institute Inc., Cary, NC Jeff Polzin,

More information

Technical White Paper

Technical White Paper Technical White Paper Via Excel (VXL) Item Templates This technical white paper is designed for Spitfire Project Management System users. In this paper, you will learn how to create Via Excel Item Templates

More information

Job Aid. Enter bid Using XML Upload Functionality

Job Aid. Enter bid Using XML Upload Functionality Enter bid Using XML Upload Functionality Scenario: You need to respond to a bid using the XML upload functionality. The XML functionality allows your responses to be transferred automatically from an Excel

More information

Electronic Owner s Manual User Guide

Electronic Owner s Manual User Guide Electronic Owner s Manual User Guide I. Getting Started.... 1 Logging In.... 2 Additional Information... 2 II. Searching for an Existing EOM Form... 5 III. Creating a New EOM Form.. 5 IV. Modifying an

More information

Remodeling Your Office A New Look for the SAS Add-In for Microsoft Office

Remodeling Your Office A New Look for the SAS Add-In for Microsoft Office Paper SAS1864-2018 Remodeling Your Office A New Look for the SAS Add-In for Microsoft Office ABSTRACT Tim Beese, SAS Institute Inc., Cary, NC Millions of people spend their weekdays in an office. Occasionally

More information

Calendar & Buttons Dashboard Menu Features My Profile My Favorites Watch List Adding a New Request...

Calendar & Buttons Dashboard Menu Features My Profile My Favorites Watch List Adding a New Request... remitview User Guide 1 TABLE OF CONTENTS INTRODUCTION... 3 Calendar & Buttons... 3 GETTING STARTED.... 5 Dashboard.... 7 Menu Features... 8 PROFILE.... 10 My Profile... 10 My Favorites... 12 Watch List...

More information

I KNOW HOW TO PROGRAM IN SAS HOW DO I NAVIGATE SAS ENTERPRISE GUIDE?

I KNOW HOW TO PROGRAM IN SAS HOW DO I NAVIGATE SAS ENTERPRISE GUIDE? Paper HOW-068 A SAS Programmer s Guide to the SAS Enterprise Guide Marje Fecht, Prowerk Consulting LLC, Cape Coral, FL Rupinder Dhillon, Dhillon Consulting Inc., Toronto, ON, Canada ABSTRACT You have been

More information

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL We have spent the first part of the course learning Excel: importing files, cleaning, sorting, filtering, pivot tables and exporting

More information

Adobe Acrobat 8 Professional Forms

Adobe Acrobat 8 Professional Forms Adobe Acrobat 8 Professional Forms Email: training@health.ufl.edu Web Site: http://training.health.ufl.edu 352 273 5051 This page intentionally left blank. 2 Table of Contents Forms... 2 Creating forms...

More information

Reading in Data Directly from Microsoft Word Questionnaire Forms

Reading in Data Directly from Microsoft Word Questionnaire Forms Paper 1401-2014 Reading in Data Directly from Microsoft Word Questionnaire Forms Sijian Zhang, VA Pittsburgh Healthcare System ABSTRACT If someone comes to you with hundreds of questionnaire forms in Microsoft

More information

UNESCO, Division for Planning and Development of Education Systems, Section for Sector Policy Advice and ICT in Education (ED/PDE/PAD)

UNESCO, Division for Planning and Development of Education Systems, Section for Sector Policy Advice and ICT in Education (ED/PDE/PAD) Guidelines for On- line Data E ntry and Downloading Impact of the Global Financial and Economic Crisis on Education in Selected Developing Countries (DFID RIVAF) UNESCO, Division for Planning and Development

More information

How to Import a Certificate When Using Microsoft Windows OS

How to Import a Certificate When Using Microsoft Windows OS How to Import a Certificate When Using Microsoft Windows OS This document explains the process of importing your digital certificate for use in Microsoft Internet Explorer (IE) and/or Mozilla Firefox.

More information

Importing Career Standards Benchmark Scores

Importing Career Standards Benchmark Scores Importing Career Standards Benchmark Scores The Career Standards Benchmark assessments that are reported on the PIMS Student Fact Template for Career Standards Benchmarks can be imported en masse using

More information

Running PeopleSoft Query Viewer and Running Query to Excel Basic Steps

Running PeopleSoft Query Viewer and Running Query to Excel Basic Steps Running PeopleSoft Query Viewer and Running Query to Excel Basic Steps Query Viewer enables you to: Search for a query using the basic or advanced search functions. Run a query (which displays results

More information

Checkbox Quick Start Guide

Checkbox Quick Start Guide Checkbox 5.0 - Quick Start Guide This How-To Guide will guide you though the process of creating a survey and adding a survey item to a page. Contents: - Log-In - How to create a survey - How to add/change

More information

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL We have spent the first part of the course learning Excel: importing files, cleaning, sorting, filtering, pivot tables and exporting

More information

Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR

Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR REPORT... 3 DECIDE WHICH DATA TO PUT IN EACH REPORT SECTION...

More information

TraceFinder Analysis Quick Reference Guide

TraceFinder Analysis Quick Reference Guide TraceFinder Analysis Quick Reference Guide This quick reference guide describes the Analysis mode tasks assigned to the Technician role in the Thermo TraceFinder 3.0 analytical software. For detailed descriptions

More information

Find MAC Address. Getting Started. LizardSystems

Find MAC Address. Getting Started. LizardSystems Find MAC Address Getting Started LizardSystems Table of Contents Introduction 3 Installing Find MAC Address 3 Starting the application 4 Main Window 6 Main Menu 6 File menu 6 Edit menu 7 Tools menu 8 Administrative

More information

HOW TO EXPORT BUYER NAMES & ADDRESSES FROM PAYPAL TO A CSV FILE

HOW TO EXPORT BUYER NAMES & ADDRESSES FROM PAYPAL TO A CSV FILE HOW TO EXPORT BUYER NAMES & ADDRESSES FROM PAYPAL TO A CSV FILE If your buyers use PayPal to pay for their purchases, you can quickly export all names and addresses to a type of spreadsheet known as a

More information

Multiple Graphical and Tabular Reports on One Page, Multiple Ways to Do It Niraj J Pandya, CT, USA

Multiple Graphical and Tabular Reports on One Page, Multiple Ways to Do It Niraj J Pandya, CT, USA Paper TT11 Multiple Graphical and Tabular Reports on One Page, Multiple Ways to Do It Niraj J Pandya, CT, USA ABSTRACT Creating different kind of reports for the presentation of same data sounds a normal

More information

Information Visualization

Information Visualization Paper 166-25 Presenting Your Data Easily with Graph-N-Go Curtis A. Smith, Defense Contract Audit Agency, La Mirada, CA ABSTRACT Visualizing and presenting data effectively using reports and listings can

More information

Adobe Acrobat X. Fillable Forms. Ken Dickinson Bay Area Computer Training

Adobe Acrobat X. Fillable Forms. Ken Dickinson Bay Area Computer Training Adobe Acrobat X Fillable Forms Ken Dickinson Bay Area Computer Training www.bactrain.com Table of Contents Forms... 3 Distribute The Form... 13 Collecting The Data... 17 BACT Page 2 Acrobat Fillable Forms

More information

A Visual Step-by-step Approach to Converting an RTF File to an Excel File

A Visual Step-by-step Approach to Converting an RTF File to an Excel File A Visual Step-by-step Approach to Converting an RTF File to an Excel File Kirk Paul Lafler, Software Intelligence Corporation Abstract Rich Text Format (RTF) files incorporate basic typographical styling

More information

EZCT-2000 Software. VERSION 2.x USER'S MANUAL

EZCT-2000 Software. VERSION 2.x USER'S MANUAL EZCT-2000 Software VERSION 2.x USER'S MANUAL For Use with Vanguard s EZCT-S2, EZCT-S2A, EZCT-2000, EZCT-2000A, EZCT-2000B, EZCT-2KA, EZCT-2000C Current Transformer Testers Vanguard Instruments Company,

More information

Producing Summary Tables in SAS Enterprise Guide

Producing Summary Tables in SAS Enterprise Guide Producing Summary Tables in SAS Enterprise Guide Lora D. Delwiche, University of California, Davis, CA Susan J. Slaughter, Avocet Solutions, Davis, CA ABSTRACT This paper shows, step-by-step, how to use

More information

Chapter 10 Linking Calc Data

Chapter 10 Linking Calc Data Calc Guide Chapter 10 Linking Calc Data Sharing data in and out of Calc This PDF is designed to be read onscreen, two pages at a time. If you want to print a copy, your PDF viewer should have an option

More information

Entering and Managing Data in EvaluationWeb for CDC Program Announcement PS

Entering and Managing Data in EvaluationWeb for CDC Program Announcement PS Entering and Managing Data in EvaluationWeb for CDC Program Announcement PS15-1502 User Guide Version 2.2 May 2017 All rights reserved Change History History The table below logs the changes that have

More information

ABSTRACT MORE THAN SYNTAX ORGANIZE YOUR WORK THE SAS ENTERPRISE GUIDE PROJECT. Paper 50-30

ABSTRACT MORE THAN SYNTAX ORGANIZE YOUR WORK THE SAS ENTERPRISE GUIDE PROJECT. Paper 50-30 Paper 50-30 The New World of SAS : Programming with SAS Enterprise Guide Chris Hemedinger, SAS Institute Inc., Cary, NC Stephen McDaniel, SAS Institute Inc., Cary, NC ABSTRACT SAS Enterprise Guide (with

More information

All Applications Release Bulletin January 2010

All Applications Release Bulletin January 2010 All Applications Release Bulletin January 2010 In this bulletin... Online Enrollment: HTML Forms for Contracts 2 System Administration: MBP Online User Accounts 11 About Release 91_6 This release includes

More information

Working with Mailbox Manager

Working with Mailbox Manager Working with Mailbox Manager A user guide for Mailbox Manager supporting the Message Storage Server component of the Avaya S3400 Message Server Mailbox Manager Version 5.0 February 2003 Copyright 2003

More information

Verification and Configuration Instructions. JMP Genomics 3.1 for SAS Required Verification and Configuration Steps.

Verification and Configuration Instructions. JMP Genomics 3.1 for SAS Required Verification and Configuration Steps. Verification and Configuration Instructions JMP Genomics 3.1 for SAS 9.1.3 Required Verification and Configuration Steps Once you have successfully completed the installation of the SAS 9.1.3 Foundation

More information

Veco User Guides. Grids, Views, and Grid Reports

Veco User Guides. Grids, Views, and Grid Reports Veco User Guides Grids, Views, and Grid Reports Introduction A Grid is defined as being a list of data records presented to the user. A grid is shown generally when an option is selected from the Tree

More information

A Hands-On Introduction to SAS Visual Analytics Reporting

A Hands-On Introduction to SAS Visual Analytics Reporting MWSUG 2016 - Paper HW01 A Hands-On Introduction to SAS Visual Analytics Reporting David Foster, Pinnacle Solutions Inc, Indianapolis, IN ABSTRACT This Hands-On work shop will walk through SAS Visual Analytics

More information

BI-09 Using Enterprise Guide Effectively Tom Miron, Systems Seminar Consultants, Madison, WI

BI-09 Using Enterprise Guide Effectively Tom Miron, Systems Seminar Consultants, Madison, WI Paper BI09-2012 BI-09 Using Enterprise Guide Effectively Tom Miron, Systems Seminar Consultants, Madison, WI ABSTRACT Enterprise Guide is not just a fancy program editor! EG offers a whole new window onto

More information

There are six main steps in creating web pages in FrontPage98:

There are six main steps in creating web pages in FrontPage98: This guide will show you how to create a basic web page using FrontPage98 software. These instructions are written for IBM (Windows) computers only. However, FrontPage is available for Macintosh users

More information

SBCUSD IT Training Program. Adobe Acrobat DC. Creating Fillable Forms

SBCUSD IT Training Program. Adobe Acrobat DC. Creating Fillable Forms SBCUSD IT Training Program Adobe Acrobat DC Creating Fillable Forms Revised 6/20/2018 TABLE OF CONTENTS Getting Started...3 Convert a Word or PDF document into an Acrobat Form...3 Save the PDF...3 File

More information

for Windows Release Notes: Version September 12, 2013 Document version: MINDJET Page 1

for Windows Release Notes: Version September 12, 2013 Document version: MINDJET Page 1 for Windows Release Notes: Version 14.0.334 September 12, 2013 Document version: 130912 MINDJET Page 1 Table of Contents RESOLVED ISSUES IN VERSION 14.0.334... 3 General Usability... 3 Import / Export

More information

One SAS To Rule Them All

One SAS To Rule Them All SAS Global Forum 2017 ABSTRACT Paper 1042 One SAS To Rule Them All William Gui Zupko II, Federal Law Enforcement Training Centers In order to display data visually, our audience preferred Excel s compared

More information

Developing SAS Studio Repositories

Developing SAS Studio Repositories Paper SAS6140-2016 Developing SAS Studio Repositories Marie Dexter, Swapnil Ghan, Michael Monaco, and Amy Peters, SAS Institute Inc., Cary, NC ABSTRACT This paper covers developing SAS Studio repositories.

More information

Creating a data file and entering data

Creating a data file and entering data 4 Creating a data file and entering data There are a number of stages in the process of setting up a data file and analysing the data. The flow chart shown on the next page outlines the main steps that

More information

How to Export a Report in Cognos Analytics

How to Export a Report in Cognos Analytics IBM Cognos Analytics How to Export a Report in Cognos Analytics Reports viewed in IBM Cognos Analytics can be exported in many formats including Excel. Some of the steps for exporting are different depending

More information

Stellar Phoenix Outlook PST Repair - Technician User Guide

Stellar Phoenix Outlook PST Repair - Technician User Guide Stellar Phoenix Outlook PST Repair - Technician 8.0.0.0 User Guide Overview Stellar Phoenix Outlook PST Repair - Technician offers a complete solution to repair damaged Microsoft Outlook Personal Storage

More information

Searching and Favorites in Datatel Web UI 4.3

Searching and Favorites in Datatel Web UI 4.3 Searching and Favorites in Datatel Web UI 4.3 Search Field The Search field uses icons and text prompts (see Figure 1) to switch between Person Search and Form Search. You can click the icon to the left

More information

EPG Data Analysis 101

EPG Data Analysis 101 EPG Data Analysis 101 Ebert 1.0: Reading data files and checking your work EPG Workshop by T. A. Ebert M.E. Rogers Formatting Note Starting with this lecture, there will be screen shots to help you find

More information

Quality Control of Clinical Data Listings with Proc Compare

Quality Control of Clinical Data Listings with Proc Compare ABSTRACT Quality Control of Clinical Data Listings with Proc Compare Robert Bikwemu, Pharmapace, Inc., San Diego, CA Nicole Wallstedt, Pharmapace, Inc., San Diego, CA Checking clinical data listings with

More information

Transferring from UFT to TMG5

Transferring from UFT to TMG5 Transferring from UFT to TMG5 by Paul Lawrence An article I wrote on transferring data from UFT (Ultimate Family Tree) to TMG (The Master Genealogist, developed by WhollyGenes Software) appeared in the

More information

A Guide to Quark Author Web Edition 2015

A Guide to Quark Author Web Edition 2015 A Guide to Quark Author Web Edition 2015 CONTENTS Contents Getting Started...4 About Quark Author - Web Edition...4 Smart documents...4 Introduction to the Quark Author - Web Edition User Guide...4 Quark

More information

Using Graph-N-Go With ODS to Easily Present Your Data and Web-Enable Your Graphs Curtis A. Smith, Defense Contract Audit Agency, La Mirada, CA

Using Graph-N-Go With ODS to Easily Present Your Data and Web-Enable Your Graphs Curtis A. Smith, Defense Contract Audit Agency, La Mirada, CA Paper 160-26 Using Graph-N-Go With ODS to Easily Present Your Data and Web-Enable Your Graphs Curtis A. Smith, Defense Contract Audit Agency, La Mirada, CA ABSTRACT Visualizing and presenting data effectively

More information

JMP and SAS : One Completes The Other! Philip Brown, Predictum Inc, Potomac, MD! Wayne Levin, Predictum Inc, Toronto, ON!

JMP and SAS : One Completes The Other! Philip Brown, Predictum Inc, Potomac, MD! Wayne Levin, Predictum Inc, Toronto, ON! Paper JM08-2014 JMP and SAS : One Completes The Other Philip Brown, Predictum Inc, Potomac, MD Wayne Levin, Predictum Inc, Toronto, ON ABSTRACT Integrating JMP with SAS creates a formidable data management

More information

goanalyze User s Guide Version: 2.0

goanalyze User s Guide Version: 2.0 goanalyze User s Guide Version: 2.0 18/02/2015 Table of Contents Table of Contents 1 Quick Start 3 2 Installation and Configuration 4 2.1 Installation 4 2.2 Licensing 4 2.3 TM Connections 5 2.4 Language

More information

What s New: TimingDesigner 9.4

What s New: TimingDesigner 9.4 What s New: TimingDesigner 9.4 This document covers a list of features that have been, added, enhanced, and/or fixed with the TimingDesigner 9.4 release. REVISION 1.1: Last Revised: 2/15/2014 2 Table of

More information

PharmaSUG Paper AD03

PharmaSUG Paper AD03 PharmaSUG 2017 - Paper AD03 Three Issues and Corresponding Work-Around Solution for Generating Define.xml 2.0 Using Pinnacle 21 Enterprise Jeff Xia, Merck & Co., Inc., Rahway, NJ, USA Lugang (Larry) Xie,

More information

Generating a Custom Bill of Materials

Generating a Custom Bill of Materials Generating a Custom Bill of Materials Old Content - visit altium.com/documentation Modified by on 6-Nov-2013 This tutorial describes how to use the Report Manager to set up a Bill of Materials (BOM) report.

More information

You will learn: The structure of the Stata interface How to open files in Stata How to modify variable and value labels How to manipulate variables

You will learn: The structure of the Stata interface How to open files in Stata How to modify variable and value labels How to manipulate variables Jennie Murack You will learn: The structure of the Stata interface How to open files in Stata How to modify variable and value labels How to manipulate variables How to conduct basic descriptive statistics

More information

Best Practices for Loading Autodesk Inventor Data into Autodesk Vault

Best Practices for Loading Autodesk Inventor Data into Autodesk Vault AUTODESK INVENTOR WHITE PAPER Best Practices for Loading Autodesk Inventor Data into Autodesk Vault The most important item to address during the implementation of Autodesk Vault software is the cleaning

More information

Seamless Dynamic Web (and Smart Device!) Reporting with SAS D.J. Penix, Pinnacle Solutions, Indianapolis, IN

Seamless Dynamic Web (and Smart Device!) Reporting with SAS D.J. Penix, Pinnacle Solutions, Indianapolis, IN Paper RIV05 Seamless Dynamic Web (and Smart Device!) Reporting with SAS D.J. Penix, Pinnacle Solutions, Indianapolis, IN ABSTRACT The SAS Business Intelligence platform provides a wide variety of reporting

More information

Fact Sheet No.1 MERLIN

Fact Sheet No.1 MERLIN Fact Sheet No.1 MERLIN Fact Sheet No.1: MERLIN Page 1 1 Overview MERLIN is a comprehensive software package for survey data processing. It has been developed for over forty years on a wide variety of systems,

More information

Adobe Acrobat Pro DC for Windows

Adobe Acrobat Pro DC for Windows Adobe Acrobat Pro DC for Windows Creating Interactive PDF Forms University Information Technology Services Learning Technologies, Training & Audiovisual Outreach Copyright 2017 KSU Division of University

More information

File Importing - Text Files

File Importing - Text Files File Importing - Text Files With this tutorial we are going to go through the basic elements of importing a text file that contains several records (lines) each containing several fields. Sample Data -

More information

SAS Data Integration Studio 3.3. User s Guide

SAS Data Integration Studio 3.3. User s Guide SAS Data Integration Studio 3.3 User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS Data Integration Studio 3.3: User s Guide. Cary, NC: SAS Institute

More information

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing Managing Your Website with Convert Community My MU Health and My MU Health Nursing Managing Your Website with Convert Community LOGGING IN... 4 LOG IN TO CONVERT COMMUNITY... 4 LOG OFF CORRECTLY... 4 GETTING

More information

Chapter 2: Working with the Windows 7 Desktop

Chapter 2: Working with the Windows 7 Desktop Chapter 2: Working with the Windows 7 Desktop MULTIPLE CHOICE 1. A is a set of computer instructions that carries out a task on the computer. a. server c. program b. folder d. file ANS: C PTS: 1 REF: WIN

More information

INTRODUCTION TO SAS HOW SAS WORKS READING RAW DATA INTO SAS

INTRODUCTION TO SAS HOW SAS WORKS READING RAW DATA INTO SAS TO SAS NEED FOR SAS WHO USES SAS WHAT IS SAS? OVERVIEW OF BASE SAS SOFTWARE DATA MANAGEMENT FACILITY STRUCTURE OF SAS DATASET SAS PROGRAM PROGRAMMING LANGUAGE ELEMENTS OF THE SAS LANGUAGE RULES FOR SAS

More information

SSRS 2016 for WITS. Web Portal User Guide. Applies to: WITS Version 18.0+

SSRS 2016 for WITS. Web Portal User Guide. Applies to: WITS Version 18.0+ SSRS 2016 for WITS Web Portal User Guide Applies to: WITS Version 18.0+ Microsoft SQL Server Reporting Services (SSRS) 2016 Last Updated June 1, 2017 Microsoft SQL Server 2016 Report Builder 3.0 Version

More information

Guide to User Interface 4.3

Guide to User Interface 4.3 Datatel Colleague Guide to User Interface 4.3 Release 18 June 24, 2011 For corrections and clarifications to this manual, see AnswerNet page 1926.37. Guide to User Interface 4.3 All Rights Reserved The

More information

Learn about the Display options Complete Review Questions and Activities Complete Training Survey

Learn about the Display options Complete Review Questions and Activities Complete Training Survey Intended Audience: Staff members who will be using the AdHoc reporting tools to query the Campus database. Description: To learn filter and report design capabilities available in Campus. Time: 3 hours

More information

University of Wisconsin System SFS Business Process RPT Basic PeopleSoft Query

University of Wisconsin System SFS Business Process RPT Basic PeopleSoft Query Contents PeopleSoft Query Overview... 1 Process Detail... 2 I. Running the Query... 2 II. Query Actions... 5 III. Planning a New Query... 5 IV. How to Find Out Which Record(s) to Use... 5 V. Building a

More information

INTRODUCTION 1.1 ABOUT THIS GUIDE What is Mission Control. Business Online POP Mail Who this Guide is For What s in This Guide

INTRODUCTION 1.1 ABOUT THIS GUIDE What is Mission Control. Business Online POP Mail Who this Guide is For What s in This Guide 1.1 About this Guide 01 INTRODUCTION Business Online POP Mail Business Online POP Mailboxes must not be selected unless the Business Online Extra or Standalone offer has been activated against the domain

More information

Reporting Center. Primary (Stand-Alone) Interface

Reporting Center. Primary (Stand-Alone) Interface Reporting Center The Reporting Center is where you will go to run or create reports on projects. It can be accessed in any of the follow ways, each with a slightly different user interface and functionality.

More information

Query Studio Training Guide Cognos 8 February 2010 DRAFT. Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201

Query Studio Training Guide Cognos 8 February 2010 DRAFT. Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201 Query Studio Training Guide Cognos 8 February 2010 DRAFT Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201 2 Table of Contents Accessing Cognos Query Studio... 5

More information

Exporting Variable Labels as Column Headers in Excel using SAS Chaitanya Chowdagam, MaxisIT Inc., Metuchen, NJ

Exporting Variable Labels as Column Headers in Excel using SAS Chaitanya Chowdagam, MaxisIT Inc., Metuchen, NJ Paper 74924-2011 Exporting Variable Labels as Column Headers in Excel using SAS Chaitanya Chowdagam, MaxisIT Inc., Metuchen, NJ ABSTRACT Excel output is the desired format for most of the ad-hoc reports

More information

TIPS AND TRICKS: IMPROVE EFFICIENCY TO YOUR SAS PROGRAMMING

TIPS AND TRICKS: IMPROVE EFFICIENCY TO YOUR SAS PROGRAMMING TIPS AND TRICKS: IMPROVE EFFICIENCY TO YOUR SAS PROGRAMMING Guillaume Colley, Lead Data Analyst, BCCFE Page 1 Contents Customized SAS Session Run system options as SAS starts Labels management Shortcut

More information

ChronoForms v3.0 Tutorials #5 Saving data to the database.

ChronoForms v3.0 Tutorials #5 Saving data to the database. ChronoForms v3.0 Tutorials #5 Saving data to the database CHRONO ENGINE www.chronoengine.com Saving data to the database This tutorial tells you how to create a database table to save the data from your

More information

2. Click Login Left-click Login to access the family home screen.

2. Click Login Left-click Login to access the family home screen. 1. Enter E-Mail and Password Enter your e-mail and password from when you first created an account. If you have forgotten your password, click the bubble I forgot my password, enter your e-mail, and click

More information

A Practical Introduction to SAS Data Integration Studio

A Practical Introduction to SAS Data Integration Studio ABSTRACT A Practical Introduction to SAS Data Integration Studio Erik Larsen, Independent Consultant, Charleston, SC Frank Ferriola, Financial Risk Group, Cary, NC A useful and often overlooked tool which

More information

UMHS Financial Systems Workspace & Smart View Templates

UMHS Financial Systems Workspace & Smart View Templates Level 1 Password https://findatamgr.dsc.umich.edu/workspace/index.jsp What If I have a blank Homepage? Utilize the Use Current Page button to set the Home Page. Why do I not see the Preview User Point

More information

Getting started 7. Setting properties 23

Getting started 7. Setting properties 23 Contents 1 2 3 Getting started 7 Introduction 8 Installing Visual Basic 10 Exploring the IDE 12 Starting a new project 14 Adding a visual control 16 Adding functional code 18 Saving projects 20 Reopening

More information

A Picture Is Worth A Thousand Data Points - Increase Understanding by Mapping Data. Paul Ciarlariello, Sinclair Community College, Dayton, OH

A Picture Is Worth A Thousand Data Points - Increase Understanding by Mapping Data. Paul Ciarlariello, Sinclair Community College, Dayton, OH D02-2008 A Picture Is Worth A Thousand Data Points - Increase Understanding by Mapping Data Midwest SAS Users Group (MWSUG) Paul Ciarlariello, Sinclair Community College, Dayton, OH ABSTRACT If you find

More information

Automating Comparison of Multiple Datasets Sandeep Kottam, Remx IT, King of Prussia, PA

Automating Comparison of Multiple Datasets Sandeep Kottam, Remx IT, King of Prussia, PA Automating Comparison of Multiple Datasets Sandeep Kottam, Remx IT, King of Prussia, PA ABSTRACT: Have you ever been asked to compare new datasets to old datasets while transfers of data occur several

More information

Purchase this book at

Purchase this book at Chapter 2 2 Creating Simple Stored Processes BASE SAS gives programmers the exponential ability to query and report about data from their desktops; however, this limitation means that a user can access

More information

Oracle Communications Performance Intelligence Center

Oracle Communications Performance Intelligence Center Oracle Communications Performance Intelligence Center Browser Export Scheduler Guide Release 10.2 E66874 Revision 1 February 2016 i Oracle Communications Performance Intelligence Center Browser Export

More information

Step 10: Conversion to PDF

Step 10: Conversion to PDF Step 10: Conversion to PDF IMPORTANT NOTE: Adobe Acrobat Professional is NOT available for MAC. Please follow PC instructions (provided below) on a PC. This PDF explains Step 10 of the step-by-step instructions

More information

MassHunter File Reader

MassHunter File Reader MassHunter File Reader vers 1.0.0 2015 Quadtech Associates, Inc. All Rights Reserved Release date: November 18, 2015 www.quadtechassociates.com MassHunter File Reader Welcome to MassHunter File Reader.

More information

Entering and Managing Data in EvaluationWeb for CDC Program Announcement PS

Entering and Managing Data in EvaluationWeb for CDC Program Announcement PS Entering and Managing Data in EvaluationWeb for CDC Program Announcement PS17-1704 User Guide Version 1.1 May 2017 All rights reserved Table of Contents Change History... iii Getting Help... iv Accessing

More information

OpenText TeleForm Release Notes

OpenText TeleForm Release Notes OpenText TeleForm Release Notes 16.2 Product Released: 2017-04-28 Release Notes Revised: 2017-04-17 Caution Cautions help you avoid irreversible problems. Read this information carefully and follow all

More information

Beginning Tutorials. PROC FSEDIT NEW=newfilename LIKE=oldfilename; Fig. 4 - Specifying a WHERE Clause in FSEDIT. Data Editing

Beginning Tutorials. PROC FSEDIT NEW=newfilename LIKE=oldfilename; Fig. 4 - Specifying a WHERE Clause in FSEDIT. Data Editing Mouse Clicking Your Way Viewing and Manipulating Data with Version 8 of the SAS System Terry Fain, RAND, Santa Monica, California Cyndie Gareleck, RAND, Santa Monica, California ABSTRACT Version 8 of the

More information