HAVE YOU EVER WISHED THAT YOU DO NOT NEED TO TYPE OR CHANGE REPORT NUMBERS AND TITLES IN YOUR SAS PROGRAMS?

Size: px
Start display at page:

Download "HAVE YOU EVER WISHED THAT YOU DO NOT NEED TO TYPE OR CHANGE REPORT NUMBERS AND TITLES IN YOUR SAS PROGRAMS?"

Transcription

1 HAVE YOU EVER WISHED THAT YOU DO NOT NEED TO TYPE OR CHANGE REPORT NUMBERS AND TITLES IN YOUR SAS PROGRAMS? Aileen L. Yam, PharmaNet, Inc., Princeton, NJ ABSTRACT In clinical research, the table of contents in a statistical analysis plan is an evolving document. The table of contents contains a list of tables, listings, appendices and figures that are referred to as reports in this paper. The report numbers and titles are subject to change when analysis requirements change. As a result, programmers need to renumber reports and retype titles in the SAS programs from time to time. This paper describes a programmatic approach of retrieving the report numbers and titles from a common source file. The common source file serves a dual purpose of generating a table of contents in a Microsoft Word document and outputting a SAS data set with report numbers and titles. Statisticians can incorporate the Word document as table of contents in a statistical analysis plan. Programmers can create macro variables from the SAS data set for use as titles in reports. During presentation, a demonstration will be given to show how you can make your wish come true. I. A COMMON SOURCE The goals are to generate a table of contents in a Microsoft Word document for a statistical analysis plan and to output a SAS data set containing the same report numbers and titles as in the Word document. To kill two birds with one stone, a common source is needed. The advantages of deriving a table of contents document and a SAS data set from a common source are: 1. initial data input and changes need to be made once only; 2. validation on spelling and wording needs to be done once only at the common source; 3. the report numbers and titles will be identical in both output; 4. programmers do not need to type or change report numbers and titles in SAS programs; 5. statisticians do not need to check the accuracy of titles on reports word for word. A logical choice appears to be using a word processing document as the common source, since statisticians normally enter the table of contents directly into a word processor, which, in my company, is Microsoft Word. But in order to extract report numbers and titles from a Word document into a SAS data set, precision and patterns are needed. Word documents allow tabs, return keys, spacing and styles in many different ways that are open to interpretations and allow chances for errors when translated into variables for SAS data sets. In Excel, tabs, return keys and spacing are defined by cells, so the standardization of individual styles are intrinsically built in. In addition, Excel has powerful macros and can serve as a good intermediate between Word and SAS software. Therefore, Excel is chosen as the origin of the common source file. If SAS/AF software is licensed at your site, similar ideas can be adapted to create the table of contents via SCL and OLE objects. The common source file is an Excel file that consists of variables for: 1. headers of each section in the table of contents; 2. types of report, such as Table, Patient Data Listing, Figure, or Appendix; 3. report numbers; 4. unique program identifications that distinguish among different reports within the same SAS

2 program, for example, a single program may contain output for Tables 3.1, 4.1, 5.1, etc. and each of these reports is assigned a unique name; 5. SAS program names; 6. titles. For convenience, the default number of title variables is designed as six, so there are six columns for titles. More title variables can be set up if needed. Usually, statisticians enter values for all but the fourth and the fifth variables. These two variables contain unique program identifications and SAS program names, that are supplied by programmers. The freeze pane feature in Excel is used to freeze the first 5 columns before the start of the title columns so that the frozen parts remain static and visible during scrolling and relative rows and columns can easily be identified when titles are entered. An Excel macro using Visual Basic for Applications (VBA) is written to reshape the information for outputting into a Word document with OLE, and also for outputting into a reformatted Excel file to generate a SAS data set. macro. In an earlier version of Word 95, the program stopped without completing, and the error message was: The command is not available because no document is open. Now the message becomes: Do you want to save the file? after the program finishes running. These messages do not convey the actual problem clearly. The problem is that both Word and Outlook use Word objects and the system is confused as to which document is the active document. Perhaps a description of my experience will help you remember to close all the Word and Outlook windows and files: I first developed these programs at home, and everything worked fine. But whenever the same program and test files were run at work, the error message appeared until one day I worked in the office on a Saturday. Before I started to test individual modules of the program to isolate the problem, I ran the whole program again and there was no error message. An idea then came to me that on weekdays, I always had Microsoft Outlook open to receive , while on Saturday, I did not open Microsoft Outlook and the program worked fine then. I tested this assumption and every time I did not have another Word document or Outlook open, the program worked. II. MAJOR ROADBLOCKS TO OVERCOME There were two major roadblocks: 1. Concatenation in Excel causes the vanishing of the Symbol font into a dominant font from the concatenated text. In other words, if the majority of the text that are to be concatenated from various cells have Arial font, while in only a few places where Symbol fonts are used for laboratory units, the font of the concatenated text string automatically turns into Arial. A solution is to detect and mark the use of Symbol font before concatenation occurs, and to revert the fonts, where marked, back to Symbol font after concatenation has taken place. Besides font changes, other formatting features such as superscript, subscript and underline also disappear after concatenation. The same solution is also applied to the formatting problems. This process slows down the program quite a bit because every character needs to be checked for the font or formats used. 2. When OLE automation is implemented to copy and format the file from Excel into Word, all open Microsoft Word and Microsoft Outlook applications need to be closed, otherwise a message will appear whenever there is a second reference to ActiveDocument in the Excel VBA III. EXCEL VISUAL BASIC MACRO A custom dialog box called UserForm is built for opening up a table of contents file created with an Excel template, and for selecting options on the kind of output file needed. Via the dialog box, statisticians and SAS programmers can use the Excel VBA macro as a software without having to know the mechanics behind the macro. When a table of contents file is open, the Excel VBA macro has logic to detect if the table of contents file has the correct data structure. The logic checks the first row of the table of contents file against the first row in a temporary worksheet in the Excel VBA macro. The first row in both files must contain the same variable names. The Excel VBA macro then ascertains the maximum number of rows and the maximum number of columns from the table of contents file, since the maximum numbers are different in each clinical study. The maximum numbers give the last row and the last column location of a cell. The location of the last row and the last column is important because Excel does not have a SELECT ALL command for copying and pasting. Once the last row and the last column are identified, the Excel VBA macro copies the table of contents into temporary worksheets for making

3 alterations programmatically before outputting to a Word document or to another Excel file. The initial plan was to allow entry of report numbers and titles into a common source file randomly, and to have the Excel VBA macro sort the report numbers once the data are copied into a temporary area. But because report numbers sometimes have numeric values and sometimes have character values, meaningful sort order cannot be obtained. For example, Prefaces A and B are interspersed between certain listings with numeric sequence numbers. In addition, sequence numbers with one decimal are considered numeric, while sequence numbers with more than one decimal are considered text. In other words, values such as 3.1 and 3.2 are numeric, whereas values such as and are text fields. Besides, reports are organized by sections that are subject to human judgment. So it is decided that the Excel VBA macro takes a what you enter is what you get approach. A. A WORD DOCUMENT FOR THE STATISTICAL ANSLYSIS PLAN Out of the six items listed under the first section of this paper, A Common Source, two columns remain. Items 1 to 3 are consolidated into the first column, with information on section headers, table types and report numbers. The six columns of titles are combined to form the second column. Dashes and spaces are put between the titles as separators. The bold font from the section headers is used to signal the centering of headers. The bold font can be retained by using the Paste Special option after copying since the text from the section headers do not go through concatenation. The Symbol font and the formats from titles, however, cannot be easily retained due to the concatenation problem with Excel mentioned earlier. The Symbol font and the formats are tracked down before concatenation occurs so that all the font and format changes that take place after concatenation can be reverted. Microsoft OLE is used to automate the transfer of the two columns of data from Excel to Word. Before the OLE module runs, it is important to close the Microsoft Word and Outlook applications due to the problem with reference to ActiveDocument mentioned earlier. In OLE to Word, the tasks are: to set the page margins and orientation; to clear default tab stops; to add left indent and first-line indent tab stops for the whole document; to center paragraphs for section headers that are bold; and to take off tab stops where there are underlines. If the tab stops are not removed, the underlines will continue to where the next tab stops are. B. AN EXCEL FILE FOR UPLOADING INTO A SAS DATA SET An intermediate Excel file is created from the Excel common source file. The intermediate Excel file is eventually imported into a SAS data set. The SAS data set is the hub for retrieving report numbers and titles. The intermediate Excel file includes all but the section header information. The Excel VBA macro deletes the rows and columns associated with section headers. Logic is written in the Excel VBA macro to add a column with sequence numbers to keep track of the order of the titles as entered, so that sorting can be done accordingly. Even though six columns are allowed for titles, not all the reports have six titles. The Excel VBA macro counts the actual number of titles in each report, and another column is added to hold the total number of non-blank titles. The total title counts will come in handy for creating a SAS macro variable for the Do Loop in a SAS program to retrieve titles. The Excel VBA macro adds double quotes to the beginning and the end of the title columns to avoid conflicts with macro quoting and reserved keywords when the titles become SAS macro variables. The Autofit method in Excel is used on all the columns in the entire intermediate Excel file. The Autofit method changes the width of columns for the best fit to make it easy for checking whether the program works correctly. C. EVENT AND ERROR HANDLING In Murphy s Law of Coding, we can always assume that something, somewhere, at some time can and will somehow go wrong. The final Excel VBA macro needs to be subjected to thorough testing to respond to specific events and to handle errors. Some of these event and error handlers are: validating whether the user has selected the correct table of contents file; asking for confirmation if the Quit button is selected; alerting the user to close Microsoft Word or Outlook before running the application; changing the appearance of the pointer from I-beam to hourglass when the macro is running and resetting the pointer to I-beam and notifying the user when the job is done.

4 Displaying messages to tell users to wait or to explain why problems occur make the program appear more graceful than leaving the program stall or stomp. IV. IMPORTING DATA FROM EXCEL INTO SAS The intermediate Excel file can be imported into a SAS data set with the Import Wizard in Base SAS software, with PROC ACCESS, or with DDE. The following SAS macro is an example of importing the Excel data file into a SAS data set with DDE: /******************************************************************** *mtocprog.sas - Converts Excel files into SAS data sets with * DDE * INPUT- INLS: defines the linesize of the input data set * PATH: full Excel path name, including directory * name(s), program name, sheet name, * row and column location, * e.g.: %str(excel F:\dirlevel1\dirlevel2 * \[toc_prog.xls]sheet1!r2c1:r180c11) * INXLDS: input Excel file name, e.g. toc_prog.xls * OUTLIB: output libname for the SAS data set * OUTDS: output SAS data set name * DSLABEL: label for output SAS data set * Programmer: Aileen Yam * NOTE 1: Must be used with BATCH SUBMIT and with the * Excel data file open. Because of BATCH SUBMIT, * a libname statement is needed, e.g.: * libname p123d '\\dirlevel1\dirlevel2\...\...'; * SASAUTOS is also needed: options * SASAUTOS=("\\dirlevel1\dirlevel2\...\..." sasautos); * NOTE 2: Default LRECL is ********************************************************************/ %macro mtocprog (inls=100,path=,inxlds=,outlib=, outds=,dslabel=); The NOXWAIT option closes the Excel application automatically when it finishes. The NOXSYNC option is used so that the SAS system does not wait for the application to finish to return to the SAS session. options ls=&inls pageno=1 noxwait noxsync; Invoke Excel, open the intermediate Table of Contents Excel file (TOC_PROG.XLS) and delay the execution of the SAS program for 5 seconds. filename toc dde "&path"; data _null_; x = sleep(5); The squiggles in front of the dollar signs are for preserving the double quotes around titles. data &outds; infile toc missover notab dlm='09'x dsd lrecl=1024; informat tabnum $50. progid $8. progname $8. ttitle1 ttitle2 ttitle3 ttitle4 ttitle5 ttitle6 $150.; input seqno tabnum ~$ progid $ progname $ ttitle1 ~$ ttitle2 ~$ ttitle3 ~$ ttitle4 ~$ ttitle5 ~$ ttitle6 ~$ numtitle; data &outlib..&outds(label="&dslabel"); attrib SEQNO length=8 format=best8. label='sequence NUMBER' TABNUM label='table NUMBER' PROGID label='unique PROGRAM ID' PROGNAME label='program NAME' TTITLE1 label='the FIRST TITLE' TTITLE2 label='the SECOND TITLE' TTITLE3 label='the THIRD TITLE' TTITLE4 label='the FOURTH TITLE' TTITLE5 label='the FIFTH TITLE' TTITLE6 label='the SIXTH TITLE' NUMTITLE length=8 format=best8. label='number OF TITLES' ; set &outds; proc contents data=&outlib..&outds; title "&outlib..&outds"; proc print data=&outlib..&outds; title "&outlib..&outds"; %mend mtocprog; V. SAS MACRO FOR OUTPUTTING REPORT NUMBERS AND TITLES FROM A SAS DATA SET After a SAS data set is created, the following SAS program is a way to put the report numbers and titles into SAS macro variables to be resolved as report numbers and titles in the output: /******************************************************************** * MTITLE.SAS - returns macro variables (&title1, * &title2,...) that contain titles * INPUT- TITLEDS: input data set consisting of report * numbers and titles * PROGID: unique program identification * Programmer: Aileen Yam ********************************************************************/ %macro mtitle(titleds=&derdata..toc_prog,progid=); If a specified unique program identification exists, put the total number of titles in a macro variable and output the observation into a working data set called toc_prog.

5 data toc_prog; set &titleds; if compress(progid)="&progid" then do; %global numtitle; call symput('numtitle',compress(numtitle)); output; end; If the working data set exists, create macro variables for use as titles, otherwise put question marks in titles. %global titlechk; %let titlechk=; %let dsid =%sysfunc(open(toc_prog)); %let titlechk=%sysfunc(attrn(&dsid,nobs)); %let rc =%sysfunc(close(&dsid)); %if &titlechk^=0 %then %do; data _null_; set toc_prog; %global title1; call symput('title1',trim(left(tabnum))); %do i= 1 %to &numtitle; %let j=%cmpres(%eval(&i+1)); %global title&j; call symput("title&j",trim(left(ttitle&i))); %end; %end; %else %do; %put WARNING: The PROGID &progid is not found; %global numtitle title1 title2; %let numtitle=1; %let title1="??????"; %let title2="??????"; %end; %mend mtitle; PROGID is the unique program identification. It is the key to retrieving the correct titles. A warning is provided if the PROGID is not found, and the titles are temporarily padded with question marks. Sometimes footnote-related symbols are needed in the titles of reports, but not in the table of contents. Here are examples to add a footnoterelated symbol such as a pound sign to a title that is retrieved from the SAS data set: data _null_; xtitle2='"' compress(&title2,'"') '#"'; call symput('title2',xtitle2); or %let title2=%substr(&title2, 2, %eval(%length(&title2) - 2)); %let title2= &title2# ; Occasionally, you may want to take out the double quotes in the titles. Here is an example to remove the double quotes: %let title1=%substr(&title1, 2, %eval(%length(&title1) -2)); VI. SUMMARY This paper shows how to extend SAS programming expertise into new areas, and build integrated solutions with SAS software and Microsoft Office software. This is one of a series of papers on the integration of SAS software with Visual Basic for Applications. Please see references below for details on related papers. REFERENCES Yam, Aileen L. (2000), Integrating SAS Software with Microsoft Visual Basic for Applications to Mass- Produce Customized PowerPoint Graphs, PharmaSUG 2000 Conference Proceedings, Yam, Aileen L. (2000), SAS Software and Microsoft Visual Basic for Applications Make Beautiful Reports Together, Proceedings of the Twenty-Fifth Annual SAS Users Group International Conference, 25, Yam, Aileen L. (1999), Automating the Production of Customized PowerPoint Presentation Graphs by Integrating the Functionality of SAS Software with Microsoft Visual Basic for Applications, Proceedings of the Twenty-Fourth Annual SAS Users Group International Conference, 24, SAS, SAS/AF are registered trademark or trademark 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. For additional information, contact: Aileen L. Yam PharmaNet, Inc. 504 Carnegie Center Princeton, NJ

6

A Macro to Keep Titles and Footnotes in One Place

A Macro to Keep Titles and Footnotes in One Place CC25 ABSTRACT A Macro to Keep Titles and Footnotes in One Place John Morrill, Quintiles, Inc., Kansas City, MO A large project with titles and footnotes in each separate program can be cumbersome to maintain.

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

Using Dynamic Data Exchange

Using Dynamic Data Exchange 145 CHAPTER 8 Using Dynamic Data Exchange Overview of Dynamic Data Exchange 145 DDE Syntax within SAS 145 Referencing the DDE External File 146 Determining the DDE Triplet 146 Controlling Another Application

More information

Reading and Writing Data from Microsoft Excel/Word Using DDE

Reading and Writing Data from Microsoft Excel/Word Using DDE Reading and Writing Data from Microsoft Excel/Word Using DDE The DDE Triplet is then incorporated into a Filename statement of the following form: FILENAME fileref DDE 'DDE-Triplet' 'CLIPBOARD' ;

More information

Use That SAP to Write Your Code Sandra Minjoe, Genentech, Inc., South San Francisco, CA

Use That SAP to Write Your Code Sandra Minjoe, Genentech, Inc., South San Francisco, CA Paper DM09 Use That SAP to Write Your Code Sandra Minjoe, Genentech, Inc., South San Francisco, CA ABSTRACT In this electronic age we live in, we usually receive the detailed specifications from our biostatistician

More information

THE EXCEL ENVIRONMENT... 1 EDITING...

THE EXCEL ENVIRONMENT... 1 EDITING... Excel Essentials TABLE OF CONTENTS THE EXCEL ENVIRONMENT... 1 EDITING... 1 INSERTING A COLUMN... 1 DELETING A COLUMN... 1 INSERTING A ROW... DELETING A ROW... MOUSE POINTER SHAPES... USING AUTO-FILL...

More information

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum)

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Manually adjust column width Place the pointer on the line between letters in the Column Headers. The pointer will change to double headed arrow. Hold

More information

SESUG Paper AD A SAS macro replacement for Dynamic Data Exchange (DDE) for use with SAS grid

SESUG Paper AD A SAS macro replacement for Dynamic Data Exchange (DDE) for use with SAS grid SESUG Paper AD-109-2017 A macro replacement for Dynamic Data Exchange (DDE) for use with grid ABSTRACT Saki Kinney, David Wilson, and Benjamin Carper, RTI International The ability to write to specific

More information

Chapter 2: Getting Data Into SAS

Chapter 2: Getting Data Into SAS Chapter 2: Getting Data Into SAS Data stored in many different forms/formats. Four categories of ways to read in data. 1. Entering data directly through keyboard 2. Creating SAS data sets from raw data

More information

DOCUMENTATION CHANGE NOTICE

DOCUMENTATION CHANGE NOTICE DOCUMENTATION CHANGE NOTICE Product/Manual: WORDPERFECT 5.1 WORKBOOK Manual(s) Dated: 12/90, 6/91 and 8/91 Machines: IBM PC and Compatibles This file documents all change made to the documentation since

More information

Microsoft Excel 2010 Tutorial

Microsoft Excel 2010 Tutorial 1 Microsoft Excel 2010 Tutorial Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze data and

More information

1: Getting Started with Microsoft Excel

1: Getting Started with Microsoft Excel 1: Getting Started with Microsoft Excel The Workspace 1 Menu commands 2 Toolbars 3 Cell References 4 Cell Entries 4 Formatting 5 Saving and Opening Workbook Files 7 The Workspace Figure 1 shows the Microsoft

More information

Using DDE with Microsoft Excel and SAS to Collect Data from Hundreds of Users

Using DDE with Microsoft Excel and SAS to Collect Data from Hundreds of Users Using DDE with Microsoft Excel and SAS to Collect Data from Hundreds of Users Russell Denslow and Yan Li Sodexho Marriott Services, Orlando, FL ABSTRACT A process is demonstrated in this paper to automatically

More information

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum)

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Select a Row or a Column Place your pointer over the Column Header (gray cell at the top of a column that contains a letter identifying the column)

More information

Jennifer Clegg and Carol Rigsbee, SAS Institute Inc., Cary, NC

Jennifer Clegg and Carol Rigsbee, SAS Institute Inc., Cary, NC OLE and the SAS System for Windows Release 6.12 Jennifer Clegg and Carol Rigsbee, SAS Institute Inc., Cary, NC ABSTRACT This paper describes the OLE support within the SAS System for Windows Release 6.12.

More information

EXCEL CONNECT USER GUIDE

EXCEL CONNECT USER GUIDE USER GUIDE Developed and published by Expedience Software Copyright 2012-2017 Expedience Software Excel Connect Contents About this Guide... 1 The Style Palette User Guide 1 Excel Connect Overview... 2

More information

Formatting a Report with Word 2010

Formatting a Report with Word 2010 Formatting a Report with Word 2010 The basics Although you can use Word to do a great many formatting tasks, here we will concentrate on the basic requirements for good presentation of a report. These

More information

Creating Your Own Worksheet Formats in exporttoxl

Creating Your Own Worksheet Formats in exporttoxl SIB-103 Creating Your Own Worksheet Formats in exporttoxl Nathaniel Derby, Statis Pro Data Analytics, Seattle, WA ABSTRACT %exporttoxl is a freely available SAS R macro which allows the user to create

More information

Excel Select a template category in the Office.com Templates section. 5. Click the Download button.

Excel Select a template category in the Office.com Templates section. 5. Click the Download button. Microsoft QUICK Excel 2010 Source Getting Started The Excel Window u v w z Creating a New Blank Workbook 2. Select New in the left pane. 3. Select the Blank workbook template in the Available Templates

More information

13 FORMATTING WORKSHEETS

13 FORMATTING WORKSHEETS 13 FORMATTING WORKSHEETS 13.1 INTRODUCTION Excel has a number of formatting options to give your worksheets a polished look. You can change the size, colour and angle of fonts, add colour to the borders

More information

Formatting Worksheets

Formatting Worksheets 140 :: Data Entry Operations 7 Formatting Worksheets 7.1 INTRODUCTION Excel makes available numerous formatting options to give your worksheet a polished look. You can change the size, colour and angle

More information

Program Validation: Logging the Log

Program Validation: Logging the Log Program Validation: Logging the Log Adel Fahmy, Symbiance Inc., Princeton, NJ ABSTRACT Program Validation includes checking both program Log and Logic. The program Log should be clear of any system Error/Warning

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Formatting a spreadsheet means changing the way it looks to make it neater and more attractive. Formatting changes can include modifying number styles, text size and colours. Many

More information

Introduction to Microsoft Word 2007 Prepared by:

Introduction to Microsoft Word 2007 Prepared by: Introduction to Microsoft Word 2007 Prepared by: INSTITUTE for ADVANCED STUDY IAS Information Technology Group Einstein Drive, Princeton, NJ 08540 10/28/08 2 TABLE OF CONTENTS INTRODUCTION... 6 GETTING

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 2016 INTERMEDIATE Page 1. Word 2016 Intermediate. North American Edition SAMPLE

WORD 2016 INTERMEDIATE Page 1. Word 2016 Intermediate. North American Edition SAMPLE Word 2016 Intermediate WORD 2016 INTERMEDIATE Page 1 Word 2016 Intermediate North American Edition 2015 Cheltenham Group Pty. Ltd. - www.cheltenhamcourseware.com WORD 2016 INTERMEDIATE Page 2 2015 Cheltenham

More information

TABLE OF CONTENTS. i Excel 2016 Basic

TABLE OF CONTENTS. i Excel 2016 Basic i TABLE OF CONTENTS TABLE OF CONTENTS I PREFACE VII 1 INTRODUCING EXCEL 1 1.1 Starting Excel 1 Starting Excel using the Start button in Windows 1 1.2 Screen components 2 Tooltips 3 Title bar 4 Window buttons

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

Using GSUBMIT command to customize the interface in SAS Xin Wang, Fountain Medical Technology Co., ltd, Nanjing, China

Using GSUBMIT command to customize the interface in SAS Xin Wang, Fountain Medical Technology Co., ltd, Nanjing, China PharmaSUG China 2015 - Paper PO71 Using GSUBMIT command to customize the interface in SAS Xin Wang, Fountain Medical Technology Co., ltd, Nanjing, China One of the reasons that SAS is widely used as the

More information

for secondary school teachers & administrators

for secondary school teachers & administrators for secondary school teachers & administrators 2b: presenting worksheets effectively Contents Page Workshop 2B: Presenting Worksheets Effectively 1 2.1 The Formatting Toolbar 2.1.1 The Format Cells Dialogue

More information

SAS2VBA2SAS: Automated solution to string truncation in PROC IMPORT Amarnath Vijayarangan, Genpact, India

SAS2VBA2SAS: Automated solution to string truncation in PROC IMPORT Amarnath Vijayarangan, Genpact, India PharmaSUG China 2014 - Paper PO08 SAS2VBA2SAS: Automated solution to string truncation in PROC IMPORT Amarnath Vijayarangan, Genpact, India ABSTRACT SAS PROC IMPORT is one of the most commonly and widely

More information

A SAS Macro Utility to Modify and Validate RTF Outputs for Regional Analyses Jagan Mohan Achi, PPD, Austin, TX Joshua N. Winters, PPD, Rochester, NY

A SAS Macro Utility to Modify and Validate RTF Outputs for Regional Analyses Jagan Mohan Achi, PPD, Austin, TX Joshua N. Winters, PPD, Rochester, NY PharmaSUG 2014 - Paper BB14 A SAS Macro Utility to Modify and Validate RTF Outputs for Regional Analyses Jagan Mohan Achi, PPD, Austin, TX Joshua N. Winters, PPD, Rochester, NY ABSTRACT Clinical Study

More information

Microsoft Excel 2010

Microsoft Excel 2010 Microsoft Excel 2010 omar 2013-2014 First Semester 1. Exploring and Setting Up Your Excel Environment Microsoft Excel 2010 2013-2014 The Ribbon contains multiple tabs, each with several groups of commands.

More information

Since its earliest days about 14 years ago Access has been a relational

Since its earliest days about 14 years ago Access has been a relational Storing and Displaying Data in Access Since its earliest days about 14 years ago Access has been a relational database program, storing data in tables and using its own queries, forms, and reports to sort,

More information

Microsoft Word Advanced Skills

Microsoft Word Advanced Skills It s all about readability. Making your letter, report, article or whatever, easy and less taxing to read. Who wants to read page after page of boring text the same font, the same size, separated only

More information

Lesson 19 Organizing and Enhancing Worksheets

Lesson 19 Organizing and Enhancing Worksheets Organizing and Enhancing Worksheets Computer Literacy BASICS: A Comprehensive Guide to IC 3, 5 th Edition 1 Objectives Hide, show, and freeze columns and rows. Create, rename, and delete worksheets. Change

More information

ODS/RTF Pagination Revisit

ODS/RTF Pagination Revisit PharmaSUG 2018 - Paper QT-01 ODS/RTF Pagination Revisit Ya Huang, Halozyme Therapeutics, Inc. Bryan Callahan, Halozyme Therapeutics, Inc. ABSTRACT ODS/RTF combined with PROC REPORT has been used to generate

More information

Table of Contents. Preface... iii COMPUTER BASICS WINDOWS XP

Table of Contents. Preface... iii COMPUTER BASICS WINDOWS XP Table of Contents Preface... iii COMPUTER BASICS Fundamentals of Computer 1 Various Types of Computers 2 Personal Computer 2 Personal Digital Assistant 3 Laptop Computer 3 Tablet PC 3 Main Frame Computer

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

Table of Contents. Word. Using the mouse wheel 39 Moving the insertion point using the keyboard 40 Resume reading 41

Table of Contents. Word. Using the mouse wheel 39 Moving the insertion point using the keyboard 40 Resume reading 41 Table of Contents iii Table of Contents Word Starting Word What is word processing? 2 Starting Word 2 Exploring the Start screen 4 Creating a blank document 4 Exploring the Word document window 5 Exploring

More information

Final Graded Project. Advanced PC Applications

Final Graded Project. Advanced PC Applications Final Graded Project Advanced PC Applications INTRODUCTION 1 SCENARIO 1 YOUR TASK 2 PART 1: CREATING YOUR ACCESS DATABASE 2 PART 2: CREATING YOUR EXCEL WORKSHEETS 3 PART 3: CREATING YOUR POWERPOINT PRESENTATION

More information

MICROSOFT WORD 2010 Quick Reference Guide

MICROSOFT WORD 2010 Quick Reference Guide MICROSOFT WORD 2010 Quick Reference Guide Word Processing What is Word Processing? How is Word 2010 different from previous versions? Using a computer program, such as Microsoft Word, to create and edit

More information

Excel 2013 Beyond TheBasics

Excel 2013 Beyond TheBasics Excel 2013 Beyond TheBasics INSTRUCTOR: IGNACIO DURAN Excel 2013 Beyond The Basics This is a class for beginning computer users. You are only expected to know how to use the mouse and keyboard, open a

More information

San Pedro Junior College. WORD PROCESSING (Microsoft Word 2016) Week 4-7

San Pedro Junior College. WORD PROCESSING (Microsoft Word 2016) Week 4-7 WORD PROCESSING (Microsoft Word 2016) Week 4-7 Creating a New Document In Word, there are several ways to create new document, open existing documents, and save documents: Click the File menu tab and then

More information

Word Select New in the left pane. 3. Select Blank document in the Available Templates pane. 4. Click the Create button.

Word Select New in the left pane. 3. Select Blank document in the Available Templates pane. 4. Click the Create button. Microsoft QUICK Word 2010 Source Getting Started The Word Window u v w x z Opening a Document 2. Select Open in the left pane. 3. In the Open dialog box, locate and select the file you want to open. 4.

More information

Microsoft Word Tutorial

Microsoft Word Tutorial Microsoft Word Tutorial 1 GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

B.V. Patel Institute of Business Management, Computer & Information Technology, Uka Tarsadia University : Advanced Applications of MS-Office

B.V. Patel Institute of Business Management, Computer & Information Technology, Uka Tarsadia University : Advanced Applications of MS-Office Unit-1 MS-WORD Answer the following. (1 mark) 1. Which submenu contains the watermark option? 2. Which is used for the Cell merge in the table? 3. Which option creates a large capital letter at the beginning

More information

Basic Microsoft Excel 2007

Basic Microsoft Excel 2007 Basic Microsoft Excel 2007 Contents Starting Excel... 2 Excel Window Properties... 2 The Ribbon... 3 Tabs... 3 Contextual Tabs... 3 Dialog Box Launchers... 4 Galleries... 5 Minimizing the Ribbon... 5 The

More information

Check the spelling of the worksheet by using Excel s spelling check feature.

Check the spelling of the worksheet by using Excel s spelling check feature. L E S S O N 6 Printing a worksheet Suggested teaching time 40-50 minutes Lesson objectives To prepare a worksheet for printing, you will: a b c d Check the spelling of the worksheet by using Excel s spelling

More information

Microsoft Excel 2007 Macros and VBA

Microsoft Excel 2007 Macros and VBA Microsoft Excel 2007 Macros and VBA With the introduction of Excel 2007 Microsoft made a number of changes to the way macros and VBA are approached. This document outlines these special features of Excel

More information

The American University in Cairo. Academic Computing Services. Word prepared by. Soumaia Ahmed Al Ayyat

The American University in Cairo. Academic Computing Services. Word prepared by. Soumaia Ahmed Al Ayyat The American University in Cairo Academic Computing Services Word 2000 prepared by Soumaia Ahmed Al Ayyat Spring 2001 Table of Contents: Opening the Word Program Creating, Opening, and Saving Documents

More information

The Output Bundle: A Solution for a Fully Documented Program Run

The Output Bundle: A Solution for a Fully Documented Program Run Paper AD05 The Output Bundle: A Solution for a Fully Documented Program Run Carl Herremans, MSD (Europe), Inc., Brussels, Belgium ABSTRACT Within a biostatistics department, it is required that each statistical

More information

Conditional Formatting

Conditional Formatting Microsoft Excel 2013: Part 5 Conditional Formatting, Viewing, Sorting, Filtering Data, Tables and Creating Custom Lists Conditional Formatting This command can give you a visual analysis of your raw data

More information

Getting Started Guide. Chapter 3 Using Styles and Templates

Getting Started Guide. Chapter 3 Using Styles and Templates Getting Started Guide Chapter 3 Using Styles and Templates Copyright This document is Copyright 2005 2009 by its contributors as listed in the section titled Authors. You may distribute it and/or modify

More information

Microsoft Word 2003 for Windows, Part 2

Microsoft Word 2003 for Windows, Part 2 Microsoft Word 2003 for Windows, Part 2 In this workshop, the following Word 2003 features will be covered: Creating and using Tables Formatting text using Styles Using MailMerge Arranging text in Columns

More information

Document Formatting with Word

Document Formatting with Word This activity will introduce you to some common tasks that you ll be doing throughout the semester. Specifically, it will show you how to format your documents in the standard document format. By learning

More information

PART 7. Getting Started with Excel

PART 7. Getting Started with Excel PART 7 Getting ed with Excel When you start the application, Excel displays a blank workbook. A workbook is a file in which you store your data, similar to a three-ring binder. Within a workbook are worksheets,

More information

Step 1: Prepare the worksheet data in Excel for the mail merge You can FT Menu Prompt # 1 R for Report.

Step 1: Prepare the worksheet data in Excel for the mail merge You can FT Menu Prompt # 1 R for Report. Creating Address Labels from Microsoft Word Mail Merge If you want to send a mass mailing to an address list that you maintain in a Microsoft Office Excel worksheet, you can use a Microsoft Office Word

More information

Word for Research Writing I: Text and Structure

Word for Research Writing I: Text and Structure Word for Research Writing I: Text and Structure Last updated: 10/2017 Shari Hill Sweet dteditor@nd.edu or 631-7545 1. The Graduate School Template...1 1.1 Document structure... 1 1.1.1 Beware of Section

More information

Part II: Creating Visio Drawings

Part II: Creating Visio Drawings 128 Part II: Creating Visio Drawings Figure 5-3: Use any of five alignment styles where appropriate. Figure 5-4: Vertical alignment places your text at the top, bottom, or middle of a text block. You could

More information

Run your reports through that last loop to standardize the presentation attributes

Run your reports through that last loop to standardize the presentation attributes PharmaSUG2011 - Paper TT14 Run your reports through that last loop to standardize the presentation attributes Niraj J. Pandya, Element Technologies Inc., NJ ABSTRACT Post Processing of the report could

More information

Introduction to Microsoft Word 2010

Introduction to Microsoft Word 2010 CDU Short Courses Introduction to Microsoft Word 2010 A 2 day course delivered by Charles Darwin University. COURSE INFORMATION This course focuses on basic document production using Microsoft Word 2010

More information

Sending SAS Data Sets and Output to Microsoft Excel

Sending SAS Data Sets and Output to Microsoft Excel SESUG Paper CC-60-2017 Sending SAS Data Sets and Output to Microsoft Excel Imelda C. Go, South Carolina Department of Education, Columbia, SC ABSTRACT For many of us, using SAS and Microsoft Excel together

More information

Contents. Project One. Introduction to Microsoft Windows XP and Office Creating and Editing a Word Document. Microsoft Word 2003

Contents. Project One. Introduction to Microsoft Windows XP and Office Creating and Editing a Word Document. Microsoft Word 2003 FM TBBBB 39909 10/27/06 4:06 PM Page iii Contents FMTOC TBBBB 39909 Page iii 10/20/06 MD Preface To the Student Introduction to Microsoft Windows XP and Office 2003 ix xiv Objectives WIN 4 Introduction

More information

Excel 2007 New Features Table of Contents

Excel 2007 New Features Table of Contents Table of Contents Excel 2007 New Interface... 1 Quick Access Toolbar... 1 Minimizing the Ribbon... 1 The Office Button... 2 Format as Table Filters and Sorting... 2 Table Tools... 4 Filtering Data... 4

More information

Building Sequential Programs for a Routine Task with Five SAS Techniques

Building Sequential Programs for a Routine Task with Five SAS Techniques ABSTRACT SESUG Paper BB-139-2017 Building Sequential Programs for a Routine Task with Five SAS Techniques Gongmei Yu and Paul LaBrec, 3M Health Information Systems. When a task needs to be implemented

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

Exsys RuleBook Selector Tutorial. Copyright 2004 EXSYS Inc. All right reserved. Printed in the United States of America.

Exsys RuleBook Selector Tutorial. Copyright 2004 EXSYS Inc. All right reserved. Printed in the United States of America. Exsys RuleBook Selector Tutorial Copyright 2004 EXSYS Inc. All right reserved. Printed in the United States of America. This documentation, as well as the software described in it, is furnished under license

More information

Section 3 Formatting

Section 3 Formatting Section 3 Formatting ECDL 5.0 Section 3 Formatting By the end of this Section you should be able to: Apply Formatting, Text Effects and Bullets Use Undo and Redo Change Alignment and Spacing Use Cut, Copy

More information

SAS 101. Based on Learning SAS by Example: A Programmer s Guide Chapter 21, 22, & 23. By Tasha Chapman, Oregon Health Authority

SAS 101. Based on Learning SAS by Example: A Programmer s Guide Chapter 21, 22, & 23. By Tasha Chapman, Oregon Health Authority SAS 101 Based on Learning SAS by Example: A Programmer s Guide Chapter 21, 22, & 23 By Tasha Chapman, Oregon Health Authority Topics covered All the leftovers! Infile options Missover LRECL=/Pad/Truncover

More information

Excel 2016 for Mac Financial Analysis with Microsoft Excel, 8 th Edition Mac User Guide

Excel 2016 for Mac Financial Analysis with Microsoft Excel, 8 th Edition Mac User Guide Excel 2016 for Mac Financial Analysis with Microsoft Excel, 8 th Edition Mac User Guide Unfortunately, Mac users of Microsoft Office don t have 100% compatibility with the Windows version. However, the

More information

Using SAS to Control the Post Processing of Microsoft Documents Nat Wooding, J. Sargeant Reynolds Community College, Richmond, VA

Using SAS to Control the Post Processing of Microsoft Documents Nat Wooding, J. Sargeant Reynolds Community College, Richmond, VA Using SAS to Control the Post Processing of Microsoft Documents Nat Wooding, J. Sargeant Reynolds Community College, Richmond, VA Chen, SUGI 31, showed how to use SAS and VBA to automate the post processing

More information

Word for Research Writing I: Text and Structure

Word for Research Writing I: Text and Structure Word for Research Writing I: Text and Structure Last updated: 12/2017 Shari Hill Sweet dteditor@nd.edu or 631-7545 1. The Graduate School Template... 1 1.1 Document structure... 1 1.1.1 Beware of Section

More information

Using Microsoft Word. Table of Contents

Using Microsoft Word. Table of Contents Using Microsoft Word Table of Contents The Word Screen... 2 Document View Buttons... 2 Selecting Text... 3 Using the Arrow Keys... 3 Using the Mouse... 3 Line Spacing... 4 Paragraph Alignment... 4 Show/Hide

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

Office of Instructional Technology

Office of Instructional Technology Office of Instructional Technology Microsoft Excel 2016 Contact Information: 718-254-8565 ITEC@citytech.cuny.edu Contents Introduction to Excel 2016... 3 Opening Excel 2016... 3 Office 2016 Ribbon... 3

More information

Microsoft Excel for Lawyers - The Fundamentals Reference Guide

Microsoft Excel for Lawyers - The Fundamentals Reference Guide Microsoft Excel for Lawyers - The Fundamentals Reference Guide This guide includes step by step procedures for fundamental Excel commands and accompanies the Microsoft Excel for Lawyers -The Fundamentals

More information

Moving Data and Results Between SAS and Excel. Harry Droogendyk Stratia Consulting Inc.

Moving Data and Results Between SAS and Excel. Harry Droogendyk Stratia Consulting Inc. Moving Data and Results Between SAS and Excel Harry Droogendyk Stratia Consulting Inc. Introduction SAS can read ( and write ) anything Introduction In the end users want EVERYTHING in. Introduction SAS

More information

Rich Text Editor Quick Reference

Rich Text Editor Quick Reference Rich Text Editor Quick Reference Introduction Using the rich text editor is similar to using a word processing application such as Microsoft Word. After data is typed into the editing area it can be formatted

More information

Working with Tables in Word 2010

Working with Tables in Word 2010 Working with Tables in Word 2010 Table of Contents INSERT OR CREATE A TABLE... 2 USE TABLE TEMPLATES (QUICK TABLES)... 2 USE THE TABLE MENU... 2 USE THE INSERT TABLE COMMAND... 2 KNOW YOUR AUTOFIT OPTIONS...

More information

Setting Up Your Dissertation Format Using MS Word2000. Overview of the Process

Setting Up Your Dissertation Format Using MS Word2000. Overview of the Process Setting Up Your Dissertation Format Using MS Word2000 This procedure assumes that you are familiar with the basics of using MS Word2000. It uses the more advanced features of Styles, Table of Contents,

More information

SUM, AVERAGE, MEDIAN, MIN,

SUM, AVERAGE, MEDIAN, MIN, Lab 3 Activity Name Demonstration Notes Objective 12: Use the SUM, AVERAGE, MEDIAN, MIN, and MAX Functions 5.25 Using the SUM and AVERAGE Functions 5.26 Using the MEDIAN Function Start Excel. Open goaio_1e_08c_script_data.xlsx.

More information

Excel Tutorial 1

Excel Tutorial 1 IT٢.we Excel 2003 - Tutorial 1 Spreadsheet Basics Screen Layout Title bar Menu bar Standard Toolbar Other Tools Task Pane Adding and Renaming Worksheets Modifying Worksheets Moving Through Cells Adding

More information

You can clear the sample data from the table by selecting the table and pressing Delete.

You can clear the sample data from the table by selecting the table and pressing Delete. Making Quick Tables Choose Insert tab. Then click Table. Then click Quick Tables. Select the style of table from the Quick Tables Gallery. You can clear the sample data from the table by selecting the

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

Lecture- 5. Introduction to Microsoft Excel

Lecture- 5. Introduction to Microsoft Excel Lecture- 5 Introduction to Microsoft Excel The Microsoft Excel Window Microsoft Excel is an electronic spreadsheet. You can use it to organize your data into rows and columns. You can also use it to perform

More information

Getting Started Guide. Chapter 3 Using Styles and Templates

Getting Started Guide. Chapter 3 Using Styles and Templates Getting Started Guide Chapter 3 Using Styles and Templates Copyright This document is Copyright 2010 by its contributors as listed below. You may distribute it and/or modify it under the terms of either

More information

Getting Acquainted with Office 2007 Table of Contents

Getting Acquainted with Office 2007 Table of Contents Table of Contents Using the New Interface... 1 The Office Button... 1 The Ribbon... 2 Galleries... 2 Microsoft Help with Changes... 2 Viewing Familiar Dialog Boxes... 2 Download Get Started Tabs from Microsoft...

More information

Application of Skills: Microsoft Excel 2013 Tutorial

Application of Skills: Microsoft Excel 2013 Tutorial Application of Skills: Microsoft Excel 2013 Tutorial Throughout this module, you will progress through a series of steps to create a spreadsheet for sales of a club or organization. You will continue to

More information

Lesson 14 Final Exam Project Directions CIS105 Survey of Computer Information Systems

Lesson 14 Final Exam Project Directions CIS105 Survey of Computer Information Systems Lesson 14 Final Exam Project Directions CIS105 Survey of Computer Information Systems OVERVIEW For your At-Home Final Exam Part 1: Project, you must complete all four sections using Microsoft Word, PowerPoint,

More information

Open Book Format.docx. Headers and Footers. Microsoft Word Part 3 Office 2016

Open Book Format.docx. Headers and Footers. Microsoft Word Part 3 Office 2016 Microsoft Word Part 3 Office 2016 Open Book Format.docx Headers and Footers If your document has a page number, you already have a header or footer (and can double click on it to open it). If you did not

More information

SAP BusinessObjects Live Office User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2

SAP BusinessObjects Live Office User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2 SAP BusinessObjects Live Office User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2 Copyright 2013 SAP AG or an SAP affiliate company. All rights reserved. No part of this

More information

Use mail merge to create and print letters and other documents

Use mail merge to create and print letters and other documents Use mail merge to create and print letters and other documents Contents Use mail merge to create and print letters and other documents... 1 Set up the main document... 1 Connect the document to a data

More information

Microsoft Excel Important Notice

Microsoft Excel Important Notice Microsoft Excel 2013 Important Notice All candidates who follow an ICDL/ECDL course must have an official ICDL/ECDL Registration Number (which is proof of your Profile Number with ICDL/ECDL and will track

More information

File Triage. Work Smarter in Word, Excel, & PowerPoint. Neil Malek, MCT-ACI-CTT+

File Triage. Work Smarter in Word, Excel, & PowerPoint. Neil Malek, MCT-ACI-CTT+ Neil Malek, MCT-ACI-CTT+ Founder and Principal, Knack Training neil@knacktraining.com http://knacktraining.com File Triage Work Smarter in Word, Excel, & PowerPoint Microsoft Word 2 Terminology Style:

More information

Division of School Facilities

Division of School Facilities Division of School Facilities Module 3 EXCEL HIDE/ FILTER/ SORT & PRINT New York City Department of Education Office of Enterprise Development and Support Applications Support Group 2011 TABLE of CONTENTS

More information

Paper ###-YYYY. SAS Enterprise Guide: A Revolutionary Tool! Jennifer First, Systems Seminar Consultants, Madison, WI

Paper ###-YYYY. SAS Enterprise Guide: A Revolutionary Tool! Jennifer First, Systems Seminar Consultants, Madison, WI Paper ###-YYYY SAS Enterprise Guide: A Revolutionary Tool! Jennifer First, Systems Seminar Consultants, Madison, WI ABSTRACT Whether you are a novice or a pro with SAS, Enterprise Guide has something for

More information

Getting Started Guide. Chapter 3 Using Styles and Templates

Getting Started Guide. Chapter 3 Using Styles and Templates Getting Started Guide Chapter 3 Using Styles and Templates Copyright This document is Copyright 2010 2013 by its contributors as listed below. You may distribute it and/or modify it under the terms of

More information

COMPUTER APPLICATIONS TECHNOLOGY

COMPUTER APPLICATIONS TECHNOLOGY COMPUTER APPLICATIONS TECHNOLOGY Practical Skillsets required per application per grade Taken from CAPS Computer Applications Technology Practical skillsets required per application per grade (according

More information

Events User Guide for Microsoft Office Live Meeting from Global Crossing

Events User Guide for Microsoft Office Live Meeting from Global Crossing for Microsoft Office Live Meeting from Global Crossing Contents Events User Guide for... 1 Microsoft Office Live Meeting from Global Crossing... 1 Contents... 1 Introduction... 2 About This Guide... 2

More information