Creating Raw Data Files Using SAS. Transcript

Size: px
Start display at page:

Download "Creating Raw Data Files Using SAS. Transcript"

Transcription

1 Creating Raw Data Files Using SAS Transcript

2 Creating Raw Data Files Using SAS Transcript was developed by Mike Kalt. Additional contributions were made by Michele Ensor, Mark Jordan, Kathy Passarella, and Cynthia Zender. Editing and production support was provided by the Curriculum Development and Support Department. 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. Creating Raw Data Files Using SAS Transcript Copyright 2009 SAS Institute Inc. Cary, NC, USA. All rights reserved. Printed in the United States of America. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, or otherwise, without the prior written permission of the publisher, SAS Institute Inc. Book code E1388, course code RLSPFPUT, prepared date 20Mar2009. RLSPFPUT_001 ISBN

3 For Your Information iii Table of Contents Lecture Description... iv Prerequisites... v Creating Raw Data Files Using SAS Overview Creating Raw Data Files Using the EXPORT Procedure Creating Raw Data Files Using the Output Delivery System Creating Raw Data Files Using the DATA Step Summary... 80

4 iv For Your Information Lecture Description This lecture shows how to create raw data files from SAS data sets. You learn how to recognize the structure of different types of raw data files, use the EXPORT procedure to create raw files, use the ODS CSVALL statement to create raw files from SAS procedure output, and use FILE and PUT statements in the DATA step to create raw files. To learn more For information on other courses in the curriculum, contact the SAS Education Division at , or send to You can also find this information on the Web at support.sas.com/training/ as well as in the Training Course Catalog. For a list of other SAS books that relate to the topics covered in this Course Notes, USA customers can contact our SAS Publishing Department at or send to sasbook@sas.com. Customers outside the USA, please contact your local SAS office. Also, see the Publications Catalog on the Web at support.sas.com/pubs for a complete list of books and a convenient order form.

5 For Your Information v Prerequisites Before listening to this lecture, you should be familiar with the DATA step, the PRINT procedure, and FILE and PUT statement syntax. You should also understand IF-THEN/ELSE logic, and be able to view raw data using text editors. You can gain this knowledge by completing the SAS Programming 1: Essentials course.

6 vi For Your Information

7 Creating Raw Data Files Using SAS 1. Overview Creating Raw Data Files Using the EXPORT Procedure Creating Raw Data Files Using the Output Delivery System Creating Raw Data Files Using the DATA Step Summary... 80

8 2 Creating Raw Data Files Using SAS

9 1. Overview 3 Creating Raw Data Files Using SAS Welcome to the SAS e-lecture Creating Raw Data Files Using SAS. My name is Mike and I am an instructor for SAS. Today we will be discussing how to use SAS to create raw data files that you can transfer to other software applications.

10 4 Creating Raw Data Files Using SAS Creating Raw Data Files Using SAS 1. Overview 2. Creating Raw Data Files Using the EXPORT Procedure 3. Creating Raw Data Files Using the Output Delivery System 4. Creating Raw Data Files Using the DATA Step 2 5. Summary Our lecture will be presented in five sections. First, I'll provide a general overview of raw data files, including reasons for creating raw files and different types of files that you can create. The next three sections will cover how to create raw files by using different programming methods in SAS. In Section 2, I'll cover how to use the EXPORT procedure to create raw data files with delimiter characters. In Section 3, I'll show how to use the Output Delivery System to create raw files with delimiters. In Section 4, I'll discuss how to create raw files using FILE and PUT statements in the DATA step. Finally, in Section 5, I'll review the pros and cons of each method and help you determine which method is best for your needs.

11 1. Overview 5 1. Overview Creating Raw Data Files Using SAS 1. Overview 2. Creating Raw Data Files Using the EXPORT Procedure 3. Creating Raw Data Files Using the Output Delivery System 4. Creating Raw Data Files Using the DATA Step 3 5. Summary So, let's begin with Section 1.

12 6 Creating Raw Data Files Using SAS Objectives Distinguish between raw data files and other types of files. Understand reasons for creating raw data files. List types and attributes of raw data files. Identify the methods for creating raw data files. 4 In this section I'll provide some basic information about raw data files. Some of the topics we'll cover are how to distinguish between raw data files and other types of files reasons for creating raw data files types of raw files and their attributes, and the methods for creating raw data files.

13 1. Overview 7 What Is a Raw Data File? Data is represented as readable characters. Often raw data files have file extensions of.txt or.csv. Smith, , Wilson, , Williamson, , Lee, , JUL08 AX24 LAX DFW JUL08 RB104 DTW ORD JUL08 AX876 ATL BWI JUL08 CZ12 CLE BOS So, exactly what do we mean when we use the term raw data file? The most common form is a file where the data is represented as readable text characters. On Windows and UNIX systems, raw files typically have a file extension of.txt or.csv. Portions of two raw data files are shown here. Notice that in both cases the data values are clearly readable.

14 8 Creating Raw Data Files Using SAS Examples of Data Files That Are Not Raw SAS data sets Microsoft Excel workbooks Database tables Oracle Microsoft Access MySQL 6 You can distinguish between raw data files and files that are formatted for specific databases and software packages. Some examples of file types that are not raw data files include SAS data sets, Microsoft Excel workbooks, and tables for database products such as Oracle and Microsoft Access. These types of files are stored in special binary formats and cannot be viewed in a text editor.

15 1. Overview 9 Why Create Raw Data Files? 7 Now that we know what raw data files are, let's consider a situation where you might need to create one with SAS. Suppose you have data stored in a SAS data set that you need to share with someone at another organization, but that person doesn't have SAS. The person wants to process the data with software that he does have, such as Microsoft Excel.

16 10 Creating Raw Data Files Using SAS SAS/ACCESS Software SAS/ACCESS SAS Data Set Excel Worksheet 8 One way to convert SAS data sets directly to other formats, such as Excel and Oracle, is to use SAS/ACCESS software. This is the preferred method to use when possible, and if you can use SAS/ACCESS, you don't have to create a raw data file.

17 1. Overview 11 SAS Data Set Raw Data File Target Application SAS Data Set Raw Data File 9 Excel Spreadsheet If you can't use SAS/ACCESS to export your SAS data to a specific software format, you can create raw data files, which can be read by most software applications. This makes raw data files a universal format that you can use to send files to others who do not have SAS.

18 12 Creating Raw Data Files Using SAS Decisions in Creating a Raw Data File Format of the file Delimited fields Fixed column 10 If you know that you want to create a raw data file, you need to make some decisions about the type of raw file that you want, and what information you want the file to contain. First, you need to decide on the format of the file. You can create raw files with data fields separated by delimiters, or with data in fixed columns.

19 1. Overview 13 Decisions in Creating a Raw Data File Format of the file Delimited fields Fixed column Additional text in file Column headings Titles/footnotes 11 Next, you need to decide whether you want additional text in the file, such as column headers, titles, or footnotes. Let's look at these considerations more closely.

20 14 Creating Raw Data Files Using SAS Delimited Fields versus Fixed Columns Delimited Fields Smith, , Wilson, , Williamson, , Lee, , Fixed Columns JUL08 AX24 LAX DFW JUL08 RB104 DTW ORD JUL08 AX876 ATL BWI JUL08 CZ12 CLE BOS First, let's consider the difference between files with delimited fields, and files with fixed columns.

21 1. Overview 15 Delimited Fields versus Fixed Columns Delimited Fields Smith, , Wilson, , Williamson, , Lee, , Fields separated by delimiter character Fixed Columns JUL08 AX24 LAX DFW JUL08 RB104 DTW ORD JUL08 AX876 ATL BWI JUL08 CZ12 CLE BOS In a delimited file, data fields are separated by characters called delimiters. The most commonly used delimiter characters are commas, tab characters, and blanks. An example of a comma-delimited file is shown here. Each record in the file contains three fields, separated by commas.

22 16 Creating Raw Data Files Using SAS Delimited Fields versus Fixed Columns Delimited Fields Smith, , Wilson, , Williamson, , Lee, , Fixed Columns JUL08 AX24 LAX DFW JUL08 RB104 DTW ORD JUL08 AX876 ATL BWI JUL08 CZ12 CLE BOS Note that the length of the first field is different on each record, and the beginning locations of the second and third fields also vary.

23 1. Overview 17 Delimited Fields versus Fixed Column Delimited Fields Smith, , Wilson, , Williamson, , Lee, , Fixed Columns Fields in same columns on each record JUL08 AX24 LAX DFW JUL08 RB104 DTW ORD JUL08 AX876 ATL BWI JUL08 CZ12 CLE BOS In a fixed-column file, fields are in the same columns on each record. In the example here, the first field is always in columns 1 through 7 of each record, and the second field is always in columns 9 through 13, and so on.

24 18 Creating Raw Data Files Using SAS Column Headers Name,Amount,Phone Smith, , Wilson, , Williamson, , Now let's consider other information you may want to add to the raw data file. If you are creating a delimited file, you may want to include a line of column headers at the top. This is useful when you want to import the raw file into an application that can use the first row of data as column names.

25 1. Overview 19 Titles and Footnotes Employee Salary and Contact Info Name,Amount,Phone Smith, , Wilson, , Williamson, , AS OF 18JUL 17 If you are creating a delimited file that will be included as a report in a spreadsheet, you may want to add titles and footnotes to the file. As we'll see later in the course, the information that you want to include in the file will dictate the method you use to create the file.

26 20 Creating Raw Data Files Using SAS Methods for Creating Raw Data Files The EXPORT Procedure (PROC EXPORT) Output Delivery System (ODS) DATA Step with FILE and PUT Statements 18 In the next three sections of this lecture, we'll look at three different ways to create raw data files in SAS. They are using the EXPORT procedure using the Output Delivery System using a DATA step with FILE and PUT statements. The best method to use depends on whether you want to create a delimited or fixed-column file, and whether you want to include column headers, titles, and footnotes in your file.

27 1. Overview 21 Summary Raw data files contain data in readable text form can be used to export SAS data to other applications can be delimited or fixed column might have column headers, titles, and footnotes can be created in several ways using SAS. 19 Let's review what we've learned in this section. First, raw data files are defined as files that contain data in readable form. Raw data files are often used as an intermediate file format when exporting SAS data to other applications. Data in raw data files can be in either delimited or fixed-column format. Optionally, raw data files can contain column headers, titles, and footnotes. Finally, there are several ways to create raw data files, which we'll look at in the next few sections of this lecture.

28 22 Creating Raw Data Files Using SAS 2. Creating Raw Data Files Using the EXPORT Procedure Creating Raw Data Files Using SAS 1. Overview 2. Creating Raw Data Files Using the EXPORT Procedure 3. Creating Raw Data Files Using the Output Delivery System 4. Creating Raw Data Files Using the DATA Step Summary In Section 2, I'll cover how to use the EXPORT procedure to create raw data files with delimiter characters.

29 2. Creating Raw Data Files Using the EXPORT Procedure 23 Objectives Become familiar with basic EXPORT procedure syntax. Use PROC EXPORT to create delimited files with commas and other delimiters. Use the FSLIST procedure or text editor to view raw data files. 21 First I'll discuss the basic syntax for PROC EXPORT and show you how to use the procedure to create delimited files with commas or other delimiters. We'll also cover how to use PROC FSLIST or a text editor to view the raw data files that you create with PROC EXPORT.

30 24 Creating Raw Data Files Using SAS What Is PROC EXPORT? PROC EXPORT can convert SAS data sets to external data sources: database files and spreadsheets raw data files 22 Converting SAS data sets directly to database files and spreadsheets requires SAS/ACCESS Interface for PC File Formats. As I mentioned earlier, you can use PROC EXPORT to convert SAS data sets directly to files in commonly used formats, such as Microsoft Excel workbooks and Microsoft Access tables. You can also use PROC EXPORT to create raw data files, which you can then import into database and spreadsheet applications. In order to use PROC EXPORT to convert SAS data sets directly to database and spreadsheet files, you must have SAS/ACCESS Interface for PC File Formats licensed. If you do have SAS/ACCESS, then using PROC EXPORT to create database files directly is generally the best approach.

31 2. Creating Raw Data Files Using the EXPORT Procedure 25 If You Do Not Have SAS/ACCESS Software Use PROC EXPORT to create a raw data file. Import the raw data file into database or spreadsheet application. 23 If you don't have SAS/ACCESS software, then you can still use PROC EXPORT to create a raw data file and then import the raw data file into your database or spreadsheet application. The remainder of this section will cover how to use PROC EXPORT to create raw data files. For information on using PROC EXPORT with SAS/ACCESS to create database and spreadsheet files, refer to the SAS Help facility.

32 26 Creating Raw Data Files Using SAS Creating Raw Data Files with PROC EXPORT When creating raw data files, PROC EXPORT does not require SAS/ACCESS software can create delimited files, but not fixed column files enables you to specify the delimiter inserts variable names as column headers does not include title or footnote text. 24 You should be aware of the following when using PROC EXPORT to create raw data files: It does not require that you have SAS/ACCESS software licensed. You can create delimited files, but not fixed-column files. You can specify the delimiter that you want inserted between fields. Variable names are automatically inserted as column headers in the file. Title or footnote text is not included in the file.

33 2. Creating Raw Data Files Using the EXPORT Procedure 27 PROC EXPORT Syntax General form of the EXPORT procedure: PROC EXPORT DATA=<libref.>SAS-data-set OUTFILE="filename" DBMS=CSV TAB DLM; 25 Here is the basic syntax for PROC EXPORT. All of the information and options shown here are specified in the PROC EXPORT statement.

34 28 Creating Raw Data Files Using SAS PROC EXPORT Syntax PROC EXPORT DATA=<libref.>SAS-data-set OUTFILE="filename" DBMS=CSV TAB DLM; 26 The DATA= option specifies the name of the SAS data set that you want to convert to a raw data file.

35 2. Creating Raw Data Files Using the EXPORT Procedure 29 PROC EXPORT Syntax PROC EXPORT DATA=<libref.>SAS-data-set OUTFILE="filename" DBMS=CSV TAB DLM; 27 The OUTFILE= option specifies the name of the raw data file that you want to create. If you don't specify a full path, the file is created in the current directory.

36 30 Creating Raw Data Files Using SAS PROC EXPORT Syntax PROC EXPORT DATA=<libref.>SAS-data-set OUTFILE="filename" DBMS=CSV TAB DLM; 28 The DBMS option specifies the type of output that you want to create. A value of CSV produces a comma-delimited file. TAB produces a tab-delimited file. DLM lets you specify your own delimiter character. If you specify a value of DLM, a blank is used as the default delimiter character.

37 2. Creating Raw Data Files Using the EXPORT Procedure 31 PROC EXPORT Syntax PROC EXPORT DATA=<libref.>SAS-data-set OUTFILE="filename" DBMS=CSV TAB DLM; DELIMITER="delimiter-character"; 29 If you want to use a character other than a blank, comma, or tab as your delimiter, specify DBMS=DLM. Then, specify the delimiter character that you want to use with the DELIMITER statement. Notice that this is a separate statement, and not an option in the PROC EXPORT statement.

38 32 Creating Raw Data Files Using SAS PROC EXPORT Syntax PROC EXPORT DATA=<libref.>SAS-data-set OUTFILE="filename" DBMS=CSV TAB DLM; PUTNAMES=YES NO; 30 You can use the PUTNAMES statement to specify whether you want the output file to contain a header row with variable names. The default is PUTNAMES=YES, which writes out column headers. Specify PUTNAMES=NO if you don't want a header row.

39 2. Creating Raw Data Files Using the EXPORT Procedure 33 PROC EXPORT Syntax PROC EXPORT DATA=<libref.>SAS-data-set OUTFILE="filename" DBMS=CSV TAB DLM LABEL; 31 If you want the header row to contain variable labels instead of variable names, you can specify the LABEL option in the PROC EXPORT statement.

40 34 Creating Raw Data Files Using SAS PROC EXPORT Syntax PROC EXPORT DATA=<libref.>SAS-data-set OUTFILE="filename" DBMS=CSV TAB DLM REPLACE; 32 If the raw file that you want to create already exists, then by default, PROC EXPORT will not replace it. To replace an existing file, specify the REPLACE option.

41 2. Creating Raw Data Files Using the EXPORT Procedure 35 Creating a Comma-Delimited File Orion.Sales Order_ID Order_type Customer_ID Order_Date JAN JAN JAN JAN JAN2007 proc export data=orion.sales outfile="sales.csv" dbms=csv replace; run; 33 Here's an example of creating a comma-delimited file. In this case, we want to take an existing SAS data set, orion.sales, and create a comma-separated file called sales.csv in the current working directory. Note that in orion.sales, the variable Order_Date is defined with a DATE9. format. In our PROC EXPORT statement, we specify the name of the SAS data set that we want to use to create the raw file, the name of the file we want to create, and the type of file we want to create.

42 36 Creating Raw Data Files Using SAS Viewing the Raw Data File PROC FSLIST FILEREF="filename"; 34 Once you've created your raw data file, you can view it in your SAS session using the FSLIST procedure. In the PROC FSLIST statement, use the FILEREF= option to specify the name of the file that you want to display.

43 2. Creating Raw Data Files Using the EXPORT Procedure 37 Viewing the Raw Data File PROC FSLIST FILEREF="filename"; proc fslist fileref="sales.csv"; run; 35 Here's the code that displays our raw data file.

44 38 Creating Raw Data Files Using SAS Viewing the Raw Data File PROC FSLIST FILEREF="filename"; proc fslist fileref="sales.csv"; run; 36 And here's what it looks like in the FSLIST window. Note that PROC EXPORT created the raw data file using the formatted value of Order_Date. If you are using SAS Enterprise Guide or SAS Learning Edition, PROC FSLIST is not available. In those environments, you can view the raw file in any text editor, such as Windows Notepad.

45 2. Creating Raw Data Files Using the EXPORT Procedure 39 Using PROC EXPORT to Create Delimited Files This demonstration illustrates how to use PROC EXPORT to create delimited files and view the files using PROC FSLIST or a text editor. 37 Now, let's look at a demonstration of some of the other ways to create raw data files using PROC EXPORT. In this demo, we'll see how to create various types of delimited files with PROC EXPORT and view the files with PROC FSLIST. We'll start by creating a comma-delimited file. 1. First, let's submit a PROC EXPORT step that takes the SAS data set orion.sales and creates a comma-delimited file called sales.csv. When creating a comma-delimited file under Windows or UNIX, the output file normally has a file extension of.csv, and you should specify DBMS=CSV in the PROC EXPORT statement. Since we have not specified a full pathname for our output file, it will be stored in our default home directory which is, in this instance, c:\electure. 2. Looking at the SAS log, notice that PROC EXPORT actually generates a DATA step to produce the file. The log tells us that the file sales.csv has five records. 3. To look at the file we created, we can submit a PROC FSLIST step. 4. PROC FSLIST opens a window that displays the comma-delimited file that we created. 5. Before we can go to the next step, we need to close the FSLIST window. 6. Now let's create a tab-delimited file. To do this, we need to make some changes to our PROC EXPORT code. 1) First, we need to change the value of the DBMS= option to TAB. 2) We should change the extension of our output file to.txt since it is no longer a commadelimited file. 7. When we submit the code, the SAS log tells us that the file sales.txt has been created with five records. 8. Now, run PROC FSLIST to view the file.

46 40 Creating Raw Data Files Using SAS 9. Note that the records now display empty boxes between the fields. These are actually tab characters, which are unprintable. PROC FSLIST displays unprintable characters as boxes. 10. Now let's create a delimited file that uses a pound sign as our delimiter. 1) First, we need to change the value of the DBMS= option to DLM to indicate that we want to create a delimited file and that we will specify the delimiter. 2) Next, we add a DELIMITER statement to specify that we want a pound sign as our delimiter. 11. When we submit the code, the SAS log tells us that the file sales.txt has been created with five records. 12. We could use PROC FSLIST to view the raw file, but we can also use any text editor, such as Windows Notepad. If you use SAS Learning Edition or SAS Enterprise Guide, PROC FSLIST is not available to you, so in these environments you need to use a text editor. So, let's open the file with Windows Notepad. Note that the records now have pound signs between the fields.

47 2. Creating Raw Data Files Using the EXPORT Procedure 41 Summary With SAS/ACCESS, PROC EXPORT can be used to convert SAS data sets to database or spreadsheet format. Use PROC EXPORT to create raw data files if you do not have SAS/ACCESS. PROC EXPORT creates delimited files. Options in PROC EXPORT control the choice of delimiter and whether column headings are produced. Use the FSLIST procedure or text editor to view raw data files. 38 Let's review what we've covered in this section. First, if you have SAS/ACCESS software, you can use PROC EXPORT to convert SAS data sets directly to a database file or spreadsheet. If you don't have SAS/ACCESS, you can use PROC EXPORT to create raw data files that can be read by other applications. PROC EXPORT creates delimited raw files, and you can use options to control the delimiter that is used and whether variable names are used as column headings. Finally, if you want to view the raw data file that you've created, you can use the FSLIST procedure or any text editor. In the next section, we'll look at another method for creating raw data files, the Output Delivery System, or ODS.

48 42 Creating Raw Data Files Using SAS 3. Creating Raw Data Files Using the Output Delivery System Creating Raw Data Files Using SAS 1. Overview 2. Creating Raw Data Files Using the EXPORT Procedure 3. Creating Raw Data Files Using the Output Delivery System 4. Creating Raw Data Files Using the DATA Step Summary In Section 3, I'll show how to use the Output Delivery System to create raw files with delimiters.

49 3. Creating Raw Data Files Using the Output Delivery System 43 Objectives Use the ODS CSVALL statement to write delimited files containing data and column headers. Add footnotes and titles to delimited files. 40 I'll begin by describing how to use the ODS CSVALL statement to write delimited files containing data and column headers. Then I'll show you how to use ODS to add footnotes and titles to delimited files.

50 44 Creating Raw Data Files Using SAS What Is the Output Delivery System (ODS)? ODS enables you to send SAS report output to a variety of locations and to specify the format of the output for each destination. Listing SAS Output O D S HTML PDF CSV 41 The Output Delivery System lets you send SAS reports to a variety of locations and specify the output format for each destination. By default, output from SAS procedures goes to the Listing destination, which is the Output Window if you are running SAS interactively. You can also send output to an HTML file, a PDF file, to a comma-delimited file, or to any of several other destinations.

51 3. Creating Raw Data Files Using the Output Delivery System 45 When to Use ODS? ODS can be used with reporting procedures such as PROC PRINT or PROC REPORT to create delimited files include variable names as column headers include titles and footnotes in the file. 42 ODS is used when SAS procedures produce output. For creating raw data files, ODS is helpful when you want to use a reporting procedure such as PROC PRINT or PROC REPORT, and you want to create delimited files with commas or other delimiters include variable names as column headers include titles and footnotes in the file.

52 46 Creating Raw Data Files Using SAS ODS CSVALL Statement The ODS CSVALL statement creates a delimited file using the output from a SAS procedure. General form of the ODS CSVALL statement: ODS CSVALL FILE='file-name'; <code to produce report> ODS CSVALL CLOSE; By default, fields are delimited with commas. 43 To create a comma-delimited file with ODS, use the ODS CSVALL statement. Submit the ODS CSVALL statement before you run the procedure that produces your report. In the ODS CSVALL statement, use the FILE= option to specify the name of the delimited file that you want to create. After the procedure statements, submit an ODS CSVALL CLOSE statement to close the raw file.

53 3. Creating Raw Data Files Using the Output Delivery System 47 ODS CSVALL Statement "Order_ID","Order_Type","Customer_ID","Order_Date" ,3,24,"02JAN2007" ,1,89,"03JAN2007" ,1,171,"04JAN2007" ,3,53,"06JAN2007" ,1,53,"13JAN2007" 44 In this example, we want to create a file called sales.csv that contains the output from PROC PRINT, with column headers and data fields separated by commas.

54 48 Creating Raw Data Files Using SAS ODS CSVALL Statement ods csvall file='sales.csv'; proc print data=orion.sales noobs; run; ods csvall close; "Order_ID","Order_Type","Customer_ID","Order_Date" ,3,24,"02JAN2007" ,1,89,"03JAN2007" ,1,171,"04JAN2007" ,3,53,"06JAN2007" ,1,53,"13JAN2007" 45 To do this, we submit an ODS CSVALL statement, specifying the name of the output file. Next, we submit a PROC PRINT step to produce the output. Finally, we submit an ODS CSVALL CLOSE statement to close the output file. Note that the ODS CSVALL CLOSE statement must come after the RUN statement for PROC PRINT. In the raw file that is produced using ODS CSVALL, note that the column header fields and formatted numeric values are enclosed in double quotation marks. This is a common standard, and most applications, such as Microsoft Excel, handle the quote automatically.

55 3. Creating Raw Data Files Using the Output Delivery System 49 ODS CSVALL Statement with Titles and Footnotes title "Low Volume Sales"; footnote "First 2 Weeks of January"; ods csvall file='csvsales.csv'; proc print data=orion.sales noobs; run; ods csvall close; Low Volume Sales "Order_ID","Order_Type","Customer_ID","Order_Date" ,3,24,"02JAN2007" ,1,89,"03JAN2007" ,1,171,"04JAN2007" ,3,53,"06JAN2007" ,1,53,"13JAN2007" 46 First 2 Weeks of January If you add titles or footnotes to your PROC PRINT output, they are included in the file produced by ODS CSVALL. In this example, we have added TITLE and FOOTNOTE statements to the program we ran in the previous example. The output file contains the title and footnote.

56 50 Creating Raw Data Files Using SAS ODS CSVALL Statement with Alternative Delimiters The ODS CSVALL statement creates a delimited file from a SAS procedure. General form of the ODS CSVALL statement with the DELIMITER= suboption: ODS CSVALL FILE='file-name' OPTIONS(DELIMITER='delimiter'); <code to produce report> ODS CSVALL CLOSE; ods csvall file='sales_colon.txt' options(delimiter=':'); ods csvall file='sales_tab.txt' options(delimiter='09'x); 47 To create a delimited file with ODS with a delimiter other than a comma, use the DELIMITER= suboption in the ODS CSVALL statement. The syntax for the DELIMITER= suboption is shown here. In our first example, we're specifying that a colon be used as the delimiter between fields. In the second example, we request a tab character as a delimiter by specifying the ASCII hexadecimal code for the tab character.

57 3. Creating Raw Data Files Using the Output Delivery System 51 Notes on Using ODS CSVALL ODS CSVALL produces comma-delimited files by default. You can specify other delimiters by using the DELIMITER= suboption. ODS CSVALL does not produce fixed-column files. Files created with ODS CSVALL and PROC PRINT contain variable names or labels as column headers. If formats are used with the procedure producing the output, formatted values are output to the raw data file. Values for formatted numeric variables and character variables are enclosed in quotation marks. 48 Here are some things to be aware of if you plan to use ODS CSVALL to produce a raw data file: ODS CSVALL produces comma-delimited files by default, and you can specify other delimiters by using the DELIMITER= suboption. ODS CSVALL does not produce files in fixed-column format. Files created with ODS CSVALL and PROC PRINT always contain variable names or labels as column headers. If you assign formats to the variables used in the procedure, formatted values are output to the raw data file. Values for formatted numeric variables and character variables are enclosed in quotation marks.

58 52 Creating Raw Data Files Using SAS Summary The ODS CSVALL statement creates delimited files from reports produced by PROC PRINT and other procedures. Use the ODS CSVALL statement before the PROC step. Use ODS CSVALL CLOSE after the PROC step. Titles and footnotes are included in the raw data files. 49 Let's briefly review what we've covered in this chapter: You can use the ODS CSVALL statement when you want to produce comma-delimited files from a SAS procedure such as PROC PRINT. When you use this method, include an ODS CSVALL statement before the procedure and an ODS CSVALL CLOSE statement after the procedure runs. When you use ODS CSVALL, any titles or footnotes that are in effect are included in the raw data file that is created. In the next chapter, we'll see how to create a raw data file using FILE and PUT statements in a DATA step.

59 4. Creating Raw Data Files Using the DATA Step Creating Raw Data Files Using the DATA Step Creating Raw Data Files Using SAS 1. Overview 2. Creating Raw Data Files Using the EXPORT Procedure 3. Creating Raw Data Files Using the Output Delivery System 4. Creating Raw Data Files Using the DATA Step Summary In Section 4, I'll discuss how to create raw files using FILE and PUT statements in the DATA step.

60 54 Creating Raw Data Files Using SAS Objectives Describe basic syntax for using FILE and PUT statements in the DATA step. Use FILE and PUT statements to create delimited files. Add column headers, titles, and footnotes to files created with FILE and PUT statements. Use FILE and PUT statements to create fixed-column files. 51 Here are the topics we'll cover in this section: the basic syntax for using FILE and PUT statements in the DATA step how to use FILE and PUT statements to create delimited files how to add column headers, titles, and footnote to files created with FILE and PUT statements how to use FILE and PUT statements to create fixed column files

61 4. Creating Raw Data Files Using the DATA Step 55 The DATA Step You can use the DATA step to write data to a raw file a custom report. 52 You can use the DATA step to write data to a raw file or to produce highly customized reports. We'll focus on creating raw files in this lecture. Using the DATA step for report writing is covered in a separate lecture.

62 56 Creating Raw Data Files Using SAS The DATA Step READING FROM AN EXTERNAL FILE WRITING TO AN EXTERNAL FILE 53 You can think of the process for writing a raw data file from a SAS data set as being the reverse of the process for creating a SAS data set by reading in a raw file.

63 4. Creating Raw Data Files Using the DATA Step 57 The DATA Step READING FROM AN EXTERNAL FILE WRITING TO AN EXTERNAL FILE The DATA statement begins the DATA step. The DATA statement begins the DATA step. 54 In both cases, you begin the DATA step with a DATA statement.

64 58 Creating Raw Data Files Using SAS The DATA Step READING FROM AN EXTERNAL FILE WRITING TO AN EXTERNAL FILE The DATA statement begins the DATA step. The INFILE statement identifies an external file to read with an INPUT statement. The DATA statement begins the DATA step. 55 When reading in a raw data file to create a SAS data set, you use an INFILE statement to identify the raw file. The INFILE statement identifies an external file to read with an INPUT statement.

65 4. Creating Raw Data Files Using the DATA Step 59 The DATA Step READING FROM AN EXTERNAL FILE WRITING TO AN EXTERNAL FILE The DATA statement begins the DATA step. The INFILE statement identifies an external file to read with an INPUT statement. The DATA statement begins the DATA step. The FILE statement identifies an external file to write with a PUT statement. 56 To write a raw data file, you use a FILE statement to identify the file. The FILE statement identifies an external file to write with a PUT statement.

66 60 Creating Raw Data Files Using SAS The DATA Step READING FROM AN EXTERNAL FILE WRITING TO AN EXTERNAL FILE The DATA statement begins the DATA step. The INFILE statement identifies an external file to read with an INPUT statement. The INPUT statement describes the arrangement of values in the input data record. The DATA statement begins the DATA step. The FILE statement identifies an external file to write with a PUT statement. 57 When reading in a raw data file to create a SAS data set, you use an INPUT statement to describe the arrangement of values in the input data record.

67 4. Creating Raw Data Files Using the DATA Step 61 The DATA Step READING FROM AN EXTERNAL FILE WRITING TO AN EXTERNAL FILE The DATA statement begins the DATA step. The INFILE statement identifies an external file to read with an INPUT statement. The INPUT statement describes the arrangement of values in the input data record. The DATA statement begins the DATA step. The FILE statement identifies an external file to write with a PUT statement. The PUT statement describes the arrangement of values in the output data record. 58 When writing a raw file, you use a PUT statement to describe the arrangement of values in the output data record.

68 62 Creating Raw Data Files Using SAS The DATA Statement To initiate a DATA step but not create a new data set, use a DATA statement. General form of the DATA statement: DATA _NULL_; 59 Let's look more closely at the statements used to create a raw data file, starting with the DATA statement. The DATA statement initiates the DATA step and is normally used to identify the name of the SAS data set that you want to create in the step. But if all you want to do is use a DATA step to create a raw file from an existing data set, you don't need to create a new SAS data set. If this is the case, you can use a DATA _NULL_ statement to tell SAS to start a DATA step but not create a new SAS data set.

69 4. Creating Raw Data Files Using the DATA Step 63 The FILE Statement The FILE statement specifies the output destination for subsequent PUT statements. General form of the FILE statement: FILE file-specification <options>; 60 The FILE statement specifies where output from subsequent PUT statements will go.

70 64 Creating Raw Data Files Using SAS The FILE Statement The FILE statement specifies the output destination for subsequent PUT statements: FILE file-specification <options>; For example: file 'sales.txt'; or file 'c:\myfiles\sales.txt'; 61 In the FILE statement, specify the name of the raw output file in quotation marks.

71 4. Creating Raw Data Files Using the DATA Step 65 The FILE Statement To send output to the SAS Output window for preview, use the following: file print; 62 You may want to preview what the output file will look like by writing the lines to the Output window instead of the file itself. To do this, you can use a FILE PRINT statement. Notice that the word PRINT is not in quotation marks. After you preview the output, you can later modify the FILE statement to have it point to the file you want to create.

72 66 Creating Raw Data Files Using SAS The PUT Statement The PUT statement writes lines to the destination specified in the FILE statement. With simple list output, list the names of the variables whose values you want written. General form of the PUT statement: PUT variable-1 variable-2 variable-n; 63 The PUT statement writes lines to the destination specified in the FILE statement. The most basic form of the PUT statement is called simple list output. To create simple list output, list the names of the variables whose values you want on the output line. The PUT statement writes a variable value, inserts a single blank, and then writes the next value.

73 4. Creating Raw Data Files Using the DATA Step 67 Using FILE and PUT Statements to Create a Delimited File This demonstration illustrates how to use FILE and PUT statements in a DATA step to create a delimited file. 64 Let's look at an example of using FILE and PUT statements to create a raw file with fields delimited with blanks. In this demo, we'll be using a data set called orion.sales2, which is identical to the data set orion.sales that we used in the last example, except that the variable order_date does not have a format associated with it. In this demo we're using a FILE PRINT statement so that the output is written to the Output window. The PUT statement lists the variables we want output, separated by blanks. When we go to the Output window, notice that each field is separated by a blank, which is the default delimiter. Notice also that the unformatted value for order_date is output.

74 68 Creating Raw Data Files Using SAS Modified List Output Modified list output enables you to specify a SAS format to control how the variable values are written. To use modified list output, use a colon in the PUT statement between the variable name and the format. PUT variable-1 : format-1. variable-2 : format-2. variable-n : format-n.; 65 In our demo, we saw that using simple list output does not display formatted variable values unless the variables already have formats associated with them. To write out formatted values, we can use a variation of simple list output called modified list output. To use modified list output, enter a colon after the variable name, followed by the format you want to use for the value.

75 4. Creating Raw Data Files Using the DATA Step 69 Using Modified List Output to Create a Delimited File This demonstration illustrates how to use PUT statements with modified list output to create a delimited file containing formatted values. 66 Let's take the program we ran in the previous demo and change the PUT statement to use modified list output. To do this, we simply add a colon and a format name after the variable name order_date in the PUT statement. When we run the program, the value of order_date is written with the MMDDYY10. format.

76 70 Creating Raw Data Files Using SAS Specifying an Alternate Delimiter Use the DLM= option in the FILE statement to create a file with an alternate delimiter (other than a blank). FILE file-specification DLM='quoted-string' <other-options>; You can also specify the delimiter as a hexadecimal value. file 'sales.txt' dlm='09'x; /* ASCII TAB character */ 67 By default, both simple and modified list output use blanks to separate the values in the output. You can specify a different delimiter character by using the DLM= option in the FILE statement. Here we show an example of specifying a tab character as the delimiter between fields. Since the tab character is unprintable, you can specify the value as a hexadecimal code, in this case '09'x. For z/os, the code for a TAB character is '05'x.

77 4. Creating Raw Data Files Using the DATA Step 71 Specifying an Alternate Delimiter This demonstration illustrates how to create raw data files with fields delimited by commas. 68 In this example, we're modifying the program we used in the previous demonstration so that a comma is used as a delimiter. To do this, we just add the option DLM=',' to the FILE statement. When we run the program, we see that each field is separated by a comma. This is a standard comma-delimited file, which we could import into an application like Excel, but notice that it does not contain a header row with the variable names.

78 72 Creating Raw Data Files Using SAS Writing Static Text You can use PUT statements to write static text strings instead of, or in addition to, data values. PUT 'text'; PUT variable 'text'; PUT 'text' variable : format. 'text'; 69 To add column headers or other text in your output, you can simply include the text in quotation marks in your PUT statement. You can write lines containing only text, or lines containing a combination of text and formatted or unformatted data values.

79 4. Creating Raw Data Files Using the DATA Step 73 Writing Static Text Strings This demonstration illustrates using PUT statements to write static text to raw data files. 70 Let's look at an example of using PUT statements to add text strings to lines of output. We've taken our previous program and added a PUT statement to write out a line of text with the variable names separated by commas. When we run the program, we see that the PUT statement did write out the line with the variable names, but it did so on every iteration of the DATA step. So, we're going to need to make another modification to our program to get what we want.

80 74 Creating Raw Data Files Using SAS Using the _N_ Automatic Variable to Conditionally Execute PUT Statements The _N_ automatic variable is created by every DATA step. Each time that the DATA step iterates past the DATA statement, _N_ is incremented by 1. Therefore, the value of _N_ represents the number of times that the DATA step iterated. data _null_; set orion.sales; if _N_=1 then run; 71 To solve our problem, we want to write out the line of column headers only on the first execution of the DATA step. To accomplish this, we can use the automatic variable _N_, whose value represents the number of times that the DATA step has iterated. The _N_ variable is automatically created by SAS when the DATA step executes. If we want to execute a statement only on the first iteration of the DATA step, we can use an IF statement that tests to see if _N_ is equal to 1.

81 4. Creating Raw Data Files Using the DATA Step 75 Writing Static Strings Conditionally This demonstration illustrates using the _N_ automatic variable to conditionally write strings to a raw data file. 72 In this demonstration we'll see how using the _N_ automatic variable lets us execute a PUT statement conditionally to write out our column headers on the first iteration of the DATA step. Starting with our program from the last demonstration, we just need to modify the PUT statement so that it is executed only if the value of _N_ is equal to 1. When we run the program, the output shows that the header line is written only on the first iteration of the DATA step.

82 76 Creating Raw Data Files Using SAS Creating Files with Fixed Columns In some cases you might want to write raw data files with data in fixed columns. For example: JAN JAN JAN JAN JAN So far, all of our examples have shown how to create delimited files. There may be some times when you want to create a file with data in fixed columns, as shown here.

83 4. Creating Raw Data Files Using the DATA Step 77 Creating Files with Fixed Columns To write data in fixed columns, use formatted output with your PUT statement: variable-1 variable-2 variable-n format-n1; order_id order_type customer_id order_date date9.; 74 To write data in fixed columns, you can use a PUT statement with formatted output. With formatted output, you use a pointer control to tell SAS in what column to begin writing each field. The pointer control is an at sign (@), followed by the beginning column for the field. Next, you enter the variable name, and then the format that you want to use to write the data.

84 78 Creating Raw Data Files Using SAS Creating Files with Fixed Columns This demonstration illustrates using the formatted output with a PUT statement to create a file with data in fixed columns. 75 In this example, we'll show you how to used formatted output to create a file with data in fixed columns. To create the output, we code the PUT statement so that for each variable, we specify its starting column and format. When we run the program we can see that the data fields are written in fixed columns.

85 4. Creating Raw Data Files Using the DATA Step 79 Summary Use FILE and PUT statements to create delimited or fixed-column files. Begin a DATA step with a DATA _NULL_ statement when you create a raw data file. Use list or modified list output with the PUT statement to create a delimited file. Use FILE PRINT to preview the file. Use static text and the _N_ variable to include a header row. Use formatted output in PUT statements to create fixed column files. 76 Let's review what we've covered in this section. Like the methods we've covered before, you can use FILE and PUT statements to create delimited files. You can also use FILE and PUT to create fixed-column files. When creating a raw data file, you should begin the DATA step with a DATA _NULL_ statement. To create a raw file, use list or modified list output with the PUT statement. You can use a FILE PRINT statement to preview the file instead of writing the file directly. To include a header row in your output, add static text to your PUT statement and use the _N_ variable to control when the text is output. Finally, if you want to create fixed column files, use PUT statements with formatted output to write the data.

86 80 Creating Raw Data Files Using SAS 5. Summary Creating Raw Data Files Using SAS 1. Overview 2. Creating Raw Data Files Using the EXPORT Procedure 3. Creating Raw Data Files Using the Output Delivery System 4. Creating Raw Data Files Using the DATA Step Summary In our final section, I'll review the pros and cons of each method and help you determine which method is best for your needs.

87 5. Summary 81 Considerations in Creating a Raw Data File Format of the file Delimited fields Fixed column Column headings Titles/footnotes 78 When deciding which approach to use to create a raw data file, the first thing you need to consider is what format you want the file in. Your choices are a file with fields separated by delimiters or a file with fields in fixed columns. Your next consideration is whether you want the variable names or labels included as column headings. Finally, you need to consider whether you want your file to include additional text, such as titles or footnotes.

88 82 Creating Raw Data Files Using SAS Methods for Creating a Raw Data File PROC EXPORT ODS CSVALL DATA Step with FILE and PUT Statements 79 The three methods that you can use to create raw data files are using PROC EXPORT using the ODS CSVALL statement using FILE and PUT statements in a DATA step.

89 5. Summary 83 Delimited Files without Column Headers PROC EXPORT with PUTNAMES=NO Smith, , Wilson, , Williamson, , Lee, , Now let's review which method is most appropriate for each type of output. If you want to create a delimited file without a column header row, your most convenient option is to use PROC EXPORT. Since PROC EXPORT automatically includes a column header row, you need to add a PUTNAMES=NO statement to eliminate the header row.

Reading Delimited Text Files into SAS 9 TS-673

Reading Delimited Text Files into SAS 9 TS-673 Reading Delimited Text Files into SAS 9 TS-673 Reading Delimited Text Files into SAS 9 i Reading Delimited Text Files into SAS 9 Table of Contents Introduction... 1 Options Available for Reading Delimited

More information

Technical Paper. Reading Delimited Text Files into SAS 9

Technical Paper. Reading Delimited Text Files into SAS 9 Technical Paper Reading Delimited Text Files into SAS 9 Release Information Content Version: 1.1July 2015 (This paper replaces TS-673 released in 2009.) Trademarks and Patents SAS Institute Inc., SAS Campus

More information

Accessing a Remote SAS Data Library. Transcript

Accessing a Remote SAS Data Library. Transcript Accessing a Remote SAS Data Library Transcript Accessing a Remote SAS Data Library Transcript was developed by Michelle Buchecker. Additional contributions were made by Christine Riddiough and Cheryl Doninger.

More information

Importing Excel Files Into SAS Using DDE Curtis A. Smith, Defense Contract Audit Agency, La Mirada, CA

Importing Excel Files Into SAS Using DDE Curtis A. Smith, Defense Contract Audit Agency, La Mirada, CA Importing Excel Files Into SAS Using DDE Curtis A. Smith, Defense Contract Audit Agency, La Mirada, CA ABSTRACT With the popularity of Excel files, the SAS user could use an easy way to get Excel files

More information

SPSS for Windows importing and exporting data

SPSS for Windows importing and exporting data Guide 86 Version 3.0 SPSS for Windows importing and exporting data This document outlines the procedures to follow if you want to transfer data from a Windows application like Word 2002 (Office XP), Excel

More information

DBF Chapter. Note to UNIX and OS/390 Users. Import/Export Facility CHAPTER 7

DBF Chapter. Note to UNIX and OS/390 Users. Import/Export Facility CHAPTER 7 97 CHAPTER 7 DBF Chapter Note to UNIX and OS/390 Users 97 Import/Export Facility 97 Understanding DBF Essentials 98 DBF Files 98 DBF File Naming Conventions 99 DBF File Data Types 99 ACCESS Procedure Data

More information

SAS Tips and Tricks. Disclaimer: I am not an expert in SAS. These are just a few tricks I have picked up along the way.

SAS Tips and Tricks. Disclaimer: I am not an expert in SAS. These are just a few tricks I have picked up along the way. SAS Tips and Tricks Disclaimer: I am not an expert in SAS. These are just a few tricks I have picked up along the way. Saving Data Files Note: You can skip this step entirely by reading the data in directly

More information

Methodologies for Converting Microsoft Excel Spreadsheets to SAS datasets

Methodologies for Converting Microsoft Excel Spreadsheets to SAS datasets Methodologies for Converting Microsoft Excel Spreadsheets to SAS datasets Karin LaPann ViroPharma Incorporated ABSTRACT Much functionality has been added to the SAS to Excel procedures in SAS version 9.

More information

SAS/ACCESS 9.3 Interface to PC Files

SAS/ACCESS 9.3 Interface to PC Files SAS/ACCESS 9.3 Interface to PC Files Reference SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2011. SAS/ACCESS 9.3 Interface to Files: Reference.

More information

Chapter 2 The Data Table. Chapter Table of Contents

Chapter 2 The Data Table. Chapter Table of Contents Chapter 2 The Data Table Chapter Table of Contents Introduction... 21 Bringing in Data... 22 OpeningLocalFiles... 22 OpeningSASFiles... 27 UsingtheQueryWindow... 28 Modifying Tables... 31 Viewing and Editing

More information

Option 1 - Electronic scales

Option 1 - Electronic scales The direct scale and reader integration for the xr3000 has been deprecated and is no longer supported. Below you will find two options available in AIMS for updating this information without manually entering

More information

Microsoft Office. Mail Merge in Microsoft Word

Microsoft Office. Mail Merge in Microsoft Word Microsoft Office Mail Merge in Microsoft Word TABLE OF CONTENTS Microsoft Office... 1 Mail Merge in Microsoft Word... 1 CREATE THE SMS DATAFILE FOR EXPORT... 3 Add A Label Row To The Excel File... 3 Backup

More information

9.1 SAS. SQL Query Window. User s Guide

9.1 SAS. SQL Query Window. User s Guide SAS 9.1 SQL Query Window User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2004. SAS 9.1 SQL Query Window User s Guide. Cary, NC: SAS Institute Inc. SAS

More information

Importing and Exporting Databases in Oasis montaj

Importing and Exporting Databases in Oasis montaj Importing and Exporting Databases in Oasis montaj Oasis montaj provides a variety of importing and exporting capabilities. This How-To Guide covers the basics of importing and exporting common file types.

More information

Using the SAS Enterprise Guide (Version 4.2)

Using the SAS Enterprise Guide (Version 4.2) 2011-2012 Using the SAS Enterprise Guide (Version 4.2) Table of Contents Overview of the User Interface... 1 Navigating the Initial Contents of the Workspace... 3 Useful Pull-Down Menus... 3 Working with

More information

Importing from Tab-Delimited Files

Importing from Tab-Delimited Files January 25, 2012 Importing from Tab-Delimited Files Tab-delimited text files are an easy way to import metadata for multiple files. (For more general information about using and troubleshooting tab-delimited

More information

How To Write A File System On A Microsoft Office 2.2.2 (Windows) (Windows 2.3) (For Windows 2) (Minorode) (Orchestra) (Powerpoint) (Xls) (

How To Write A File System On A Microsoft Office 2.2.2 (Windows) (Windows 2.3) (For Windows 2) (Minorode) (Orchestra) (Powerpoint) (Xls) ( Remark Office OMR 8 Supported File Formats User s Guide Addendum Remark Products Group 301 Lindenwood Drive, Suite 100 Malvern, PA 19355-1772 USA www.gravic.com Disclaimer The information contained in

More information

Qlik REST Connector Installation and User Guide

Qlik REST Connector Installation and User Guide Qlik REST Connector Installation and User Guide Qlik REST Connector Version 1.0 Newton, Massachusetts, November 2015 Authored by QlikTech International AB Copyright QlikTech International AB 2015, All

More information

EXST SAS Lab Lab #4: Data input and dataset modifications

EXST SAS Lab Lab #4: Data input and dataset modifications EXST SAS Lab Lab #4: Data input and dataset modifications Objectives 1. Import an EXCEL dataset. 2. Infile an external dataset (CSV file) 3. Concatenate two datasets into one 4. The PLOT statement will

More information

How To Import A File Into The Raise S Edge

How To Import A File Into The Raise S Edge Import Guide 021312 2009 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying, recording,

More information

2. The Open dialog box appears and you select Text Files (*.prn,*.txt,*.csv) from the drop-down list in the lower right-hand corner.

2. The Open dialog box appears and you select Text Files (*.prn,*.txt,*.csv) from the drop-down list in the lower right-hand corner. How to open CSV file in Excel If you created a CSV file in another program, you can still open it as an Excel workbook in the usual way by using the Open command. Note. Opening the CSV file in Excel does

More information

Essential Project Management Reports in Clinical Development Nalin Tikoo, BioMarin Pharmaceutical Inc., Novato, CA

Essential Project Management Reports in Clinical Development Nalin Tikoo, BioMarin Pharmaceutical Inc., Novato, CA Essential Project Management Reports in Clinical Development Nalin Tikoo, BioMarin Pharmaceutical Inc., Novato, CA ABSTRACT Throughout the course of a clinical trial the Statistical Programming group is

More information

Importing Data from a Dat or Text File into SPSS

Importing Data from a Dat or Text File into SPSS Importing Data from a Dat or Text File into SPSS 1. Select File Open Data (Using Text Wizard) 2. Under Files of type, choose Text (*.txt,*.dat) 3. Select the file you want to import. The dat or text file

More information

From The Little SAS Book, Fifth Edition. Full book available for purchase here.

From The Little SAS Book, Fifth Edition. Full book available for purchase here. From The Little SAS Book, Fifth Edition. Full book available for purchase here. Acknowledgments ix Introducing SAS Software About This Book xi What s New xiv x Chapter 1 Getting Started Using SAS Software

More information

Tips and Tricks for Creating Multi-Sheet Microsoft Excel Workbooks the Easy Way with SAS. Vincent DelGobbo, SAS Institute Inc.

Tips and Tricks for Creating Multi-Sheet Microsoft Excel Workbooks the Easy Way with SAS. Vincent DelGobbo, SAS Institute Inc. Paper HOW-071 Tips and Tricks for Creating Multi-Sheet Microsoft Excel Workbooks the Easy Way with SAS Vincent DelGobbo, SAS Institute Inc., Cary, NC ABSTRACT Transferring SAS data and analytical results

More information

Teradata SQL Assistant Version 13.0 (.Net) Enhancements and Differences. Mike Dempsey

Teradata SQL Assistant Version 13.0 (.Net) Enhancements and Differences. Mike Dempsey Teradata SQL Assistant Version 13.0 (.Net) Enhancements and Differences by Mike Dempsey Overview SQL Assistant 13.0 is an entirely new application that has been re-designed from the ground up. It has been

More information

PrintShop Mail Database Fundamentals Guide

PrintShop Mail Database Fundamentals Guide Database Fundamentals Guide Database Fundamentals... 2 Basic Data Setup... 2 Creating a Database... 2 Usable File Formats... 3 What is Exporting?... 3 File Not readable... 3 Export Instructions... 4 Access...............................................

More information

Getting started with the Asset Import Converter. Overview. Resources to help you

Getting started with the Asset Import Converter. Overview. Resources to help you Getting started with the Asset Import Converter Overview While you can manually enter asset information in the Catalog, you can also import asset data in the XML (extensible markup language) file format.

More information

Analyzing the Server Log

Analyzing the Server Log 87 CHAPTER 7 Analyzing the Server Log Audience 87 Introduction 87 Starting the Server Log 88 Using the Server Log Analysis Tools 88 Customizing the Programs 89 Executing the Driver Program 89 About the

More information

IBM Unica emessage Version 8 Release 6 February 13, 2015. User's Guide

IBM Unica emessage Version 8 Release 6 February 13, 2015. User's Guide IBM Unica emessage Version 8 Release 6 February 13, 2015 User's Guide Note Before using this information and the product it supports, read the information in Notices on page 403. This edition applies to

More information

Unleash the Power of e-learning

Unleash the Power of e-learning Unleash the Power of e-learning Version 1.5 November 2011 Edition 2002-2011 Page2 Table of Contents ADMINISTRATOR MENU... 3 USER ACCOUNTS... 4 CREATING USER ACCOUNTS... 4 MODIFYING USER ACCOUNTS... 7 DELETING

More information

SAS to Excel with ExcelXP Tagset Mahipal Vanam, Kiran Karidi and Sridhar Dodlapati

SAS to Excel with ExcelXP Tagset Mahipal Vanam, Kiran Karidi and Sridhar Dodlapati PharmaSUG2010 - Paper CC22 SAS to Excel with ExcelXP Tagset Mahipal Vanam, Kiran Karidi and Sridhar Dodlapati ABSTRACT Creating XML based excel files is a very convenient and powerful feature of SAS 9

More information

Flat Pack Data: Converting and ZIPping SAS Data for Delivery

Flat Pack Data: Converting and ZIPping SAS Data for Delivery Flat Pack Data: Converting and ZIPping SAS Data for Delivery Sarah Woodruff, Westat, Rockville, MD ABSTRACT Clients or collaborators often need SAS data converted to a different format. Delivery or even

More information

Importing and Exporting With SPSS for Windows 17 TUT 117

Importing and Exporting With SPSS for Windows 17 TUT 117 Information Systems Services Importing and Exporting With TUT 117 Version 2.0 (Nov 2009) Contents 1. Introduction... 3 1.1 Aim of this Document... 3 2. Importing Data from Other Sources... 3 2.1 Reading

More information

DocuSign Quick Start Guide. Using the Bulk Recipient Feature. Overview. Table of Contents

DocuSign Quick Start Guide. Using the Bulk Recipient Feature. Overview. Table of Contents DocuSign Quick Start Guide Using the Bulk Recipient Feature Overview There might be situations that require a sender to send the same document to a large number of recipients. A typical example is an updated

More information

MySQL for Beginners Ed 3

MySQL for Beginners Ed 3 Oracle University Contact Us: 1.800.529.0165 MySQL for Beginners Ed 3 Duration: 4 Days What you will learn The MySQL for Beginners course helps you learn about the world's most popular open source database.

More information

Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc.

Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2011 Advanced Crystal Reports TeachUcomp, Inc. it s all about you Copyright: Copyright 2011 by TeachUcomp, Inc. All rights reserved.

More information

Home Loan Manager Pro 7.1

Home Loan Manager Pro 7.1 Home Money Manager www.homemoneymanager.com.au Home Loan Manager Pro 7.1 The Mortgage Checker and Planning Tool 05 November 2015 DOWNLOAD SOFTWARE Home Loan Manager Pro is available from www.homemoneymanager.com.au

More information

Embedded Special Characters Kiran Karidi, Mahipal Vanam, and Sridhar Dodlapati

Embedded Special Characters Kiran Karidi, Mahipal Vanam, and Sridhar Dodlapati PharmaSUG2010 - Paper CC19 Embedded Special Characters Kiran Karidi, Mahipal Vanam, and Sridhar Dodlapati ABSTRACT When the report generated from the clinical trial data requires to show lot of information

More information

A Scheme for Automation of Telecom Data Processing for Business Application

A Scheme for Automation of Telecom Data Processing for Business Application A Scheme for Automation of Telecom Data Processing for Business Application 1 T.R.Gopalakrishnan Nair, 2 Vithal. J. Sampagar, 3 Suma V, 4 Ezhilarasan Maharajan 1, 3 Research and Industry Incubation Center,

More information

Let the CAT Out of the Bag: String Concatenation in SAS 9 Joshua Horstman, Nested Loop Consulting, Indianapolis, IN

Let the CAT Out of the Bag: String Concatenation in SAS 9 Joshua Horstman, Nested Loop Consulting, Indianapolis, IN Paper S1-08-2013 Let the CAT Out of the Bag: String Concatenation in SAS 9 Joshua Horstman, Nested Loop Consulting, Indianapolis, IN ABSTRACT Are you still using TRIM, LEFT, and vertical bar operators

More information

Users Guide. FTP/400 File Transfer API and Remote Command Server Version 1.00. By RJS Software Systems, Inc.

Users Guide. FTP/400 File Transfer API and Remote Command Server Version 1.00. By RJS Software Systems, Inc. FTP/400 File Transfer API and Remote Command Server Version 1.00 Users Guide By RJS Software Systems, Inc. RJS Software Systems P.O. Box 19408 Minneapolis, MN 55419 (612) 822-0412 Voice (612) 822-1364

More information

Microsoft Business Contact Manager Version 2.0 New to Product. Module 4: Importing and Exporting Data

Microsoft Business Contact Manager Version 2.0 New to Product. Module 4: Importing and Exporting Data Microsoft Business Contact Manager Version 2.0 New to Product Module 4: Importing and Exporting Data Terms of Use 2005 Microsoft Corporation. All rights reserved. No part of this content may be reproduced

More information

SECTION 5: Finalizing Your Workbook

SECTION 5: Finalizing Your Workbook SECTION 5: Finalizing Your Workbook In this section you will learn how to: Protect a workbook Protect a sheet Protect Excel files Unlock cells Use the document inspector Use the compatibility checker Mark

More information

Mastering Mail Merge. 2 Parts to a Mail Merge. Mail Merge Mailings Ribbon. Mailings Create Envelopes or Labels

Mastering Mail Merge. 2 Parts to a Mail Merge. Mail Merge Mailings Ribbon. Mailings Create Envelopes or Labels 2 Parts to a Mail Merge 1. MS Word Document (Letter, Labels, Envelope, Name Badge, etc) 2. Data Source Excel Spreadsheet Access Database / query Other databases (SQL Server / Oracle) Type in New List Mail

More information

Table of Contents. Introduction: 2. Settings: 6. Archive Email: 9. Search Email: 12. Browse Email: 16. Schedule Archiving: 18

Table of Contents. Introduction: 2. Settings: 6. Archive Email: 9. Search Email: 12. Browse Email: 16. Schedule Archiving: 18 MailSteward Manual Page 1 Table of Contents Introduction: 2 Settings: 6 Archive Email: 9 Search Email: 12 Browse Email: 16 Schedule Archiving: 18 Add, Search, & View Tags: 20 Set Rules for Tagging or Excluding:

More information

Intro to Mail Merge. Contents: David Diskin for the University of the Pacific Center for Professional and Continuing Education. Word Mail Merge Wizard

Intro to Mail Merge. Contents: David Diskin for the University of the Pacific Center for Professional and Continuing Education. Word Mail Merge Wizard Intro to Mail Merge David Diskin for the University of the Pacific Center for Professional and Continuing Education Contents: Word Mail Merge Wizard Mail Merge Possibilities Labels Form Letters Directory

More information

Getting started with the Stata

Getting started with the Stata Getting started with the Stata 1. Begin by going to a Columbia Computer Labs. 2. Getting started Your first Stata session. Begin by starting Stata on your computer. Using a PC: 1. Click on start menu 2.

More information

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

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

More information

Integrating SAS and Excel: an Overview and Comparison of Three Methods for Using SAS to Create and Access Data in Excel

Integrating SAS and Excel: an Overview and Comparison of Three Methods for Using SAS to Create and Access Data in Excel Integrating SAS and Excel: an Overview and Comparison of Three Methods for Using SAS to Create and Access Data in Excel Nathan Clausen, U.S. Bureau of Labor Statistics, Washington, DC Edmond Cheng, U.S.

More information

Thank you for using AD Bulk Export 4!

Thank you for using AD Bulk Export 4! Thank you for using AD Bulk Export 4! This document contains information to help you get the most out of AD Bulk Export, exporting from Active Directory is now quick and easy. Look here first for answers

More information

StreamServe Persuasion SP5 Control Center

StreamServe Persuasion SP5 Control Center StreamServe Persuasion SP5 Control Center User Guide Rev C StreamServe Persuasion SP5 Control Center User Guide Rev C OPEN TEXT CORPORATION ALL RIGHTS RESERVED United States and other international patents

More information

Business Intelligence Tutorial

Business Intelligence Tutorial IBM DB2 Universal Database Business Intelligence Tutorial Version 7 IBM DB2 Universal Database Business Intelligence Tutorial Version 7 Before using this information and the product it supports, be sure

More information

Microsoft Excel 2010. Understanding the Basics

Microsoft Excel 2010. Understanding the Basics Microsoft Excel 2010 Understanding the Basics Table of Contents Opening Excel 2010 2 Components of Excel 2 The Ribbon 3 o Contextual Tabs 3 o Dialog Box Launcher 4 o Quick Access Toolbar 4 Key Tips 5 The

More information

Importing TSM Data into Microsoft Excel using Microsoft Query

Importing TSM Data into Microsoft Excel using Microsoft Query Importing TSM Data into Microsoft Excel using Microsoft Query An alternate way to report on TSM information is to use Microsoft Excel s import facilities using Microsoft Query to selectively import the

More information

B) Mean Function: This function returns the arithmetic mean (average) and ignores the missing value. E.G: Var=MEAN (var1, var2, var3 varn);

B) Mean Function: This function returns the arithmetic mean (average) and ignores the missing value. E.G: Var=MEAN (var1, var2, var3 varn); SAS-INTERVIEW QUESTIONS 1. What SAS statements would you code to read an external raw data file to a DATA step? Ans: Infile and Input statements are used to read external raw data file to a Data Step.

More information

Excel Reporting with 1010data

Excel Reporting with 1010data Excel Reporting with 1010data (212) 405.1010 info@1010data.com Follow: @1010data www.1010data.com Excel Reporting with 1010data Contents 2 Contents Overview... 3 Start with a 1010data query... 5 Running

More information

Commander. The World's Leading Software for Label, Barcode, RFID & Card Printing

Commander. The World's Leading Software for Label, Barcode, RFID & Card Printing The World's Leading Software for Label, Barcode, RFID & Card Printing Commander Middleware for Automatically Printing in Response to User-Defined Events Contents Overview of How Commander Works 4 Triggers

More information

User s Guide for the Texas Assessment Management System

User s Guide for the Texas Assessment Management System User s Guide for the Texas Assessment Management System Version 8.3 Have a question? Contact Pearson s Austin Operations Center. Call 800-627-0225 for technical support Monday Friday, 7:30 am 5:30 pm (CT),

More information

Time Clock Import Setup & Use

Time Clock Import Setup & Use Time Clock Import Setup & Use Document # Product Module Category CenterPoint Payroll Processes (How To) This document outlines how to setup and use of the Time Clock Import within CenterPoint Payroll.

More information

What's New in ADP Reporting?

What's New in ADP Reporting? What's New in ADP Reporting? Welcome to the latest version of ADP Reporting! This release includes the following new features and enhancements. Use the links below to learn more about each one. What's

More information

While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX

While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX CC04 While You Were Sleeping - Scheduling SAS Jobs to Run Automatically Faron Kincheloe, Baylor University, Waco, TX ABSTRACT If you are tired of running the same jobs over and over again, this paper is

More information

PharmaSUG 2015 - Paper QT26

PharmaSUG 2015 - Paper QT26 PharmaSUG 2015 - Paper QT26 Keyboard Macros - The most magical tool you may have never heard of - You will never program the same again (It's that amazing!) Steven Black, Agility-Clinical Inc., Carlsbad,

More information

Business Intelligence Tutorial: Introduction to the Data Warehouse Center

Business Intelligence Tutorial: Introduction to the Data Warehouse Center IBM DB2 Universal Database Business Intelligence Tutorial: Introduction to the Data Warehouse Center Version 8 IBM DB2 Universal Database Business Intelligence Tutorial: Introduction to the Data Warehouse

More information

Excel: Introduction to Formulas

Excel: Introduction to Formulas Excel: Introduction to Formulas Table of Contents Formulas Arithmetic & Comparison Operators... 2 Text Concatenation... 2 Operator Precedence... 2 UPPER, LOWER, PROPER and TRIM... 3 & (Ampersand)... 4

More information

SAS 9.4 PC Files Server

SAS 9.4 PC Files Server SAS 9.4 PC Files Server Installation and Configuration Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2014. SAS 9.4 PC Files Server: Installation

More information

Your data is valuable! Think of how much time it will take you to manually re-enter all your data!

Your data is valuable! Think of how much time it will take you to manually re-enter all your data! Data Backup Beware: Your data is valuable! Think of how much time it will take you to manually re-enter all your data! The only protection you have is to do frequent Data-Backups, daily if possible! We

More information

Basics Series-4004 Database Manager and Import Version 9.0

Basics Series-4004 Database Manager and Import Version 9.0 Basics Series-4004 Database Manager and Import Version 9.0 Information in this document is subject to change without notice and does not represent a commitment on the part of Technical Difference, Inc.

More information

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 Often the most compelling way to introduce yourself to a software product is to try deliver value as soon as possible. Simego DS3 is designed to get you

More information

SAS/GRAPH 9.2 ODS Graphics Editor. User s Guide

SAS/GRAPH 9.2 ODS Graphics Editor. User s Guide SAS/GRAPH 9.2 ODS Graphics Editor User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2009. SAS/GRAPH 9.2: ODS Graphics Editor User's Guide. Cary, NC: SAS

More information

Counting the Ways to Count in SAS. Imelda C. Go, South Carolina Department of Education, Columbia, SC

Counting the Ways to Count in SAS. Imelda C. Go, South Carolina Department of Education, Columbia, SC Paper CC 14 Counting the Ways to Count in SAS Imelda C. Go, South Carolina Department of Education, Columbia, SC ABSTRACT This paper first takes the reader through a progression of ways to count in SAS.

More information

MAIL MERGE TUTORIAL. (For Microsoft Word 2003-2007 on PC)

MAIL MERGE TUTORIAL. (For Microsoft Word 2003-2007 on PC) MAIL MERGE TUTORIAL (For Microsoft Word 2003-2007 on PC) WHAT IS MAIL MERGE? It is a way of placing content from a spreadsheet, database, or table into a Microsoft Word document Mail merge is ideal for

More information

Paper FF-014. Tips for Moving to SAS Enterprise Guide on Unix Patricia Hettinger, Consultant, Oak Brook, IL

Paper FF-014. Tips for Moving to SAS Enterprise Guide on Unix Patricia Hettinger, Consultant, Oak Brook, IL Paper FF-014 Tips for Moving to SAS Enterprise Guide on Unix Patricia Hettinger, Consultant, Oak Brook, IL ABSTRACT Many companies are moving to SAS Enterprise Guide, often with just a Unix server. A surprising

More information

File by OCR Manual. Updated December 9, 2008

File by OCR Manual. Updated December 9, 2008 File by OCR Manual Updated December 9, 2008 edocfile, Inc. 2709 Willow Oaks Drive Valrico, FL 33594 Phone 813-413-5599 Email sales@edocfile.com www.edocfile.com File by OCR Please note: This program is

More information

Introduction to the Data Migration Framework (DMF) in Microsoft Dynamics WHITEPAPER

Introduction to the Data Migration Framework (DMF) in Microsoft Dynamics WHITEPAPER Introduction to the Data Migration Framework (DMF) in Microsoft Dynamics WHITEPAPER Junction Solutions documentation 2012 All material contained in this documentation is proprietary and confidential to

More information

Creating an Excel Database for a Mail Merge on a PC. Excel Spreadsheet Mail Merge. 0 of 8 Mail merge (PC)

Creating an Excel Database for a Mail Merge on a PC. Excel Spreadsheet Mail Merge. 0 of 8 Mail merge (PC) Creating an Excel Database for a Mail Merge on a PC Excel Spreadsheet Mail Merge 0 of 8 Creating an Excel Database for a Mail Merge on a PC 1. To create a database for a mail merge you will first need

More information

Access Queries (Office 2003)

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

More information

Jet Data Manager 2012 User Guide

Jet Data Manager 2012 User Guide Jet Data Manager 2012 User Guide Welcome This documentation provides descriptions of the concepts and features of the Jet Data Manager and how to use with them. With the Jet Data Manager you can transform

More information

Scribe Online Integration Services (IS) Tutorial

Scribe Online Integration Services (IS) Tutorial Scribe Online Integration Services (IS) Tutorial 7/6/2015 Important Notice No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, photocopying,

More information

Generating a Custom Bill of Materials

Generating a Custom Bill of Materials Summary Tutorial TU0104 (v2.3) May 16, 2008 This tutorial describes how to use the Report Manager to set up a Bill of Materials (BOM) report. The manipulation of data and columns and exporting to an Excel

More information

Downloading RIT Account Analysis Reports into Excel

Downloading RIT Account Analysis Reports into Excel Downloading RIT Account Analysis Reports into Excel In the last lesson you learned how to access the Account Analysis detail and export it to Excel through the Account Analysis function. Another way to

More information

Microsoft Excel Basics

Microsoft Excel Basics COMMUNITY TECHNICAL SUPPORT Microsoft Excel Basics Introduction to Excel Click on the program icon in Launcher or the Microsoft Office Shortcut Bar. A worksheet is a grid, made up of columns, which are

More information

ABSTRACT INTRODUCTION SAS AND EXCEL CAPABILITIES SAS AND EXCEL STRUCTURES

ABSTRACT INTRODUCTION SAS AND EXCEL CAPABILITIES SAS AND EXCEL STRUCTURES Paper 85-2010 Choosing the Right Tool from Your SAS and Microsoft Excel Tool Belt Steven First and Jennifer First, Systems Seminar Consultants, Madison, Wisconsin ABSTRACT There are over a dozen ways to

More information

Using SAS Output Delivery System (ODS) Markup to Generate Custom PivotTable and PivotChart Reports Chevell Parker, SAS Institute

Using SAS Output Delivery System (ODS) Markup to Generate Custom PivotTable and PivotChart Reports Chevell Parker, SAS Institute Using SAS Output Delivery System (ODS) Markup to Generate Custom PivotTable and PivotChart Reports Chevell Parker, SAS Institute ABSTRACT This paper illustrates how to use ODS markup to create PivotTable

More information

TheEducationEdge. Export Guide

TheEducationEdge. Export Guide TheEducationEdge Export Guide 102111 2011 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying,

More information

Results CRM 2012 User Manual

Results CRM 2012 User Manual Results CRM 2012 User Manual A Guide to Using Results CRM Standard, Results CRM Plus, & Results CRM Business Suite Table of Contents Installation Instructions... 1 Single User & Evaluation Installation

More information

SPSS: Getting Started. For Windows

SPSS: Getting Started. For Windows For Windows Updated: August 2012 Table of Contents Section 1: Overview... 3 1.1 Introduction to SPSS Tutorials... 3 1.2 Introduction to SPSS... 3 1.3 Overview of SPSS for Windows... 3 Section 2: Entering

More information

Making the Output Delivery System (ODS) Work for You William Fehlner, SAS Institute (Canada) Inc., Toronto, Ontario

Making the Output Delivery System (ODS) Work for You William Fehlner, SAS Institute (Canada) Inc., Toronto, Ontario Making the Output Delivery System (ODS) Work for You William Fehlner, SAS Institute (Canada) Inc, Toronto, Ontario ABSTRACT Over the years, a variety of options have been offered in order to give a SAS

More information

HYPERION DATA RELATIONSHIP MANAGEMENT RELEASE 9.3.1 BATCH CLIENT USER S GUIDE

HYPERION DATA RELATIONSHIP MANAGEMENT RELEASE 9.3.1 BATCH CLIENT USER S GUIDE HYPERION DATA RELATIONSHIP MANAGEMENT RELEASE 9.3.1 BATCH CLIENT USER S GUIDE Data Relationship Management Batch Client User s Guide, 9.3.1 Copyright 1999, 2007, Oracle and/or its affiliates. All rights

More information

Version 12.5. SAS Reporting Guide

Version 12.5. SAS Reporting Guide Version 12.5 SAS Reporting Guide July 29, 2013 Table of Contents Chapter 1 Using this Guide 1 Who Should Use This Guide 1 Introduction To Reporting 2 Reports 2 Summary Reports 2 Comprehensive Reports

More information

SUGI 29 Coders' Corner

SUGI 29 Coders' Corner Paper 074-29 Tales from the Help Desk: Solutions for Simple SAS Mistakes Bruce Gilsen, Federal Reserve Board INTRODUCTION In 19 years as a SAS consultant at the Federal Reserve Board, I have seen SAS users

More information

Sample- for evaluation only. Advanced Excel. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc.

Sample- for evaluation only. Advanced Excel. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2010 Advanced Excel TeachUcomp, Inc. it s all about you Copyright: Copyright 2010 by TeachUcomp, Inc. All rights reserved. This publication,

More information

Advanced Excel Charts : Tables : Pivots : Macros

Advanced Excel Charts : Tables : Pivots : Macros Advanced Excel Charts : Tables : Pivots : Macros Charts In Excel, charts are a great way to visualize your data. However, it is always good to remember some charts are not meant to display particular types

More information

ITS Training Class Charts and PivotTables Using Excel 2007

ITS Training Class Charts and PivotTables Using Excel 2007 When you have a large amount of data and you need to get summary information and graph it, the PivotTable and PivotChart tools in Microsoft Excel will be the answer. The data does not need to be in one

More information

10 Database Utilities

10 Database Utilities Database Utilities 10 1 10 Database Utilities 10.1 Overview of the Exporter Software PRELIMINARY NOTE: The Exporter software, catalog Item 709, is optional software which you may order should you need

More information

Database migration using Wizard, Studio and Commander. Based on migration from Oracle to PostgreSQL (Greenplum)

Database migration using Wizard, Studio and Commander. Based on migration from Oracle to PostgreSQL (Greenplum) Step by step guide. Database migration using Wizard, Studio and Commander. Based on migration from Oracle to PostgreSQL (Greenplum) Version 1.0 Copyright 1999-2012 Ispirer Systems Ltd. Ispirer and SQLWays

More information

You have got SASMAIL!

You have got SASMAIL! You have got SASMAIL! Rajbir Chadha, Cognizant Technology Solutions, Wilmington, DE ABSTRACT As SAS software programs become complex, processing times increase. Sitting in front of the computer, waiting

More information

What is Microsoft Excel?

What is Microsoft Excel? What is Microsoft Excel? Microsoft Excel is a member of the spreadsheet family of software. Spreadsheets allow you to keep track of data, create charts based from data, and perform complex calculations.

More information

StreamServe Persuasion SP4 StreamServe Connect for SAP - Business Processes

StreamServe Persuasion SP4 StreamServe Connect for SAP - Business Processes StreamServe Persuasion SP4 StreamServe Connect for SAP - Business Processes User Guide Rev A StreamServe Persuasion SP4StreamServe Connect for SAP - Business Processes User Guide Rev A SAP, mysap.com,

More information

FrontStream CRM Import Guide Page 2

FrontStream CRM Import Guide Page 2 Import Guide Introduction... 2 FrontStream CRM Import Services... 3 Import Sources... 4 Preparing for Import... 9 Importing and Matching to Existing Donors... 11 Handling Receipting of Imported Donations...

More information