A Guided Tour Through the SAS Windowing Environment Casey Cantrell, Clarion Consulting, Los Angeles, CA

Size: px
Start display at page:

Download "A Guided Tour Through the SAS Windowing Environment Casey Cantrell, Clarion Consulting, Los Angeles, CA"

Transcription

1 A Guided Tour Through the SAS Windowing Environment Casey Cantrell, Clarion Consulting, Los Angeles, CA ABSTRACT The SAS system running in the Microsoft Windows environment contains a multitude of tools that can make the process of learning, and using SAS much easier. The interface simplifies communication with the operating system and provides us immediate and familiar access to our data. The programmer may perform common data management tasks with the click of a mouse, customize the working environment and use a variety of tools common to other Windows applications. This workshop will provide an orientation to the SAS windowing environment, and will demonstrate how to edit and submit programs, manage output, and build and save SAS system files. INTRODUCTION The first versions of SAS, written primarily in FORTAN and Pl/I, were developed to run on IBM mainframe computers. In the mid 1980 s SAS was rewritten in C, a more flexible and durable language. This was an important change, making SAS what it is today: a highly portable, platform independent information delivery system. SAS not only has the capacity to work with foreign file types, such as SPSS or dbase, but SAS programs themselves may be run on a variety of computing platforms. One may combine data in ORACLE from a mainframe with a db2 file from a PC, generate forecasting information using SAS ETS and write out the results into an Excel file. RUNNING SAS PROGRAMS Regardless of platform, there are at least two and typically three steps involved with running SAS programs: Write the program Submit the program for execution View results When run, a SAS program will generate a log, which contains messages from the system about the execution of the program, and an output listing, which contains results of the program, such as tables or statistics if any are produced. SAS programs may be executed in batch mode or within the SAS interactive windowing environment. When running jobs in batch, the programmer writes the program, then submits the program file to the system for execution. System resources are typically shared with other users. Programs, program logs and any results are saved on the system as separate files. When working interactively, the programmer initiates and works within a SAS session, so all activity takes place in SAS. One may write a program in the SAS program editor or open into the editor a program saved as a file. The program log and any output appear in separate windows. The contents of windows are temporary unless specifically saved to a file outside the session. SAS DISPLAY MANAGER Although this workshop will discuss elements that are common to all SAS programs regardless of operating system, we will pay particular attention to features found in the SAS Display Manager running on Microsoft Windows. 1

2 SAS WINDOWS Although you can customize the SAS windowing environment, when you first initiate a session, your screen will usually look something like the one shown in Figure 1. COMMAND BAR DROP-DOWN MENUS TOOLBAR ACTIVE WINDOW CURSOR POSITION Figure 1 SAS Windows Environment Active window Although you may open multiple windows, only one will be active at any one time. Commands and actions will work only for the active window, which is typically highlighted in blue on your screen. Drop-down menus Drop-down menus for the active window will appear across the top of your screen. Menus and menu items will change depending on which window is active. Toolbar The toolbar provides icons for actions you perform most often. In addition, you can change the tool icons and/or create your own tools. Cursor position This indicates the position of the cursor in the program editor window. Command bar You may type commands into the command box as an alternative to using menus. The command bar keeps a list of commands previously entered, so you can quickly repeat a command. 2

3 Figure 2 Recalling previous commands Although three windows appear when you first start your SAS session, five are available. They are: Program editor This is where you will write, edit and submit your programs. Log SAS system message will appear in this window when your program is executed. Output window Listings generated by your program will appear here. Explorer window You may perform various file management tasks, such as opening, moving, and copying files, from this window. Results window This window provides an outline of SAS output generated during the session, making it easy to view, print and save specific tables or listings. WINDOWS Figure 3 Available windows WORKING WITH THE SAS WINDOWS The Display Manager supports many of the tools common to other Windows applications that allow you modify the layout on your screen. You may open, close, minimize and maximize windows and/or resize and move them to suit your individual preferences. 3

4 MAXIMIZE MINIMIZE CLOSE Figure 4 Tools to resize windows You may open or reopen any window from the VIEW drop-down menu. Figure 5 Using the view menu There are various ways to navigate across windows as well. Clicking anywhere within a window will activate that window. Or you may use the WINDOW drop-down menu (see Figure 3) or the task bars located at the bottom of your screen. TASK BARS Figure 6 Task bars THE SAS PROGRAM EDITOR The enhanced program editor provides myriad tools to make your job easier. You may expand and collapse individual sections in your program, define your own function keys and record macros to automate redundant editing. The color-coding feature, which allows you to define colors specific to program components, helps locate syntax errors. 4

5 In addition to making your programs easier to read, collapsing sections also makes it easy to differentiate steps, since all statements in the step, except for those on the first line, will collapse when this features is used. Remember that steps are processed separately in SAS. You may not mix PROC steps with DATA steps. COLLAPSED NOT COLLAPSED Figure 7 Collapsing program steps Although SAS provides a set of pre-defined function keys, these, too are completely customizable. To open the DMKEYS window, type KEYS into the command box. You may type a command into the definition of any unused key or change the definition of an existing function key. If you wish, you can combine commands by separating them with a semicolon. KEY PERFORMS TWO ACTIONS Figure 8 Customizing function keys Similarly, the keyboard macro tool can be used to automate repetitive editing tasks. The macro can store commands or even keystrokes. In the examples shown in Figure 9, the $ character needs to be added to each format name. 5

6 ADD $ Figure 9 Using the Macro recorder To do this by hand, one needs to position the cursor at the beginning of the format name, e.g., NEEDLANG, type $, then move the cursor to the next line and repeat the process. To do this with one key stroke, let s create a keyboard macro. First, select Keyboard Macros from the TOOLS menu. Then select Record New Macro. An image of a cassette tape will appear in the window as will the message ( Recording ) as shown in Figure 11. Figure 10 Invoking the Macro recorder Since the cursor is already positioned at the beginning of each format name, we now need only to enter the necessary keystrokes to change a single format,. We ll type $, press the down arrow key to move the cursor to the next line, then press the left arrow key to move the cursor back one space. Figure 11 Macro recorder in record mode 6

7 To stop recording, return to the Keyboard Macros menu, and select Stop Recording. Figure 12 Stopping the Macro recorder We can now save the macro and give it a name or assign a function key to use it. Figure 13 Saving a keyboard macro USING THE SAS EDITOR TO WRITE PROGRAMS You may edit your SAS program using any text editor and then import it into your SAS session, but most SAS Windows programmers find it easier to write programs in the Program Editor itself. The cut and paste features familiar to Windows users work in the SAS editor and many common editing actions are available from the EDIT drop-down menu as well. To begin working in the program editor, click anywhere in the window titled Editor. Alternately you may type Prog in the command line or access the window through a menu. Remember, although you may have several windows open, you may only work in one window at a time. The name of the active window will be highlighted in blue. Figure 14 shows a simple program that creates a temporary SAS file named pups. The file will contain 5 records or observations and 4 variables: name, sex, weight1 and weight6. As indicated by the $, name and sex will be character variables. 7

8 Figure 14 Simple SAS program Again, there are various ways to execute your program. You may select SUBMIT from the Run menu, type Submit in the command window or press the Submit icon in the toolbar. Figure 15 Using the Run menu SUBMIT COMMAND SUBMIT ICON Figure 16 Issuing the SUBMIT command or using the SUBMIT icon 8

9 THE PROGRAM LOG WINDOW All too often, programmers look for output, assuming that their program ran successfully if listings were generated. This will inevitably get you into trouble, so make it a habit to review the program log first. In this example, there were no syntax errors, but let s look more closely at the information the log provides. Does the output file contain the number of records and number or variables we expect? INFORMATION ABOUT DATA SET Figure 17 The SAS program log The program shown in Figure 18 failed because of a spelling error. Figure 18 Spelling error as shown in the program log To correct the mistake, we will bring the program back into the Program Editor by typing recall into the command box, or by using the Recall last submit item under the RUN menu. Figure 19 Recalling the last program executed 9

10 ERROR CORRECTION Figure 20 Correcting the error THE OUTPUT AND RESULTS WINDOWS Now that we have built a SAS system file, we can use any of the numerous procedures available in SAS to get information from it. Most, but not all PROCs generate output that we can view in the Output window. Let s run a PROC PRINT to get a listing of the file. When we submit the program, the Output window will automatically become the active window and will appear in the foreground on our screen. Note that the Results window now contains an object labeled Print: The SAS System. Although we can scroll through the output in the Output window, this can become quite tedious once we ve run multiple programs, since the listings will remain there until we clear the contents. The Results window provides an outline of the output generated during our session, making it easy to find a particular item. PRINT OUTPUT Figure 21 Output listed in the Results window Let s run another procedure to see how this works. The program shown in Figure 22 generates frequencies for the variables in our file. Since there are only four variables, we can see them all quite easily. If however, we had hundreds of lines of output and wanted to locate a particular table, we could do this quickly using the Results window. Figure 22 - PROC FREQ 10

11 FREQUENCY TABLES Figure 23 Output generated from PROC FREQ Clicking on the item labeled Freq: The SAS System displays a list of every table generated by that PROC. Clicking on any item in the list will take us to that specific table in the Output window. Figure 24 Output generated from PROC FREQ To clear the contents of any window, select Clear all from the Edit drop-down menu, or type clear into the command box. Make certain the window you wish to clear is the active window by clicking anywhere in that window. Remember the active window will move to the front of the screen and its name bar will be highlighted. Figure 25 Clearing contents of Output window from EDIT menu 11

12 COMMAND BOX Figure 26 Clearings contents of Output window from command line SAS SYSTEM FILE NAMES All SAS data files have two part names. The first part refers to the LIBRARY, or folder where the physical file is, or will be, stored. The second part is the FILENAME, which identifies the data set in the folder. When used in a program, the two parts are separated by a dot, i.e. LIBRARY.FILENAME. SAS system files may be temporary, meaning they exist only for the duration of the program or session, or they may be stored as permanent files, which may be used later. Temporary files are stored in a library called WORK that SAS defines automatically when the session is started. When our sample program ran successfully, the SAS log contained the following NOTE: The data set WORK.PUPS has 5 observations and 4 variables. NOTE Figure 27 Temporary SAS file written to WORK directory : 12

13 Since we did not use a two part name in our program, SAS wrote the file to the default WORK library. Consequently, our file will be erased when we terminate our SAS session. THE EXPLORER WINDOW The Explorer window provides various tools for working with SAS data sets. Although it is particularly useful for managing multiple files, we ll use it now to look at the data set created above. First click on the Libraries icon in the Explorer window. This will open a window showing the libraries currently available to us. Since our file was written to the Work library, click on that icon to see the contents of the library. WORK LIBRARY Figure 28 Active libraries displayed in the Explorer window The icon displayed indicates the file is a SAS system file. SAS FILE Figure 29 Contents of WORK library Click on the Pups icon to open the file. Note that the menu bar now has a different set of icons available. We are currently in Table View mode, which enables us to see the entire data set. 13

14 SORT TABLE VIEW COLUMN ATTRIBUTES BROWSE MODE FORM VIEW TABLE ATTRIBUTES EDIT MODE Figure 30 VIEWTABLE Let s explore further. Figure 31 shows options available in the View menu that control how the file is displayed. Figure 31 Options available from the View menu Clicking the Column Attributes icon displays information about each variable in the file, as shown in Figure 32.. Figure 32 Column Attributes window 14

15 We can add labels, formats and informats from this screen. Figure 33 Adding a format from the Column Attributes window We can also change label fonts or colors if we wish. Figure 34 Changing font and color from the Column Attributes window Clicking the Table Attributes button displays information about the entire file. Figure 35 Table Attributes window 15

16 Form View displays records one at a time. Figure 36 Form View window The Edit and Browse buttons control access to the file. The default mode is Browse. You must toggle the Edit mode icon to sort or make changes to the data. Figure 37 Edit mode Several editing actions are available from the Edit pull down menu. Figure 38 File menu Edit options To sort the file, select the appropriate sort order key to reach the Sort screen where you then the select sort order variables. DESCENDING ASCENDING Figure 39 Selecting sort order 16

17 To select variables you want to sort by, highlight the variable name in the Available box, then press the right arrow key to move it into the Selected box. To remove the variable from the Selected list, press the left arrow key. SELECT Figure 40 Selecting sort order variables SAS LIBRARIES SAS system files may be temporary or they may be stored as permanent files. Temporary files exist only for the duration of the program or session, while permanent files may be used later. To create a permanent file, you need to define a SAS library, which tells SAS where you want to store your SAS files. To define your library interactively, click on the New Library icon in the toolbar or right click on the Libraries icon in the Explorer window. LIBRARIES ICON NEW LIBRARY ICON Figure 41 Defining SAS libraries Right click the Libraries icon, then select New. Figure 42 Using the Libraries icon to define a SAS library 17

18 Either method will bring up the dialogue box pictured in Figure 43. Type the desired library name into the Name box. Library names cannot exceed 8 characters, must begin with a letter or underscore and may include only letters, numbers or underscores. Figure 43 New library dialogue box You may type in the path information, or click the Browse key shown in Figure 43 to locate the appropriate folder interactively as shown in Figure 44 Figure 44 Using the Browse option to define a SAS library folder If you want the library defined each time you start a SAS session, check the Enable at startup box. Figure 45 Automatically defining a SAS library at startup 18

19 CONCLUSION In this workshop, we have demonstrated the use of several tools available in the SAS Display Manager. SAS has integrated features common to other Windows applications into an environment that provides a sophisticated and intuitive editor, quick and easy data management tools and a logical system for organizing output. The programmer who understands and uses these tools will certainly experience increased productivity. REFERENCES SAS Institute (1999) SAS Companion for the Microsoft Windows Environment, Version 8, Cary, NC: SAS Institute Inc. 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 trademarks of their respective companies. AUTHOR CONTACT Casey Cantrell Clarion Consulting 4404 Grand View Blvd. Los Angeles, CA caseycantrell@comcast.net 19

2 The Stata user interface

2 The Stata user interface 2 The Stata user interface The windows This chapter introduces the core of Stata s interface: its main windows, its toolbar, its menus, and its dialogs. The five main windows are the Review, Results, Command,

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

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

Altering Layouts. Changing Font. Universal Engraving Machine. Chapter 18 Altering Layouts

Altering Layouts. Changing Font. Universal Engraving Machine. Chapter 18 Altering Layouts Universal Engraving Machine Changing Font Altering Layouts If you want to change the Font Style of your text. Left Click On the line you wish to change. If you wish to change more than one line, draw a

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

Sage Getting Started Guide. September 2017

Sage Getting Started Guide. September 2017 Sage 100 2018 Getting Started Guide September 2017 2017 The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product and service names mentioned herein are the trademarks

More information

WPS Workbench. user guide. "To help guide you through using the WPS user interface (Workbench) to create, edit and run programs"

WPS Workbench. user guide. To help guide you through using the WPS user interface (Workbench) to create, edit and run programs WPS Workbench user guide "To help guide you through using the WPS user interface (Workbench) to create, edit and run programs" Version: 3.1.7 Copyright 2002-2018 World Programming Limited www.worldprogramming.com

More information

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet Copyright 1 99 Spreadsheet definition: A spreadsheet stores and manipulates data that lends itself to being stored in a table type format (e.g. Accounts, Science Experiments, Mathematical Trends, Statistics,

More information

SAS Universal Viewer 1.3

SAS Universal Viewer 1.3 SAS Universal Viewer 1.3 User's Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2012. SAS Universal Viewer 1.3: User's Guide. Cary, NC: SAS

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 This class is designed to cover the following basics: What you can do with Excel Excel Ribbon Moving and selecting cells Formatting cells Adding Worksheets, Rows and

More information

Dynamic Projects in SAS Enterprise Guide How to Create and Use Parameters

Dynamic Projects in SAS Enterprise Guide How to Create and Use Parameters Paper HW02 Dynamic Projects in SAS Enterprise Guide How to Create and Use Parameters Susan J. Slaughter, Avocet Solutions, Davis, CA Lora D. Delwiche, University of California, Davis, CA ABSTRACT SAS Enterprise

More information

Windows Computer A to Z Shortcut Key list with PDF

Windows Computer A to Z Shortcut Key list with PDF Windows Computer A to Z Shortcut Key list with PDF In the Computer world, a keyboard shortcut is a combination of one or more command to execute a particular action. These shortcuts are really helpful

More information

APPENDIX 4 Migrating from QMF to SAS/ ASSIST Software. Each of these steps can be executed independently.

APPENDIX 4 Migrating from QMF to SAS/ ASSIST Software. Each of these steps can be executed independently. 255 APPENDIX 4 Migrating from QMF to SAS/ ASSIST Software Introduction 255 Generating a QMF Export Procedure 255 Exporting Queries from QMF 257 Importing QMF Queries into Query and Reporting 257 Alternate

More information

SAS/ASSIST Software Setup

SAS/ASSIST Software Setup 173 APPENDIX 3 SAS/ASSIST Software Setup Appendix Overview 173 Setting Up Graphics Devices 173 Setting Up Remote Connect Configurations 175 Adding a SAS/ASSIST Button to Your Toolbox 176 Setting Up HTML

More information

Oracle General Navigation Overview

Oracle General Navigation Overview Oracle 11.5.9 General Navigation Overview 1 Logging On to Oracle Applications You may access Oracle, by logging onto the ATC Applications Login System Status page located at www.atc.caltech.edu/support/index.php

More information

Introduction. CHAPTER 3 Working in the SAS Windowing Environment

Introduction. CHAPTER 3 Working in the SAS Windowing Environment 57 CHAPTER 3 Working in the SAS Windowing Environment Introduction 57 Using Function Keys 58 Using the SAS ToolBox 60 Using the Command Window 60 Using the Toolbar 61 Using the Tool Icons 61 Opening Files

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

Chapter 2. Basic Operations. you through the routine procedures that you will use nearly every time you work with SPSS.

Chapter 2. Basic Operations. you through the routine procedures that you will use nearly every time you work with SPSS. 1 Chapter 2 Basic Operations Chapter 1 presented a very conceptual overview of SPSS. The present chapter will walk you through the routine procedures that you will use nearly every time you work with SPSS.

More information

Chapter 2 The SAS Environment

Chapter 2 The SAS Environment Chapter 2 The SAS Environment Abstract In this chapter, we begin to become familiar with the basic SAS working environment. We introduce the basic 3-screen layout, how to navigate the SAS Explorer window,

More information

2010/04/19 11:38. Describing a unique product that shows the mainframe in a completely different way.

2010/04/19 11:38. Describing a unique product that shows the mainframe in a completely different way. Describing a unique product that shows the mainframe in a completely different way. 1 These are some of the features of SELCOPY/i I will be speaking about today, to give you a flavour of the SELCOPY Interactive

More information

Address Bar. Application. The space provided on a web browser that shows the addresses of websites.

Address Bar. Application. The space provided on a web browser that shows the addresses of websites. Address Bar The space provided on a web browser that shows the addresses of websites. Application Computer software designed to help users perform Specific tasks. Back Button A button at the top of the

More information

Demonstration Script: Uniplex Business Software Version 8.1 Upgrading to Version 8.1

Demonstration Script: Uniplex Business Software Version 8.1 Upgrading to Version 8.1 Page 1 Introduction Start the Demonstration Manager (Note to the presenter: this session will - by its very nature - be less structured and inclined towards feature comparisons between versions. Please

More information

Microsoft Word 2010 Introduction to Mail Merge

Microsoft Word 2010 Introduction to Mail Merge Microsoft Word 2010 Introduction to Mail Merge Elizabeth Wells February 2012 Copyright 2012 ElizabethWells All rights reserved. Except as permitted under current legislation, no part of this work may be

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

Embarcadero PowerSQL 1.1 Evaluation Guide. Published: July 14, 2008

Embarcadero PowerSQL 1.1 Evaluation Guide. Published: July 14, 2008 Embarcadero PowerSQL 1.1 Evaluation Guide Published: July 14, 2008 Contents INTRODUCTION TO POWERSQL... 3 Product Benefits... 3 Product Benefits... 3 Product Benefits... 3 ABOUT THIS EVALUATION GUIDE...

More information

Getting Up to Speed with PROC REPORT Kimberly LeBouton, K.J.L. Computing, Rossmoor, CA

Getting Up to Speed with PROC REPORT Kimberly LeBouton, K.J.L. Computing, Rossmoor, CA SESUG 2012 Paper HW-01 Getting Up to Speed with PROC REPORT Kimberly LeBouton, K.J.L. Computing, Rossmoor, CA ABSTRACT Learning the basics of PROC REPORT can help the new SAS user avoid hours of headaches.

More information

ClickFORMS Quickstart Tutorial

ClickFORMS Quickstart Tutorial ClickFORMS Quickstart Tutorial A ClickFORMS Tutorial 2003 by Bradford Technologies. All Rights Reserved. No part of this document may be reproduced in any form or by any means without the written permission

More information

Sage Getting Started Guide

Sage Getting Started Guide Sage 100 2016 Getting Started Guide This is a publication of Sage Software, Inc. Version 2016 Copyright 2015 Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service

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

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

Overview. CHAPTER 2 Using the SAS System and SAS/ ASSIST Software

Overview. CHAPTER 2 Using the SAS System and SAS/ ASSIST Software 11 CHAPTER 2 Using the SAS System and SAS/ ASSIST Software Overview 11 Invoking the SAS System 12 Selecting Items 12 Entering Commands 13 Using Menus 13 Using Function Keys 15 Invoking SAS/ASSIST Software

More information

The first time you open Word

The first time you open Word Microsoft Word 2010 The first time you open Word When you open Word, you see two things, or main parts: The ribbon, which sits above the document, and includes a set of buttons and commands that you use

More information

Introduction to Personal Computing

Introduction to Personal Computing Introduction to Personal Computing Academic Computing Services www.ku.edu/acs Abstract: This document explains the basics of the Microsoft Windows operating system. It is intended for users who are either

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 This class is designed to cover the following basics: What you can do with Excel Excel Ribbon Moving and selecting cells Formatting cells Adding Worksheets, Rows and

More information

Word - Basics. Course Description. Getting Started. Objectives. Editing a Document. Proofing a Document. Formatting Characters. Formatting Paragraphs

Word - Basics. Course Description. Getting Started. Objectives. Editing a Document. Proofing a Document. Formatting Characters. Formatting Paragraphs Course Description Word - Basics Word is a powerful word processing software package that will increase the productivity of any individual or corporation. It is ranked as one of the best word processors.

More information

SAS/Warehouse Administrator Usage and Enhancements Terry Lewis, SAS Institute Inc., Cary, NC

SAS/Warehouse Administrator Usage and Enhancements Terry Lewis, SAS Institute Inc., Cary, NC SAS/Warehouse Administrator Usage and Enhancements Terry Lewis, SAS Institute Inc., Cary, NC ABSTRACT SAS/Warehouse Administrator software makes it easier to build, maintain, and access data warehouses

More information

STAT 7000: Experimental Statistics I

STAT 7000: Experimental Statistics I STAT 7000: Experimental Statistics I 2. A Short SAS Tutorial Peng Zeng Department of Mathematics and Statistics Auburn University Fall 2009 Peng Zeng (Auburn University) STAT 7000 Lecture Notes Fall 2009

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

Basic E-Sticker Pack User Guide

Basic E-Sticker Pack User Guide r6 Basic E-Sticker Pack User Guide Getting Started with Your Basic E-Sticker Pack Using the Basic E-Sticker Pack is a simple process. Before you begin, however, we highly recommend that you keep an original,

More information

QuickStart Guide MindManager 7 MAC

QuickStart Guide MindManager 7 MAC QuickStart Guide MindManager 7 MAC Contents Welcome to Mindjet MindManager...... 1 Technical Support and Registration... 1 About this User Guide............... 1 Learn about MindManager and maps... 2 What

More information

Abacus 32 Windows Menu System

Abacus 32 Windows Menu System Note: If you do not want to use the Windows Menu system please ignore this section. System Requirements IBM or PC compatible. Pentium 233 or higher is recommended but will operate on a 486 DX 66 or higher

More information

Interface. 2. Interface Adobe InDesign CS2 H O T

Interface. 2. Interface Adobe InDesign CS2 H O T 2. Interface Adobe InDesign CS2 H O T 2 Interface The Welcome Screen Interface Overview The Toolbox Toolbox Fly-Out Menus InDesign Palettes Collapsing and Grouping Palettes Moving and Resizing Docked or

More information

STAT 3304/5304 Introduction to Statistical Computing. Introduction to SAS

STAT 3304/5304 Introduction to Statistical Computing. Introduction to SAS STAT 3304/5304 Introduction to Statistical Computing Introduction to SAS What is SAS? SAS (originally an acronym for Statistical Analysis System, now it is not an acronym for anything) is a program designed

More information

Introduction to Excel

Introduction to Excel Introduction to Excel Written by Jon Agnone Center for Social Science Computation & Research 145 Savery Hall University of Washington Seattle WA 98195 U.S.A. (206)543-8110 November 2004 http://julius.csscr.washington.edu/pdf/excel.pdf

More information

SAS Business Rules Manager 1.2

SAS Business Rules Manager 1.2 SAS Business Rules Manager 1.2 User s Guide Second Edition SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2012. SAS Business Rules Manager 1.2. Cary,

More information

PEACHTREE COMPLETE 2008 AN INTRODUCTION TO PEACHTREE COMPLETE ACCOUNTING

PEACHTREE COMPLETE 2008 AN INTRODUCTION TO PEACHTREE COMPLETE ACCOUNTING PEACHTREE COMPLETE 2008 AN INTRODUCTION TO PEACHTREE COMPLETE ACCOUNTING Opening a Company Database To change the open company in Peachtree, click File on the main menu and select Open Company. If the

More information

Submitting Code in the Background Using SAS Studio

Submitting Code in the Background Using SAS Studio ABSTRACT SAS0417-2017 Submitting Code in the Background Using SAS Studio Jennifer Jeffreys-Chen, SAS Institute Inc., Cary, NC As a SAS programmer, how often does it happen that you would like to submit

More information

Introduction to Microsoft FrontPage

Introduction to Microsoft FrontPage Platform Windows PC Ref no: ins069 Date: 2006 Version: 1 Authors: S. Coates Introduction to Microsoft FrontPage What is Microsoft FrontPage? Microsoft FrontPage is an web authoring tool that can be used

More information

Photoshop tutorial: Final Product in Photoshop:

Photoshop tutorial: Final Product in Photoshop: Disclaimer: There are many, many ways to approach web design. This tutorial is neither the most cutting-edge nor most efficient. Instead, this tutorial is set-up to show you as many functions in Photoshop

More information

version 7.6 user manual

version 7.6 user manual version 7.6 user manual 2 Copyright JAVS 1981-2014 Table of Contents Introduction... 4 Getting Started... 5 Login... 5 JAVS Publisher 7 Overview... 6 Search Tool Overview... 7 Search Tool-Detailed Operation...

More information

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1.

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1. -Using Excel- Note: The version of Excel that you are using might vary slightly from this handout. This is for Office 2004 (Mac). If you are using a different version, while things may look slightly different,

More information

Fusion. CBR Fusion MLS Level 1 Core Functions. Class Handout

Fusion. CBR Fusion MLS Level 1 Core Functions. Class Handout Fusion 1 CBR Fusion MLS Level 1 Core Functions Class Handout GETTING STARTED IN FUSION Logging On and Off To log on to Fusion MLS: 1. Type your user name in the User ID box. 2. Type your password in the

More information

SAS. Studio 4.1: User s Guide. SAS Documentation

SAS. Studio 4.1: User s Guide. SAS Documentation SAS Studio 4.1: User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2016. SAS Studio 4.1: User s Guide. Cary, NC: SAS Institute Inc. SAS

More information

Getting Started with Solar Eclipse. Release 8.6.5

Getting Started with Solar Eclipse. Release 8.6.5 Getting Started with Solar Eclipse Release 8.6.5 Legal Notices 2009 Activant Solutions Inc. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Activant and the Activant logo

More information

Expedient User Manual Getting Started

Expedient User Manual Getting Started Volume 1 Expedient User Manual Getting Started Gavin Millman & Associates Pty Ltd 281 Buckley Street Essendon VIC 3040 Phone 03 9331 3944 Web www.expedientsoftware.com.au Table of Contents Logging In...

More information

BASIC NAVIGATION & VIEWS...

BASIC NAVIGATION & VIEWS... Content Overview VISUAL TOUR... 5 NEW FEATURES IN OUTLOOK 2010... 6 BASIC NAVIGATION & VIEWS... 7 SETTING PREFERENCES... 7 Creating an Outlook Shortcut... 7 Choosing a Startup View... 7 CUSTOMIZING INBOX

More information

Using SAS Files. Introduction CHAPTER 5

Using SAS Files. Introduction CHAPTER 5 123 CHAPTER 5 Using SAS Files Introduction 123 SAS Data Libraries 124 Accessing SAS Files 124 Advantages of Using Librefs Rather than OpenVMS Logical Names 124 Assigning Librefs 124 Using the LIBNAME Statement

More information

COMPUTER FOR BEGINNERS

COMPUTER FOR BEGINNERS COMPUTER FOR BEGINNERS INTRODUCTION Class Objective: This class will familiarize you with using computers. By the end of the session you will be familiar with: Starting programs Quitting programs Saving

More information

You can record macros to automate tedious

You can record macros to automate tedious Introduction to Macros You can record macros to automate tedious and repetitive tasks in Excel without writing programming code directly. Macros are efficiency tools that enable you to perform repetitive

More information

Basic Microsoft Word

Basic Microsoft Word (Demonstrated using Windows XP) An Introduction to Word Processing Adapted from Taskstream Word Tutorial (2005) < http://www.taskstream.com > Updated 4/05 by Dr. Bruce Ostertag What can Microsoft Word

More information

Scribe 4 Manual 2. Scribe 4

Scribe 4 Manual 2. Scribe 4 Scribe 4 Manual 2 Scribe 4 Scribe 4 is an optimally flexible data analysis program that permits users to label events in live observations or in QuickTime movies, summarize event timings, and play back

More information

Maximizing the Power of Excel With Macros and Modules

Maximizing the Power of Excel With Macros and Modules Maximizing the Power of Excel With Macros and Modules Produced by SkillPath Seminars The Smart Choice 6900 Squibb Road P.O. Box 2768 Mission, KS 66201-2768 1-800-873-7545 www.skillpath.com Maximizing the

More information

Colleague by Ellucian Guide to User Interface 4.4 and 4.4.1

Colleague by Ellucian Guide to User Interface 4.4 and 4.4.1 Colleague by Ellucian Guide to User Interface 4.4 and 4.4.1 Colleague Release 18, UI 4.4 and 4.4.1 May 2, 2013 For corrections and clarifications to this manual, see AnswerNet page 1926.37 Banner, Colleague,

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

Microsoft Word Introduction

Microsoft Word Introduction Academic Computing Services www.ku.edu/acs Abstract: This document introduces users to basic Microsoft Word 2000 tasks, such as creating a new document, formatting that document, using the toolbars, setting

More information

The Fundamentals. Document Basics

The Fundamentals. Document Basics 3 The Fundamentals Opening a Program... 3 Similarities in All Programs... 3 It's On Now What?...4 Making things easier to see.. 4 Adjusting Text Size.....4 My Computer. 4 Control Panel... 5 Accessibility

More information

LESSON ONE AND TWO TOPIC: HOW TO USE MICROSOFT WORD. : Putu Putra Astawa, S.Kom.,M.Kom

LESSON ONE AND TWO TOPIC: HOW TO USE MICROSOFT WORD. : Putu Putra Astawa, S.Kom.,M.Kom LESSON ONE AND TWO TOPIC: HOW TO USE MICROSOFT WORD Author : Putu Putra Astawa, S.Kom.,M.Kom Date : June 09, 2014 and June 16, 2014 Time : 08.30-10.45 Am. Materials Needed : Computer, Work Sheet Overview

More information

Attachmate EXTRA! X-treme Evaluator s Guide

Attachmate EXTRA! X-treme Evaluator s Guide Attachmate EXTRA! X-treme Evaluator s Guide Attachmate EXTRA! X-treme Evaluator s Guide CONTENTS Introduction... 2 About this Guide... 2 Product Overview... 2 Getting Started... 2 Configure Spell-check

More information

Microsoft FrontPage Practical Session

Microsoft FrontPage Practical Session Ministry of manpower Higher college of technology Department of Information Technology QA Umbrella Workshop 30 th August- 3 rd September 2008 IT Skills Microsoft FrontPage Practical Session Copyright of

More information

Edit the Editor: Creating Keyboard Macros in SAS Enterprise Guide

Edit the Editor: Creating Keyboard Macros in SAS Enterprise Guide Paper 3502-2015 Edit the Editor: Creating Keyboard Macros in SAS Enterprise Guide Christopher J. Bost, MDRC, New York, NY ABSTRACT Programmers can create keyboard macros to perform common editing tasks

More information

TABLE OF CONTENTS CHAPTER

TABLE OF CONTENTS CHAPTER TABLE OF CONTENTS CHAPTER 1...1 A QUICK OVERVIEW OF THE MICROSOFT EXCHANGE CLIENT...1 BASIC CONCEPTS AND FEATURES...1 STARTING THE MICROSOFT EXCHANGE CLIENT...1 SETTING OPTIONS FOR YOUR MESSAGES...3 LOOKING

More information

SlickEdit Gadgets. SlickEdit Gadgets

SlickEdit Gadgets. SlickEdit Gadgets SlickEdit Gadgets As a programmer, one of the best feelings in the world is writing something that makes you want to call your programming buddies over and say, This is cool! Check this out. Sometimes

More information

An Introduction to SAS/FSP Software Terry Fain, RAND, Santa Monica, California Cyndie Gareleck, RAND, Santa Monica, California

An Introduction to SAS/FSP Software Terry Fain, RAND, Santa Monica, California Cyndie Gareleck, RAND, Santa Monica, California An Introduction to SAS/FSP Software Terry Fain, RAND, Santa Monica, California Cyndie Gareleck, RAND, Santa Monica, California ABSTRACT SAS/FSP is a set of procedures used to perform full-screen interactive

More information

Display Systems International Software Demo Instructions

Display Systems International Software Demo Instructions Display Systems International Software Demo Instructions This demo guide has been re-written to better reflect the common features that people learning to use the DSI software are concerned with. This

More information

EXCEL BASICS: MICROSOFT OFFICE 2007

EXCEL BASICS: MICROSOFT OFFICE 2007 EXCEL BASICS: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

Learning Guide for User Interface 4.3

Learning Guide for User Interface 4.3 Learning Guide for User Interface 4.3 This guide will help you learn how to use Datatel User Interface 4.3. It includes instructions for accomplishing various tasks, such as accessing a screen or mnemonic,

More information

Embarcadero DB Optimizer 1.0 Evaluation Guide. Published: July 14, 2008

Embarcadero DB Optimizer 1.0 Evaluation Guide. Published: July 14, 2008 Published: July 14, 2008 Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. This is a preliminary document and may be changed substantially prior to final commercial

More information

Read Now In-Browser Reader Guide

Read Now In-Browser Reader Guide Read Now In-Browser Reader Guide Table of Contents Navigation... 2 Page Forward and Backward... 2 Table of Contents... 2 Logging Out... 3 Display Settings... 3 Font Options... 3 Bookmarks... 4 Notes, Highlights,

More information

Human Resource Management System User Guide

Human Resource Management System User Guide 11.0 Human Resource Management System User Guide Unit 0: Introduction Unit 1: HRMS Basics Unit 2: DateTracking Unit 3: Hiring a New Employee Unit 4: Electronic Approvals Unit 5: Maintaining Existing Employees

More information

DEPARTMENT OF HEALTH AND HUMAN SCIENCES HS900 RESEARCH METHODS

DEPARTMENT OF HEALTH AND HUMAN SCIENCES HS900 RESEARCH METHODS DEPARTMENT OF HEALTH AND HUMAN SCIENCES HS900 RESEARCH METHODS Using SPSS Topics addressed today: 1. Accessing data from CMR 2. Starting SPSS 3. Getting familiar with SPSS 4. Entering data 5. Saving data

More information

Using Reports. Access 2013 Unit D. Property of Cengage Learning. Unit Objectives. Files You Will Need

Using Reports. Access 2013 Unit D. Property of Cengage Learning. Unit Objectives. Files You Will Need Unit D CASE Samantha Hooper, a tour developer at Quest Specialty Travel, asks you to produce some reports to help her share and analyze data. A report is an Access object that creates a professional looking

More information

Perforce Getting Started with P4V

Perforce Getting Started with P4V Perforce 2005.2 Getting Started with P4V December 2005 This manual copyright 2005 Perforce Software. All rights reserved. Perforce software and documentation is available from http://www.perforce.com.

More information

Table of Contents. Page 2 of 72. High Impact 4.0 User Manual

Table of Contents. Page 2 of 72. High Impact  4.0 User Manual Table of Contents Introduction 5 Installing High Impact email 6 Installation Location 6 Select Mail Client 6 Create a ReadyShare Account 6 Create a Default Profile 6 Outlook Configuration Message 6 Complete

More information

Microsoft Word: Steps To Success (The Bare Essentials)

Microsoft Word: Steps To Success (The Bare Essentials) Microsoft Word: Steps To Success (The Bare Essentials) Workbook by Joyce Kirst 2005 Microsoft Word: Step to Success (The Bare Essentials) Page Contents 1 Starting Word 2 Save 3 Exit 5 Toolbars, Alignment,

More information

Instructions for Using the Databases

Instructions for Using the Databases Appendix D Instructions for Using the Databases Two sets of databases have been created for you if you choose to use the Documenting Our Work forms. One set is in Access and one set is in Excel. They are

More information

New Finance Officer & Staff Training

New Finance Officer & Staff Training New Finance Officer & Staff Training Overview MUNIS includes many programs and tools to allow for the management of the District financials. As newer finance officers and staff, you are charged with understanding,

More information

Vision Pointer Tools

Vision Pointer Tools Vision Pointer Tools Pointer Tools - Uses Pointer Tools can be used in a variety of ways: during a Vision Demo to annotate on the master station s screen during a Remote Control session to annotate on

More information

Introduction to the SAS System

Introduction to the SAS System Introduction to the SAS System The SAS Environment The SAS Environment The SAS Environment has five main windows The SAS Environment The Program Editor The SAS Environment The Log: Notes, Warnings and

More information

Basic Concepts. Launching MultiAd Creator. To Create an Alias. file://c:\documents and Settings\Gary Horrie\Local Settings\Temp\~hh81F9.

Basic Concepts. Launching MultiAd Creator. To Create an Alias. file://c:\documents and Settings\Gary Horrie\Local Settings\Temp\~hh81F9. Page 1 of 71 This section describes several common tasks that you'll need to know in order to use Creator successfully. Examples include launching Creator and opening, saving and closing Creator documents.

More information

Increased Productivity Through The Use Of The Display Manager System Jim Anderson, Blue Cross Blue Shield of Nebraska

Increased Productivity Through The Use Of The Display Manager System Jim Anderson, Blue Cross Blue Shield of Nebraska Increased Productivity Through The Use Of The SAS@ Display Manager System Jim Anderson, Blue Cross Blue Shield of Nebraska Abstract The SAS Display Manager System provides an interactive, full screen option

More information

Site Owners: Cascade Basics. May 2017

Site Owners: Cascade Basics. May 2017 Site Owners: Cascade Basics May 2017 Page 2 Logging In & Your Site Logging In Open a browser and enter the following URL (or click this link): http://mordac.itcs.northwestern.edu/ OR http://www.northwestern.edu/cms/

More information

TI-SmartView Emulator Software for the TI-84 Plus Family (Windows and Macintosh )

TI-SmartView Emulator Software for the TI-84 Plus Family (Windows and Macintosh ) TI-SmartView Emulator Software for the TI-84 Plus Family (Windows and Macintosh ) Important Information Texas Instruments makes no warranty, either express or implied, including but not limited to any

More information

Introduction to CS Dealing with tables in Word Jacek Wiślicki, Laurent Babout,

Introduction to CS Dealing with tables in Word Jacek Wiślicki, Laurent Babout, Most word processors offer possibility to draw and format even very sophisticated tables. A table consists of rows and columns, forming cells. Cells can be split and merged together. Content of each cell

More information

SAS Data Libraries. Definition CHAPTER 26

SAS Data Libraries. Definition CHAPTER 26 385 CHAPTER 26 SAS Data Libraries Definition 385 Library Engines 387 Library Names 388 Physical Names and Logical Names (Librefs) 388 Assigning Librefs 388 Associating and Clearing Logical Names (Librefs)

More information

Objective 1: Familiarize yourself with basic database terms and definitions. Objective 2: Familiarize yourself with the Access environment.

Objective 1: Familiarize yourself with basic database terms and definitions. Objective 2: Familiarize yourself with the Access environment. Beginning Access 2007 Objective 1: Familiarize yourself with basic database terms and definitions. What is a Database? A Database is simply defined as a collection of related groups of information. Things

More information

StarTeam File Compare/Merge StarTeam File Compare/Merge Help

StarTeam File Compare/Merge StarTeam File Compare/Merge Help StarTeam File Compare/Merge 12.0 StarTeam File Compare/Merge Help Micro Focus 575 Anton Blvd., Suite 510 Costa Mesa, CA 92626 Copyright 2011 Micro Focus IP Development Limited. All Rights Reserved. Portions

More information

USER MANUAL. Version May 2015

USER MANUAL. Version May 2015 USER MANUAL Version 6.60 - May 2015 USER MANUAL IPBrowse 6.60 Disclaimer This manual and the information contained herein are the sole property of EVS Broadcast Equipment SA and/or its affiliates (EVS)

More information

Intro to Microsoft Word

Intro to Microsoft Word Intro to Microsoft Word A word processor is a computer program used to create and print text documents that might otherwise be prepared on a typewriter. The key advantage of a word processor is its ability

More information

Easy Windows Working with Disks, Folders, - and Files

Easy Windows Working with Disks, Folders, - and Files Easy Windows 98-3 - Working with Disks, Folders, - and Files Page 1 of 11 Easy Windows 98-3 - Working with Disks, Folders, - and Files Task 1: Opening Folders Folders contain files, programs, or other

More information

INTViewer Tutorial Cube Tutorial

INTViewer Tutorial Cube Tutorial INTViewer Tutorial Cube Tutorial This tutorial shows how to use INTViewer to display a seismic cube stored in a Seismic file. Windows created will include INLINE, XLINE, Time Slice and an arbitrary traverse,

More information