Importing an Excel Worksheet into SAS (commands=import_excel.sas)

Size: px
Start display at page:

Download "Importing an Excel Worksheet into SAS (commands=import_excel.sas)"

Transcription

1 Imprting an Excel Wrksheet int SAS (cmmands=imprt_excel.sas) I. Preparing Excel Data fr a Statistics Package These instructins apply t setting up an Excel file fr SAS, SPSS, Stata, etc. Hw t Set up the Excel File: Place the variable names in the first rw. Be sure the names fllw these rules: variable names can be n mre than 8 characters (lnger variable names are currently allwed in SAS and SPSS) variable names must start with a letter variable names may nly have letters, numbers, r underscres in them d nt use fllwing characters in variable names: %,$,#,@,!,+,*,~,",.,-,. n blanks in variable names be sure that each variable name is unique (n duplicate variable names) be sure variable names are n the first rw nly! Include nly the raw, un-summarized data. Delete extraneus data in yur Excel file, like rw r clumn ttals, graphs, cmments, anntatins, etc. T prevent "ghst" rws and clumns, cpy nly the raw data nt a new wrksheet, and save values nly frm there. Include a unique identifying number fr each case. Smetimes yu may have mre than ne identifier, such as Husehld ID and Subject ID; place these in separate clumns. If yu have several spreadsheets cntaining data n the same individuals, include their identifier(s) n each sheet. Include nly ne value per cell. Dn t enter data such as "120/80" fr bld pressure. Enter systlic bld pressure as ne variable, and diastlic bld pressure as anther variable. Dn't enter data as "A,C,D" r "BDF" if there are three pssible answers t a questin. Include a separate clumn fr each answer. Dn't leave blank rws r clumns in the data. Dn t mix numeric and character values (e.g. names and ID numbers) in the same clumn. Use numeric values when feasible. While character variables are allwed in statistical packages, they are nt as flexible as numeric variables, which are preferred. Date values are best entered in three clumns: ne fr mnth, ne fr day, ne fr year. Yu can change them int date values in yur statistics package later. If yu have missing values, yu can indicate them with a numeric cde, such as 99 r 999, r yu can leave the cell blank. Be sure, if yu use a missing value cde, that it cannt be cnfused with a "real" data value. Save the spreadsheet with values nly, nt frmulas. D nt underline text, r use bldface r italics. 1

2 An excerpt frm an Excel file might lk like this: Hw t Save the Excel File: Excel allws yu the ptin f saving a file in several different frmats. If yu re having prblems, Versin 4.0 Excel Wrksheets can be read by mst statistical packages. T save yur Excel file in versin 4.0, g t the File menu and chse Save As... and then select Excel 4.0 Wrksheet (nt Wrkbk) as the file type. Yu will be able t save nly ne wrksheet at a time in Excel 4.0 frmat. T preserve yur riginal Excel data, use a different name when saving in this special frmat. T be sure that the file name will be easily recgnizable n any system, use a name nt lnger than eight characters, and add the extensin.xls. Multiple Wrksheets: If yu have several wrksheets, yu can select the wrksheet that yu wish t imprt when yu bring the data int SAS, but yu will need t bring in each sheet individually and then merge them in the statistical package yu are using. The cnsultants at CSCAR can help yu with this. A dcument very similar t this ne is available nline at What Type f Excel Files Can Yu Imprt t SAS? Yu can imprt Excel wrksheets, starting with very early versins f Excel (e.g., Excel versin 4.0). Yu can als imprt individual sheets frm wrkbks fr later versins f Excel (e.g. Excel 2000), but nly ne sheet at a time. Excel 2007 (.xlsx) files can be pened by the updated versins f SAS 9.2 r SAS 9.3, but if yu re using an earlier versin f SAS, yu will have t save the files as.xls files befre prceeding. 2

3 II. Imprting the Excel File t SAS Step-By-Step Instructins: G t the File Menu and select Imprt Data Select the type f data file that yu wuld like t imprt frm the pull-dwn menu. Click n the Next> buttn t prceed. In the dialg bx that pens, click n Brwse t lcate the file yu wish t imprt. 3

4 Select the Excel file t pen and click n the Open buttn. The file name that yu have chsen will appear in the brwse dialg bx. Click n OK. In the next dialg bx, yu will need t select the table that yu want t imprt frm the pulldwn list. In this example, we are selecting the table named EMPLOYEE, which is in fact, the nly sheet in this wrkbk. 4

5 Click n Next> t prceed. Yu will be taken t a dialg bx that allws yu t save the SAS data set t a library. The default temprary library WORK will be autmatically filled in fr yu, but yu need t type the data set (Member) name. In this case, we are saving the data set as WORK.EMPLOYEE. 5

6 At this pint, yu have tw chices: If yu click n Finish, the data set will be saved, and yu can prceed t wrk with it. If yu click n Next>, as illustrated here, yu will g t the fllwing dialg bx, where yu will have a chance t save the SAS cmmands that were used t imprt the dataset. Yu can use these cmmands later t re-imprt the data.. I usually click n Next>, s I can save my cmmands. This prcess is shwn belw. Brwse t a lcatin where yu wish t save yur SAS cmmands and give them a name, as in the example belw (the cmmands were saved n the desktp as imprt_emplyee.sas. 6

7 Click n Save and yu will then see the dialg bx belw. 7

8 Yu can nw click n Finish t cmplete imprting the data set. Check the SAS Lg. Yu shuld see the fllwing message in the lg: NOTE: WORK.EMPLOYEE data set was successfully created. Using SAS cmmands t imprt Excel Files: If yu saved yur cmmands in the previus step, yu can nw bring them int yur SAS enhanced editr, by ging t File Open Prgram and brwsing t the cmmand file that yu saved. Alternatively, yu can type these cmmands by hand and submit them t SAS. The cmmand file is shwn belw: PROC IMPORT OUT= WORK.EMPLOYEE DATAFILE= "C:\labdata\EMPLOYEE.XLS" DBMS=EXCEL REPLACE; RANGE="EMPLOYEE$"; GETNAMES=YES; MIXED=NO; SCANTEXT=YES; USEDATE=YES; SCANTIME=YES; RUN; 8

9 The data set can be mdified by creating a new data step, with additinal cmmands, fr example: data emplyee2; set emplyee; saldiff = salary-salbegin; if 0<= educ < 12 then edcat = 1; if educ = 12 then edcat = 2; if educ > 12 then edcat = 3; run; SAS can nw be used t run prcedures n this new data set, fr example, Prc Means, as shwn belw: prc means data=emplyee2; run; The MEANS Prcedure Variable Label N Mean Std Dev Minimum Maximum id id bdate bdate educ educ jbcat jbcat salary salary salbegin salbegin jbtime jbtime prevexp prevexp minrity minrity saldiff edcat

Exporting and Importing the Blackboard Vista Grade Book

Exporting and Importing the Blackboard Vista Grade Book Exprting and Imprting the Blackbard Vista Grade Bk Yu can use the Blackbard Vista Grade Bk with a spreadsheet prgram, such as Micrsft Excel, in a number f different ways. Many instructrs wh have used Excel

More information

Importing data. Import file format

Importing data. Import file format Imprting data The purpse f this guide is t walk yu thrugh all f the steps required t imprt data int CharityMaster. The system allws nly the imprtatin f demgraphic date e.g. names, addresses, phne numbers,

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

Municode Website Instructions

Municode Website Instructions Municde Website instructins Municde Website Instructins The new and imprved Municde site allws yu t navigate t, print, save, e-mail and link t desired sectins f the Online Cde f Ordinances with greater

More information

REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY

REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY REFWORKS: STEP-BY-STEP HURST LIBRARY NORTHWEST UNIVERSITY Accessing RefWrks Access RefWrks frm a link in the Bibligraphy/Citatin sectin f the Hurst Library web page (http://library.nrthwestu.edu) Create

More information

Scroll down to New and another menu will appear. Select Folder and a new

Scroll down to New and another menu will appear. Select Folder and a new Creating a New Flder Befre we begin with Micrsft Wrd, create a flder n yur Desktp named Summer PD. T d this, right click anywhere n yur Desktp and a menu will appear. Scrll dwn t New and anther menu will

More information

Adverse Action Letters

Adverse Action Letters Adverse Actin Letters Setup and Usage Instructins The FRS Adverse Actin Letter mdule was designed t prvide yu with a very elabrate and sphisticated slutin t help autmate and handle all f yur Adverse Actin

More information

Web of Science Institutional authored and cited papers

Web of Science Institutional authored and cited papers Web f Science Institutinal authred and cited papers Prcedures written by Diane Carrll Washingtn State University Libraries December, 2007, updated Nvember 2009 Annual review f paper s authred and cited

More information

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to:

Campuses that access the SFS nvision Windows-based client need to allow outbound traffic to: Summary This dcument is a guide intended t guide yu thrugh the prcess f installing and cnfiguring PepleTls 8.55.27 (r current versin) via Windws Remte Applicatin (App). Remte App allws the end user t run

More information

August 22, 2006 IPRO Tech Client Services Tip of the Day. Concordance and IPRO Camera Button / Backwards DB Link Setup

August 22, 2006 IPRO Tech Client Services Tip of the Day. Concordance and IPRO Camera Button / Backwards DB Link Setup Cncrdance and IPRO Camera Buttn / Backwards DB Link Setup When linking Cncrdance and IPRO, yu will need t update the DDEIVIEW.CPL file t establish the camera buttn. Setting up the camera buttn feature

More information

Exercise 4: Working with tabular data Exploring infant mortality in the 1900s

Exercise 4: Working with tabular data Exploring infant mortality in the 1900s Exercise 4: Wrking with tabular data Explring infant mrtality in the 1900s Backgrund Althugh peple tend t think abut GIS as being primarily cncerned with mapping. It is better thught f as a type f database

More information

First Aid and Choking, Fire Safety, Medication Administration, and Standard Precautions Roster Submission:

First Aid and Choking, Fire Safety, Medication Administration, and Standard Precautions Roster Submission: The Wiscnsin CBRF Training Registry is lcated at www.uwgb.edu/cbrf-registry. This guide prvides directins fr submitting rsters and applicatins. Rster Submissin First Aid and Chking, Fire Safety, Medicatin

More information

1on1 Sales Manager Tool. User Guide

1on1 Sales Manager Tool. User Guide 1n1 Sales Manager Tl User Guide Table f Cntents Install r Upgrade 1n1 Page 2 Setting up Security fr Dynamic Reprting Page 3 Installing ERA-IGNITE Page 4 Cnverting (Imprting) Queries int Dynamic Reprting

More information

Reviewer Information Sheet for Committee Members

Reviewer Information Sheet for Committee Members Reviewer Infrmatin Sheet fr Cmmittee Members OSIRIS is a web-based applicatin that was created t imprve human subject prtectins and t enable the IRB t better serve the research cmmunity. The applicatin

More information

These tasks can now be performed by a special program called FTP clients.

These tasks can now be performed by a special program called FTP clients. FTP Cmmander FAQ: Intrductin FTP (File Transfer Prtcl) was first used in Unix systems a lng time ag t cpy and mve shared files. With the develpment f the Internet, FTP became widely used t uplad and dwnlad

More information

University Facilities

University Facilities 1 University Facilities WebTMA Requestr Training Manual WebTMA is Drexel University s nline wrk rder management system. The fllwing instructins will walk yu thrugh the steps n hw t: 1. Submit a wrk request

More information

Faculty Textbook Adoption Instructions

Faculty Textbook Adoption Instructions Faculty Textbk Adptin Instructins The Bkstre has partnered with MBS Direct t prvide textbks t ur students. This partnership ffers ur students and parents mre chices while saving them mney, including ptins

More information

INSTALLING CCRQINVOICE

INSTALLING CCRQINVOICE INSTALLING CCRQINVOICE Thank yu fr selecting CCRQInvice. This dcument prvides a quick review f hw t install CCRQInvice. Detailed instructins can be fund in the prgram manual. While this may seem like a

More information

TaiRox Mail Merge. Running Mail Merge

TaiRox Mail Merge. Running Mail Merge TaiRx Mail Merge TaiRx Mail Merge TaiRx Mail Merge integrates Sage 300 with Micrsft Wrd s mail merge functin. The integratin presents a Sage 300 style interface frm within the Sage 300 desktp. Mail Merge

More information

TN How to configure servers to use Optimise2 (ERO) when using Oracle

TN How to configure servers to use Optimise2 (ERO) when using Oracle TN 1498843- Hw t cnfigure servers t use Optimise2 (ERO) when using Oracle Overview Enhanced Reprting Optimisatin (als knwn as ERO and Optimise2 ) is a feature f Cntrller which is t speed up certain types

More information

Relius Documents ASP Checklist Entry

Relius Documents ASP Checklist Entry Relius Dcuments ASP Checklist Entry Overview Checklist Entry is the main data entry interface fr the Relius Dcuments ASP system. The data that is cllected within this prgram is used primarily t build dcuments,

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9202 Upgrader User Guide (Mac) Rev 1.0 (23-Feb-12) This dcument explains hw t use the Hughes BGAN Upgrader prgram fr the 9202 User Terminal using a Mac Nte: Mac OS X Versin 10.4 r newer is

More information

Drupal Profile Sites for Faculty, Staff, and/or Administrators WYSIWIG Editor How-To

Drupal Profile Sites for Faculty, Staff, and/or Administrators WYSIWIG Editor How-To Drupal Prfile Sites fr Faculty, Staff, and/r Administratrs WYSIWIG Editr Hw-T Drupal prvides an editr fr adding/deleting/editing cntent. Once yu access the editing interface, the editr prvides functins

More information

WorldShip PRE-INSTALLATION INSTRUCTIONS: INSTALLATION INSTRUCTIONS: Window (if available) Install on a Single or Workgroup Workstation

WorldShip PRE-INSTALLATION INSTRUCTIONS: INSTALLATION INSTRUCTIONS: Window (if available) Install on a Single or Workgroup Workstation PRE-INSTALLATION INSTRUCTIONS: This dcument discusses using the WrldShip DVD t install WrldShip. Yu can als install WrldShip frm the Web. G t the fllwing Web page and click the apprpriate dwnlad link:

More information

Managing Your Access To The Open Banking Directory How To Guide

Managing Your Access To The Open Banking Directory How To Guide Managing Yur Access T The Open Banking Directry Hw T Guide Date: June 2018 Versin: v2.0 Classificatin: PUBLIC OPEN BANKING LIMITED 2018 Page 1 f 32 Cntents 1. Intrductin 3 2. Signing Up 4 3. Lgging In

More information

PAY EQUITY HEARINGS TRIBUNAL. Filing Guide. A Guide to Preparing and Filing Forms and Submissions with the Pay Equity Hearings Tribunal

PAY EQUITY HEARINGS TRIBUNAL. Filing Guide. A Guide to Preparing and Filing Forms and Submissions with the Pay Equity Hearings Tribunal PAY EQUITY HEARINGS TRIBUNAL Filing Guide A Guide t Preparing and Filing Frms and Submissins with the Pay Equity Hearings Tribunal This Filing Guide prvides general infrmatin nly and shuld nt be taken

More information

Guidance for Submitting an application or Nomination in AAS Ishango Online System

Guidance for Submitting an application or Nomination in AAS Ishango Online System Guidance fr Submitting an applicatin r Nminatin in AAS Ishang Online System Histry f changes Versin Date Changes 1 Nv 2016 Current versin Pushing the centre f gravity t Africa 1 Table f Cntents 1 General

More information

INSERTING MEDIA AND OBJECTS

INSERTING MEDIA AND OBJECTS INSERTING MEDIA AND OBJECTS This sectin describes hw t insert media and bjects using the RS Stre Website Editr. Basic Insert features gruped n the tlbar. LINKS The Link feature f the Editr is a pwerful

More information

Guidance for Applicants: Submitting an application in AAS Ishango Grants Management

Guidance for Applicants: Submitting an application in AAS Ishango Grants Management Guidance fr Applicants: Submitting an applicatin in AAS Ishang Grants Management Histry f changes Versin Date Changes 1 Nv 2016 Current versin Pushing the centre f gravity t Africa 1 Table f Cntents 1

More information

Enabling Your Personal Web Page on the SacLink

Enabling Your Personal Web Page on the SacLink 53 Enabling Yur Persnal Web Page n the SacLink *Yu need t enable yur persnal web page nly ONCE. It will be available t yu until yu graduate frm CSUS. T enable yur Persnal Web Page, fllw the steps given

More information

Test Pilot User Guide

Test Pilot User Guide Test Pilt User Guide Adapted frm http://www.clearlearning.cm Accessing Assessments and Surveys Test Pilt assessments and surveys are designed t be delivered t anyne using a standard web brwser and thus

More information

CLIC ADMIN USER S GUIDE

CLIC ADMIN USER S GUIDE With CLiC (Classrm In Cntext), teaching and classrm instructin becmes interactive, persnalized, and fcused. This digital-based curriculum, designed by Gale, is flexible allwing teachers t make their classrm

More information

BI Publisher TEMPLATE Tutorial

BI Publisher TEMPLATE Tutorial PepleSft Campus Slutins 9.0 BI Publisher TEMPLATE Tutrial Lessn T2 Create, Frmat and View a Simple Reprt Using an Existing Query with Real Data This tutrial assumes that yu have cmpleted BI Publisher Tutrial:

More information

ONTARIO LABOUR RELATIONS BOARD. Filing Guide. A Guide to Preparing and Filing Forms and Submissions with the Ontario Labour Relations Board

ONTARIO LABOUR RELATIONS BOARD. Filing Guide. A Guide to Preparing and Filing Forms and Submissions with the Ontario Labour Relations Board ONTARIO LABOUR RELATIONS BOARD Filing Guide A Guide t Preparing and Filing Frms and Submissins with the Ontari Labur Relatins Bard This Filing Guide prvides general infrmatin nly and shuld nt be taken

More information

CREATING A DONOR ACCOUNT

CREATING A DONOR ACCOUNT CREATING A DONOR ACCOUNT An Online Giving Accunt shuld be created t have the ability t set-up recurring dnatins, pledges and be able t view and print histry. Setting up an accunt will als allw yu t set-up

More information

ClubRunner. Volunteers Module Guide

ClubRunner. Volunteers Module Guide ClubRunner Vlunteers Mdule Guide 2014 Vlunteer Mdule Guide TABLE OF CONTENTS Overview... 3 Basic vs. Enhanced Versins... 3 Navigatin... 4 Create New Vlunteer Signup List... 5 Manage Vlunteer Tasks... 7

More information

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Survey Template

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Survey Template Netwrk Rail ARMS - Asbests Risk Management System Training Guide fr use f the Imprt Survey Template The ARMS Imprt Survey Template New Asbests Management Surveys and their Survey Detail reprts can be added

More information

RBC USER MANUAL - BULK EFT/ACH DATA INPUT TEMPLATE (EASTERN CARIBBEAN MARKETS ONLY)

RBC USER MANUAL - BULK EFT/ACH DATA INPUT TEMPLATE (EASTERN CARIBBEAN MARKETS ONLY) RBC USER MANUAL - BULK EFT/ACH DATA INPUT TEMPLATE (EASTERN CARIBBEAN MARKETS ONLY) Published May 2018 This dcument prvides a step by step by guide n use f the Bulk EFT/ACH Input Template (Micrsft Excel).

More information

Stellar Phoenix Excel Repair. Version 5.0. Installation Guide

Stellar Phoenix Excel Repair. Version 5.0. Installation Guide Stellar Phenix Excel Repair Versin 5.0 Installatin Guide Overview Stellar Phenix Excel Repair is designed t repair crrupted Micrsft Excel (.xls and.xlsx) files. This sftware scans all selected Excel files

More information

Copyrights and Trademarks

Copyrights and Trademarks Cpyrights and Trademarks Sage One Accunting Cnversin Manual 1 Cpyrights and Trademarks Cpyrights and Trademarks Cpyrights and Trademarks Cpyright 2002-2014 by Us. We hereby acknwledge the cpyrights and

More information

Getting Started with the Web Designer Suite

Getting Started with the Web Designer Suite Getting Started with the Web Designer Suite The Web Designer Suite prvides yu with a slew f Dreamweaver extensins that will assist yu in the design phase f creating a website. The tls prvided in this suite

More information

Microsoft Excel Extensions for Enterprise Architect

Microsoft Excel Extensions for Enterprise Architect Excel Extensins User Guide Micrsft Excel Extensins fr Enterprise Architect Micrsft Excel Extensins fr Enterprise Architect... 1 Disclaimer... 2 Dependencies... 2 Overview... 2 Installatin... 4 Verifying

More information

Acrbat XI - Gespatial PDFs Abut gespatial PDFs A gespatial PDF cntains infrmatin that is required t gereference lcatin data. When gespatial data is imprted int a PDF, Acrbat retains the gespatial crdinates.

More information

The Login Page Designer

The Login Page Designer The Lgin Page Designer A new Lgin Page tab is nw available when yu g t Site Cnfiguratin. The purpse f the Admin Lgin Page is t give fundatin staff the pprtunity t build a custm, yet simple, layut fr their

More information

Chapter 2 Basic Operations

Chapter 2 Basic Operations Chapter 2 Basic Operatins Lessn B String Operatins 10 Minutes Lab Gals In this Lessn, yu will: Learn hw t use the fllwing Transfrmatins: Set Replace Extract Cuntpattern Split Learn hw t apply certain Transfrmatins

More information

My Performance Management User Guide

My Performance Management User Guide My Perfrmance Management User Guide Overview The accesshr website huses perfrmance management. As an emplyee, yu have the ability t review and acknwledge perfrmance plans and perfrmance evaluatins that

More information

1 Version Spaces. CS 478 Homework 1 SOLUTION

1 Version Spaces. CS 478 Homework 1 SOLUTION CS 478 Hmewrk SOLUTION This is a pssible slutin t the hmewrk, althugh there may be ther crrect respnses t sme f the questins. The questins are repeated in this fnt, while answers are in a mnspaced fnt.

More information

Backup your Data files before you begin your cleanup! Delete General Ledger Account History. Page 1

Backup your Data files before you begin your cleanup! Delete General Ledger Account History. Page 1 Database Clean-up (Optinal) The fllwing items can be dne at ANY time during yur Fiscal Year. Befre yu start yur Database Clean-up, please verify that yu are n the mst recent versin f Eclipse. If yu see

More information

Delete General Ledger Account History

Delete General Ledger Account History Database Clean-up (Optinal) The fllwing items can be dne at ANY time during yur Fiscal Year. Befre yu start yur Database Clean-up, please verify that yu are n the mst recent versin f Eclipse. If yu see

More information

HOW TO REGISTER FOR THE TEAS ASSESSMENT 1. CREATE A NEW ACCOUNT. How to Register for the TEAS Assessment 1

HOW TO REGISTER FOR THE TEAS ASSESSMENT 1. CREATE A NEW ACCOUNT. How to Register for the TEAS Assessment 1 Hw t Register fr the TEAS Assessment 1 1. CREATE A NEW ACCOUNT HOW TO REGISTER FOR THE TEAS ASSESSMENT If yu are nt a current user n www.atitesting.cm, yu must create a new accunt t access the student

More information

1 Getting and Extracting the Upgrader

1 Getting and Extracting the Upgrader Hughes BGAN-X 9211 Upgrader User Guide (Mac) Rev 1.2 (6-Jul-17) This dcument explains hw t use the Hughes BGAN Upgrader prgram fr the 9211 User Terminal using a Mac Nte: Mac OS X Versin 10.4 r newer is

More information

ONLINE GRANT APPLICATION INSTRUCTIONS

ONLINE GRANT APPLICATION INSTRUCTIONS Overview ONLINE GRANT APPLICATION INSTRUCTIONS This dcument is designed t prvide grant applicants with instructins fr use f the Fundant Grant Lifecycle Manager applicatin fr grants frm the Oberktter Fundatin.

More information

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Asset Template

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Asset Template Netwrk Rail ARMS - Asbests Risk Management System Training Guide fr use f the Imprt Asset Template The ARMS Imprt Asset Template New assets can be added t the Asbests Risk Management System (ARMS) using

More information

InfoCitrus Brief Instructions

InfoCitrus Brief Instructions InfCitrus Brief Instructins In rder t access the CA InfCitrus system, there are number f steps t fllw. Here is a brief verview f these steps: G t the CA website www.citrusaustralia.cm.au Click n the lgin

More information

Integrating QuickBooks with TimePro

Integrating QuickBooks with TimePro Integrating QuickBks with TimePr With TimePr s QuickBks Integratin Mdule, yu can imprt and exprt data between TimePr and QuickBks. Imprting Data frm QuickBks The TimePr QuickBks Imprt Facility allws data

More information

IFSP PDF Upload/Download Guidance

IFSP PDF Upload/Download Guidance IFSP PDF Uplad/Dwnlad Guidance Intr/backgrund The dwnladable IFSP was created t assist FSC s in writing an IFSP r IFSP review n a visit withut the need fr internet cnnectin. Adbe Acrbat is required fr

More information

Access the site directly by navigating to in your web browser.

Access the site directly by navigating to   in your web browser. GENERAL QUESTIONS Hw d I access the nline reprting system? Yu can access the nline system in ne f tw ways. G t the IHCDA website at https://www.in.gv/myihcda/rhtc.htm and scrll dwn the page t Cmpliance

More information

Instruction Guide. General Information Services (GIS) equest+ Ordering and Viewing Process. Client Name Here. Account Manager s Info:

Instruction Guide. General Information Services (GIS) equest+ Ordering and Viewing Process. Client Name Here. Account Manager s Info: Instructin Guide General Infrmatin Services (GIS) equest+ Ordering and Viewing Prcess Client Name Here Accunt Manager s Inf: Every applicant n which yu are running a backgrund must fill ut an authrizatin.

More information

TRAINING GUIDE. Overview of Lucity Spatial

TRAINING GUIDE. Overview of Lucity Spatial TRAINING GUIDE Overview f Lucity Spatial Overview f Lucity Spatial In this sessin, we ll cver the key cmpnents f Lucity Spatial. Table f Cntents Lucity Spatial... 2 Requirements... 2 Setup... 3 Assign

More information

EBSCOhost User Guide Print/ /Save. Print, , Save, Notetaking, Export, and Cite Your Search Results. support.ebsco.com

EBSCOhost User Guide Print/ /Save. Print,  , Save, Notetaking, Export, and Cite Your Search Results. support.ebsco.com EBSCOhst User Guide Print/E-Mail/Save Print, E-mail, Save, Ntetaking, Exprt, and Cite Yur Search Results supprt.ebsc.cm Table f Cntents Inside this User Guide... 3 Printing Yur Results... 3 E-mailing Yur

More information

SmartPass User Guide Page 1 of 50

SmartPass User Guide Page 1 of 50 SmartPass User Guide Table f Cntents Table f Cntents... 2 1. Intrductin... 3 2. Register t SmartPass... 4 2.1 Citizen/Resident registratin... 4 2.1.1 Prerequisites fr Citizen/Resident registratin... 4

More information

Since its last production release there have been two main areas of work on DIPPlus, namely user interface simplification and barcode scanning.

Since its last production release there have been two main areas of work on DIPPlus, namely user interface simplification and barcode scanning. Summary f changes in DIPPlus v2.14 Since its last prductin release there have been tw main areas f wrk n DIPPlus, namely user interface simplificatin and barcde scanning. A. We are undertaking an extensive

More information

Qualtrics Instructions

Qualtrics Instructions Create a Survey/Prject G t the Ursinus Cllege hmepage and click n Faculty and Staff. Click n Qualtrics. Lgin t Qualtrics using yur Ursinus username and passwrd. Click n +Create Prject. Chse Research Cre.

More information

Copy your Course: Export and Import

Copy your Course: Export and Import Center f elearning The exprt curse feature creates a ZIP file f yur curse cntent yu will imprt t yur new curse. Exprt packages are dwnladed and imprted as cmpressed ZIP files. D nt unzip an exprt package

More information

Communication Tools. Quick Reference Card. Communication Tools. Mailing Labels. 6. For the Label Content, follow these rules:

Communication Tools. Quick Reference Card. Communication Tools. Mailing Labels. 6. For the Label Content, follow these rules: PwerSchl ffers a variety f tls that schl administratrs and ffice staff can use t cmmunicate infrmatin effectively with students, parents, and staff members. Learn hw t create mailing labels, print reprts

More information

STIDistrict AL Rollover Procedures

STIDistrict AL Rollover Procedures 2009-2010 STIDistrict AL Rllver Prcedures General Infrmatin abut STIDistrict Rllver IMPORTANT NOTE! Rllver shuld be perfrmed between June 25 and July 25 2010. During this perid, the STIState applicatin

More information

Employee Self Service (ESS) FAQs

Employee Self Service (ESS) FAQs Emplyee Self Service (ESS) FAQs ESS User Access & Lgin/Passwrd Inf Upgrade Changes t ESS Recently we upgrades t versin 10 f ur HR/Payrll system which includes the Emplyee Self Service (ESS) mdule. Just

More information

Simple Regression in Minitab 1

Simple Regression in Minitab 1 Simple Regressin in Minitab 1 Belw is a sample data set that we will be using fr tday s exercise. It lists the heights & weights fr 10 men and 12 wmen. Male Female Height (in) 69 70 65 72 76 70 70 66 68

More information

SoilCare: Stakeholder Platform Guidance How to edit and manage your own stakeholder platform WP8

SoilCare: Stakeholder Platform Guidance How to edit and manage your own stakeholder platform WP8 SilCare: Stakehlder Platfrm Guidance Hw t edit and manage yur wn stakehlder platfrm WP8 3 1) Lg-in t SilCare Website Administratr page Lg-in t the SilCare Website administratr back-end page using this

More information

Gmail and Google Drive for Rutherford County Master Gardeners

Gmail and Google Drive for Rutherford County Master Gardeners Gmail and Ggle Drive fr Rutherfrd Cunty Master Gardeners Gmail Create a Ggle Gmail accunt. https://www.yutube.cm/watch?v=kxbii2dprmc&t=76s (Hw t Create a Gmail Accunt 2014 by Ansn Alexander is a great

More information

Transferring a BERNINA V8 software license

Transferring a BERNINA V8 software license Transferring a BERNINA V8 sftware license Intrductin Yu can use the RUS utility (Remte Update System) t transfer a Bernina V8 sftware license frm ne cmputer (the surce cmputer) t anther (the recipient

More information

Remote Document Delivery

Remote Document Delivery Yu will have the ptin t electrnically deliver the Cntract Package t yur custmers via a Dcument Delivery website, rather than printing them in the reviewing r printing steps f the ecntracting prcess. The

More information

If you have any questions that are not covered in this manual, we encourage you to contact us at or send an to

If you have any questions that are not covered in this manual, we encourage you to contact us at or send an  to Overview Welcme t Vercity, the ESS web management system fr rdering backgrund screens and managing the results. Frm any cmputer, yu can lg in and access yur applicants securely, rder a new reprt, and even

More information

Student Quick Reference Guide

Student Quick Reference Guide LOGGING ON TO THE LEARNING CENTER If yu have a Mitel Cnnect accunt, lg int Mitel Cnnect and click link t Learning Management System. Nte that Mitel Cnnect may take up t 24 hurs t sync yur accunt with the

More information

A Purchaser s Guide to CondoCerts

A Purchaser s Guide to CondoCerts Lgin t CndCerts - T submit a request with CndCerts, lg n t www.cndcerts.cm. First time users will fllw the New Users link t register. Dcument r print screen the User ID and Passwrd prvided. New accunts

More information

InformationNOW Standardized Tests

InformationNOW Standardized Tests InfrmatinNOW Standardized Tests Abut this Guide This Quick Reference Guide prvides an verview f the ptins available fr tracking standardized tests in InfrmatinNOW. Creating Standardized Tests T create

More information

ROCK-POND REPORTING 2.1

ROCK-POND REPORTING 2.1 ROCK-POND REPORTING 2.1 AUTO-SCHEDULER USER GUIDE Revised n 08/19/2014 OVERVIEW The purpse f this dcument is t describe the prcess in which t fllw t setup the Rck-Pnd Reprting prduct s that users can schedule

More information

User Guide. ACE Data Source. OnCommand Workflow Automation (WFA) Abstract PROFESSIONAL SERVICES

User Guide. ACE Data Source. OnCommand Workflow Automation (WFA) Abstract PROFESSIONAL SERVICES PROFESSIONAL SERVICES User Guide OnCmmand Wrkflw Autmatin (WFA) ACE Data Surce Prepared fr: ACE Data Surce - Versin 2.0.0 Date: Octber 2015 Dcument Versin: 2.0.0 Abstract The ACE Data Surce (ACE-DS) is

More information

ClassFlow Administrator User Guide

ClassFlow Administrator User Guide ClassFlw Administratr User Guide ClassFlw User Engagement Team April 2017 www.classflw.cm 1 Cntents Overview... 3 User Management... 3 Manual Entry via the User Management Page... 4 Creating Individual

More information

Using UB Stream and UBlearns

Using UB Stream and UBlearns Using UB Stream and UBlearns Instructrs can nw uplad vides/audi r create a vide using their webcam in UBLearns. There is a new mashup tl (MEDIAL) that allws yu t uplad yur media files t UB s streaming

More information

Tips and Tricks in Word 2000 Part II. Presented by Carla Torgerson

Tips and Tricks in Word 2000 Part II. Presented by Carla Torgerson Tips and Tricks in Wrd 2000 Part II Presented by Carla Trgersn (cnt2@psu.edu) 1. using styles Styles are used t create frmatting shrtcuts s yu can create a dcument that has frmatting cnsistency. Fr example,

More information

Lesson 4 Advanced Transforms

Lesson 4 Advanced Transforms Lessn 4 Advanced Transfrms Chapter 4B Extract, Split and replace 10 Minutes Chapter Gals In this Chapter, yu will: Understand hw t use the fllwing transfrms: Replace Extract Split Chapter Instructins YOUR

More information

Entering an NSERC CCV: Step by Step

Entering an NSERC CCV: Step by Step Entering an NSERC CCV: Step by Step - 2018 G t CCV Lgin Page Nte that usernames and passwrds frm ther NSERC sites wn t wrk n the CCV site. If this is yur first CCV, yu ll need t register: Click n Lgin,

More information

Marian Online 2 Instructor Manual 12

Marian Online 2 Instructor Manual 12 Marian Online 2 Instructr Manual 12 Glssary At first glance, the Glssary activity seems t be just a list f wrds and definitins that students can view. In fact, the Glssary activity is a pwerful tl fr activ

More information

Using MeetingSquared as an Administrator

Using MeetingSquared as an Administrator Using MeetingSquared as an Administratr Use the MeetingSquared web interface t set up and manage yur meeting. MeetingSquared is part f SharePint within Office 365 s yu use a web brwser t lg in using yur

More information

Uploading Files with Multiple Loans

Uploading Files with Multiple Loans Uplading Files with Multiple Lans Descriptin & Purpse Reprting Methds References Per the MHA Handbk, servicers are required t prvide peridic lan level data fr activity related t the Making Hme Affrdable

More information

Creating an Online Account

Creating an Online Account The Standard uses secure, nline accunts t prtect yur data and prvide access t yur emplyer s absence services. T use these services, yu will need t create an nline accunt. Getting started Allw 15 minutes

More information

Outreach Portal User Guide

Outreach Portal User Guide Outreach Prtal User Guide Natinal Resurce Center West Virginia University and Natinal Labr Cllege 3604 Cllins Ferry Rad, P.O. Bx 6615, Mrgantwn, WV 26506-6615 (304) 293-3096 r (800) 626-4748 http://extensin.wvu.edu/cmmunity-business-safety/safety-health/sha-educatin-center

More information

UBC BLOGS NSYNC PLUGIN

UBC BLOGS NSYNC PLUGIN UBC BLOGS NSYNC PLUGIN THE NSYNC 1.1 PLUGIN IN UBC BLOGS ALLOWS YOU TO PERMIT OTHER SITES TO PUSH CONTENT FROM THEIR SITE TO YOUR SITE BY ASSIGNING POSTS TO PRE-DETERMINED CATEGORIES. As shwn belw, psts

More information

HireRight: Step-by-Step Guide

HireRight: Step-by-Step Guide HireRight: Step-by-Step Guide Using HireRight fr Frm I-9 and E-Verify This guide prvides step-by-step prcedures fr using HireRight t cmplete the Emplyment Eligibility Verificatin Frm I-9 and E-Verify check

More information

STISETS AL SETS Query

STISETS AL SETS Query STISETS AL SETS Query Abut the SETS Query Feature SETS Query and SETS Query (Caselad) are designed t allw Administratrs, Managers and Teachers t build reprts based n teacher caselads, schl-wide r district-wide

More information

161 Forbes Road Braintree MA Phone: (781) Fax: (781) What's in it? Key Survey & Extreme Form

161 Forbes Road Braintree MA Phone: (781) Fax: (781) What's in it? Key Survey & Extreme Form 161 Frbes Rad Braintree MA 02184 Phne: (781) 849 8118 Fax: (781) 849 8133 WWW.WORLDAPP.COM 8.0 What's in it? Key Survey & Extreme Frm CONTENTS Cntact Manager... 3 Participant Prtal... 3 Reprting Imprvements...

More information

Form Filing Instructions

Form Filing Instructions Frm Filing Instructins Subscribers creating nline frms fr the first time must cnfirm/set parameters n their cmputer. Refer t the Technical Setup Instructins at the end f this dcument befre cntinuing with

More information

Arius 3.0. Release Notes and Installation Instructions. Milliman, Inc Peachtree Road, NE Suite 1900 Atlanta, GA USA

Arius 3.0. Release Notes and Installation Instructions. Milliman, Inc Peachtree Road, NE Suite 1900 Atlanta, GA USA Release Ntes and Installatin Instructins Milliman, Inc. 3424 Peachtree Rad, NE Suite 1900 Atlanta, GA 30326 USA Tel +1 800 404 2276 Fax +1 404 237 6984 actuarialsftware.cm 1. Release ntes Release 3.0 adds

More information

Knowledgeware Rule-based Clash

Knowledgeware Rule-based Clash Knwledgeware Rule-based Clash Clash rules written using knwledgeware capabilities can be used in a standalne clash prcess clash prcess, ensuring clash analyses take crprate practices int accunt. Multiple

More information

OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS

OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS OASIS SYSTEM FUNCTIONS... 2 ESTABLISHING THE COMMUNICATION CONNECTION... 2 ACCESSING THE OASIS SYSTEM... 3 SUBMITTING OASIS DATA FILES... 5 OASIS INITIAL

More information

Edit Directly in Cells. Fast Navigation with Control button. Fill Handle. Use AutoCorrect to speed up data entry

Edit Directly in Cells. Fast Navigation with Control button. Fill Handle. Use AutoCorrect to speed up data entry 2017 WASBO Accunting Cnference Micrsft Excel - Quick Tips That Can Save a Bundle f Time March 16, 2017 Edit Directly in Cells Allws user t duble-click t edit cells. If turned ff, Excel navigates t the

More information

Word 2007 The Ribbon, the Mini toolbar, and the Quick Access Toolbar

Word 2007 The Ribbon, the Mini toolbar, and the Quick Access Toolbar Wrd 2007 The Ribbn, the Mini tlbar, and the Quick Access Tlbar In this practice yu'll get the hang f using the new Ribbn, and yu'll als master the use f the helpful cmpanin tls, the Mini tlbar and the

More information

Uploading Your Catalogue

Uploading Your Catalogue Uplading Yur Catalgue Creating a Catalgue A simple timed auctin catalgue shuld cntain fur kinds f infrmatin: Lt Number Descriptin Start Price Reserve The best way t frmat yur catalgue is t use Micrsft

More information