Table 2 Original SAS ASCII output Table 3 From SAS to Excel using DDE

Size: px
Start display at page:

Download "Table 2 Original SAS ASCII output Table 3 From SAS to Excel using DDE"

Transcription

1

2 STUDY Table 11.2 Assesment of the device: Visual analogic scale (VAS) A. Descriptive statistics Device Statistic mm Easyhaler Mean 80.2 Median 84.0 Min 36.0 Max SD 17.5 N 69.0 Turbuhaler Mean 69.5 Median 74.0 Min 3.0 Max SD 23.5 N 69.0 B. Wilcoxon signed rank test for the paired differences between the devices Test Comparison statistic p-value Easyhaler - Turbuhaler STUDY Table 11.2 Assesment of the device: Visual analogic scale (VAS) A. Descriptive statistics Device Statistic mm Easyhaler Mean 80,2 Median 84 Min 36 Max 100 SD 17,5 N 69 Turbuhaler Mean 69,5 Median 74 Min 3 Max 100 SD 23,5 N 69 B. Wilcoxon signed rank test for the paired differences between the devices Comparison Test statistic p-value Easyhaler - Turbuhaler Table 2 Original SAS ASCII output Table 3 From SAS to Excel using DDE

3 STUDY Table 11.2 Assesment of the device: Visual analogic scale (VAS) A. Descriptive statistics Treatment Statistic mm Easyhaler Mean 80.2 Median 84.0 Min 36.0 Max SD 17.5 N 69.0 Turbuhaler Mean 69.5 Median 74.0 Min 3.0 Max SD 23.5 N 69.0 B. Wilcoxon signed rank test for the paired differences between the devices Comparison Test statistic p-value Easyhaler - Turbuhaler STUDY Table 11.2 Assesment of the device: Visual analogic scale (VAS) A. Descriptive statistics Device Statistic mm Easyhaler Mean 80.2 Median 84.0 Min 36.0 Max SD 17.5 N 69.0 Turbuhaler Mean 69.5 Median 74.0 Min 3.0 Max SD 23.5 N 69.0 B. Wilcoxon signed rank test for the paired differences between the devices Test Comparison statistic p-value Easyhaler - Turbuhaler Table 4 From SAS to Word using RTF Table 5 From SAS to HTML using SAS macros

4 -XQHWK 6(8*,0LND/HLQRQHQ

5 -XQHWK 6(8*,0LND/HLQRQHQ

6 -XQHWK 6(8*,0LND/HLQRQHQ

7 -XQHWK 6(8*,0LND/HLQRQHQ

8 -XQHWK 6(8*,0LND/HLQRQHQ

9 -XQHWK 6(8*,0LND/HLQRQHQ

10 -XQHWK 6(8*,0LND/HLQRQHQ

11 -XQHWK 6(8*,0LND/HLQRQHQ

12 /* opening Excel from SAS */ options noxwait noxsync; x cd \progra~1\micros~1\office ; x excel ; /* waiting for a while for excel to open: */ data _null_; x=sleep(2); run; -XQHWK 6(8*,0LND/HLQRQHQ

13 /* opening the ascii file to excel */ filename command dde excel system ; data _null_; file command; put [APP.MINIMIZE()] ; put [OPEN("c:\temp\table.lst")] ; -XQHWK 6(8*,0LND/HLQRQHQ

14 /* formatting the table */ data _null_; file command; put [SELECT("R1C1:R5C1")] ; put [STYLE(true,false)] ; put [FORMAT.FONT("Times New Roman")] ; put [SELECT("R6C1:R50C1")] ; put [FORMAT.FONT("Courier New")] ; -XQHWK 6(8*,0LND/HLQRQHQ

15 /* saving as an Excel sheet */ data _null_; file command; put [SAVE.AS("c:\temp\table.xls",1,"", FALSE,"",FALSE)] ; /* closing excel */ put [QUIT()] ; run; -XQHWK 6(8*,0LND/HLQRQHQ

16 -XQHWK 6(8*,0LND/HLQRQHQ

17 -XQHWK 6(8*,0LND/HLQRQHQ

18 -XQHWK 6(8*,0LND/HLQRQHQ

19 filename command dde winword system'; data _null_; file command; put '[ToolsMacro.Name="formtab",.Run]'; run; -XQHWK 6(8*,0LND/HLQRQHQ

20 -XQHWK 6(8*,0LND/HLQRQHQ

21 -XQHWK 6(8*,0LND/HLQRQHQ

22 -XQHWK 6(8*,0LND/HLQRQHQ

23 -XQHWK 6(8*,0LND/HLQRQHQ

24 /* output to HTML format */ %out2htm(capture=on, window=output, runmode=b); proc report...; /* saving the HTML file */ %out2htm(capture=off, window=output, runmode=b, openmode=replace, htmlfile=c:\temp\table.html); -XQHWK 6(8*,0LND/HLQRQHQ

25 -XQHWK 6(8*,0LND/HLQRQHQ

26 -XQHWK 6(8*,0LND/HLQRQHQ

27 -XQHWK 6(8*,0LND/HLQRQHQ

28 -XQHWK 6(8*,0LND/HLQRQHQ

29 -XQHWK 6(8*,0LND/HLQRQHQ

30 HIGH-QUALITY SAS REPORTING - WHICH IS THE OPTIMAL OUTPUT FORMAT? Mika Leinonen Dept. of Biostatistics and Data Management, Orion Pharma, Espoo, Finland Abstract A clinical study report includes a huge amount of listings and tables produced by the SAS System. One of the worst bottlenecks in the process of creating a study report is the management of the SAS output: the ASCII output produced by SAS has to be exported to a more convenient format. The four frequently applied output formats in the pharmaceutical industry are MS-Word, MS- Excel, HTML and PDF. Various methods for creating documents in these formats using Base SAS have been published. A review of the methods will be presented, along with the main tools utilised by these methods (Proc Report, Dynamic Data Exchange, Rich Text Format, visual basic macros, HTML code). Pros and cons of the four major formats will be compared. The forthcoming release 7 of SAS is expected to make the output management easier by offering a set of new formats. Therefore, also future prospects of output management using SAS will be discussed. Introduction The data flow in clinical trials can typically be divided into three parts. Firstly, the data collected from the patients will be cleaned for errors and entered to a clinical data management system. Secondly, the data will be transformed to SAS datasets for analysis and reporting. Thirdly, the output created by the SAS System (tables, listings and figures) will be imported to a document management system. The focus of this paper will be on the third part, the management of SAS output. In release 6.x of the SAS System for Windows, ASCII is in practise the only output format created automatically by the system. Conversion of ASCII output to a more convenient format is very time-consuming, if it is done manually. In addition, there is a risk of typing errors, if the output will be further edited. Therefore, there should be a way to produce the output needed in the final documentation directly with the SAS System. At the moment, there is no global standard for the output format in pharmaceutical industry. Microsoft Word is often used as the main tool for creating documents. That being the case, a natural choice would be to export the SAS output to Word. Microsoft Excel documents can easily be integrated with Word documents and hence SAS output is sometimes exported to Excel. Two other output formats, HTML (HyperText Markup Language) and PDF (Portable Document Format) have recently become more popular. Especially important feature with these two formats is the excellent linking capability, which makes the management of files easier. In this paper, output management options by using Base SAS are discussed. In addition, there are many tailor-made SAS solutions available. Creating high-quality reports can be made easier by using Enterprise Reporter. SAS/PH-Clinical is a work-group application for reviewing and

31 analyzing clinical trials data. The SAS PharmaTechnology Process is a technology architecture and a suite of products trying to optimise the whole data flow in clinical trials. These solutions will not be discussed in this paper. All examples presented in this paper were produced in the following environment: Microsoft Windows 95 SAS System for Windows release 6.12 Microsoft Office 97 (MS-Word, MS-Excel) Microsoft Internet Explorer 3.0 Adobe Acrobat Distiller 3.01 Case I: From SAS to Excel using Dynamic Data Exchange Dynamic Data Exchange (DDE) is a method for exchanging information between Windows applications. The concept is based on a client/server relationship. DDE can only be used between two applications that both have a support for DDE. In release 6.12 of SAS System for Windows, SAS always has the role of client. From SAS, you can invoke and close applications, send commands to applications and exchange data between applications. In this case, a table produced by Proc Report in SAS will be sent to Excel, editing is done to the table and finally the table is saved as an Excel worksheet. Part 1: To invoke Excel from SAS, the following code is submitted: /* opening Excel from SAS */ options noxwait noxsync; x cd \util\office\ ; x excel ; /* waiting for a while for Excel to invoke */ data _null_; x=sleep(2); System option NOXWAIT causes the command prompt window to close automatically when the application is finished, without having to type EXIT. System option NOXSYNC allows the SAS System to continue processing while Excel is still running. Excel will be invoked from its own installation directory, which typically is not the current default directory. Though computers nowadays are very quick to process, it is useful to wait a couple of seconds for Excel to invoke. Part 2: To export a table (ASCII file) produced by SAS to current Excel worksheet, the following code is submitted: /* opening the ascii file to excel */ filename command dde excel system ; data _null_; file command; put [APP.MINIMIZE()] ; put [OPEN("c:\work\table.lst")] ; To specify the use of DDE in SAS, FILENAME statement of the following form is used. Firstly, a valid name is given for the file reference, in this case COMMAND. Secondly, the keyword DDE tells the SAS System that you would like to use DDE. The third part, a DDE

32 triplet, specifies the actual DDE task. DDE triplet is an application-specific list of the following form: application-name topic!item. Application name is the executable name of the server application, in this case Excel. Topic defines the topic of data exchange between the SAS System and the server. This can be, for example, a full path filename of a document. In this case, the SYSTEM topic enables you to execute commands within Excel. Item specifies the range of conversation between the SAS System and the server. For example, this could include a range of cells of a document specified as a topic. In this case, for SYSTEM topic there is no item. Because DDE triplets are application-specific, correct syntax is often difficult to find. Sometimes you can get help by using the DDE Triplet command in the Options Menu in the SAS AWS menu bar. Otherwise, you should refer to the DDE server application s documentation. In the documentation of the SAS System for Windows [1], there is a more complete discussion about the DDE triplet. However, finding the correct syntax of the DDE triplet can often be laborious. After the filename containing the DDE triplet has been defined, you can issue commands to the application in a data step by using PUT statement. In release 6.12 of the SAS System, when Excel is used as a server, the commands have to be issued by using the macro language of version 4.x of Excel. In this example, first the application is minimised by issuing the command APP.MINIMIZE( ) and after that, the ASCII file is opened to the current sheet by the OPEN( ) command. Part 3: The SAS table has now been exported to the Excel worksheet. To enhance the lay-out, the following code is submitted: /* formatting the table */ data _null_; file command; put [SELECT("R1C1:R5C1")] ; put [STYLE(true,false)] ; put [FORMAT.FONT("Times New Roman")] ; put [SELECT("R6C1:R50C1")] ; put [FORMAT.FONT("Courier New")] ; Again, the macro language of version 4.x of Excel is used. First, 5 first rows and the first column of the sheet are selected (command SELECT). The text in the selected area is then bolded (command STYLE) and the font is changed to Times New Roman (command FORMAT.FONT). After that, the font in rows 6-50 is changed to Courier New. Part 4: The table is now ready. It will be saved as an Excel worksheet. After that, Excel is closed. The following code is submitted:

33 /* saving as an Excel sheet */ data _null_; file command; put [SAVE.AS("c:\work\table.xls",1,"", FALSE,"",FALSE)] ; /* closing excel */ put [QUIT()] ; run; It is often quite difficult to find all the correct options to the commands. In this example, you would like to save the file as an Excel 6.0 worksheet without Excel prompting for anything. The final Excel table is presented in Table 3. From version 5.x of Excel onward, Visual Basic is used instead of the old Excel macro language as the tool for writing macros in Excel. Unfortunately, Visual Basic is not supported in the DDE link between release 6.12 of the SAS System and Excel. However, Excel Visual Basic macros can be used via DDE by invoking them using the old Excel macro language. Case II: From SAS to Word using WordBasic Macros Another application, that can be used as a server for the SAS System by using DDE is Microsoft Word. WordBasic macros of the current versions of Word are supported in DDE of the release 6.12 of the SAS System. Because the WordBasic code is not too compact, it is often more convenient to record and edit macros in Word and save them. From SAS, these macros can be invoked using DDE. A typical macro designed to format a table first opens the file to Word, formats the lay-out and finally saves the file in Word format. Following is an example on how to invoke a WordBasic macro from the SAS System using DDE. filename command dde winword system'; data _null_; file command; put '[ToolsMacro.Name="formtab",.Run]'; run; It is even possible to convert the ASCII tables to Word table format. An excellent example is presented by Gary Cunningham in [2]. ASCII tables are created by using Proc Report and delimiters are inserted between cells. The tables are exported to Word using DDE. In Word, Convert-Text-to-Table command is utilised to convert the ASCII tables to Word tables. Case III: From SAS to Word using Rich Text Format Rich Text Format (RTF) is a publicly available document format maintained by Microsoft. For example, Word 97 uses RTF as a default document format. Also various other applications have the ability to import RTF files. Peszek & Peszek [3] have published a SAS macro, which converts ASCII output produced by the SAS System to RTF format. The idea is first to insert unformatted text (cells of the table, headers and other related information) to a file. After that, appropriate control words and symbols are inserted to the file. A table produced using this macro can be found from Table 4.

34 Using the SAS macro by Peszek & Peszek is relatively easy, you need not to be a SAS or a programming specialist. If you would like to expand the macro, you need to be familiar with the RTF language and with SAS macro language. Also other SAS macros using same kind of approach have been published in Internet. You need to be careful when producing files including RTF code. If you open a RTF file with errors in the code to Word, Word will probably crash down. Case IV: From SAS to HTML using SAS macros SAS Institute has produced a set of macros called Web Publishing Tools [4]. These macros convert SAS output or SAS datasets to HTML format. The tables produced by these macros are static and the purpose is only to convert tables to a different output format. The three basic conversions are: SAS dataset to HTML Output of any SAS procedure to HTML Output of Proc Tabulate to HTML. The first and third options (dataset or Proc Tabulate) provide more options regarding lay-out. However, the second option (any output) is discussed here, because of the ease of use: it is often quite difficult to save the output of a SAS procedure to a SAS dataset, and the syntax of Proc Tabulate is very complicated. The following example converts the output of Proc Report to a HTML file: /* output to HTML format */ %out2htm(capture=on, window=output, runmode=b); proc report...; /* saving the HTML file */ %out2htm(capture=off, window=output, runmode=b, openmode=replace, htmlfile=c:\work\table.html); A table produced by this program is presented in Table 5. Case V: From SAS to PDF Adobe Portable Document Format (PDF) is an open standard for electronic document distribution. PDF files can be shared, viewed, navigated, and printed exactly as intended by anyone with a free Adobe Acrobat Reader. The U.S. Food and Drug Administration (FDA) has released guidance on use of electronic documents in pharmaceutical industry [5]. At the moment, PDF is a preferred format type for text and images reviewed by the FDA. According to author s knowledge, there is currently no easy solution available to produce PDF files directly from SAS. However, you can create PDF files using the DDE link between SAS and Excel or Word. One solution would be first to change your current printer in Excel or Word to print to a PDF file and after that, simply send the print command to Excel or Word using DDE. To be able to do this, you need to have the complete Adobe Acrobat program installed. You cannot create PDF files with the free Adobe Acrobat Reader.

35 What next? The forthcoming releases 7 and 8 of SAS seem to have a lot to offer, regarding output management. Output Delivery System (ODS) will be introduced to almost all SAS procedures, making the customisation of output much more flexible. With ODS, you can select specific components from the output, define output and style templates and format fonts, colors and other visual aspects of your output. There are three main formats for the output: ASCII, SAS data set and HTML. In addition, RTF and Postscript files are included as experimental alternatives. Much emphasis has been put on creating HTML files, including options to create links between different objects. Conclusions The need to produce documents in the final format directly with the SAS System is obvious. The tools currently available in the SAS System are incomplete. Too much programming work is needed to create customised output in the formats presented in this paper (Word, Excel, HTML, PDF). Pros and cons of the methods presented in this paper are summarised in Table 1. The selection of the output format depends on various aspects, but there are two especially important questions: Which is the format of the body document (SAS output will be integrated to the body document)? Should linking / navigation be possible? Concerning the first question, Word is often the tool, which is used for writing the body document. Also, Word is often the final output format for the body document, although, because of the guidance from the FDA [5], PDF is becoming increasingly popular. Thus, Word would be a desirable selection for this purpose. The final documentation of a drug development process consists of a huge number of documents. Management of these documents is much easier, if navigation is possible. For this purpose, HTML and PDF would be ideal formats. At the moment, creation of HTML documents is easier from the SAS System. There are great expectations on the forthcoming releases of the SAS System. The support for creating output directly from the SAS System in the desired formats will be considerably better. The focus of the SAS Institute seems to be in HTML. Also Word documents should be easy to produce, because the option to create RTF output will be added to the SAS System. However, for pharmaceutical industry, better tools to produce PDF documents with the SAS System would still be needed.

36 Trademark notice: SAS is a registered trademark of SAS Institute Inc. Other brand and product names are registered trademarks or trademarks of their respective companies. References: [1] SAS Institute Inc. (1996). SAS Companion for the Microsoft Windows Environment, Version 6, Second Edition. Cary, NC: SAS Institute Inc. [2] Cunningham G. (1998). An Easy-to-Use SAS Macro for Use with Microsoft Windows That Converts Existing Text Tables to Microsoft Word Tables. Proceedings of PharmaSUG 98 Conference. San Fransisco, CA. [3] Peszek I. & Peszek R. (1998). Automate the Creation and Manipulation of Word Processor Ready SAS Output. SAS Institute Inc. [4] SAS Institute Staffs. Web Publishing Tools. SAS Institute Inc, [5] FDA (1999). Guidance for Industry: Providing Regulatory Submissions in Electronic Format - General Considerations. U.S. Food and Drug Administration, Rockville, MD. Author: Mika Leinonen Orion Pharma, Department of Biostatistics and Data Management Orionintie 1, P.O. Box 65 FIN Espoo, Finland Phone: Mika.Leinonen@Orion.Fi

37 Case Pros Cons Case I: From SAS to Excel using Dynamic Data Exchange SAS System release 6.12 and Excel 97 are compatible with regard to DDE The DDE link seems to be very stable, crashes of the system are rare Excel is not very commonly used as an output format There is no support for the current Excel macro language (Visual Basic) Customisation of the table lay-out can be laborious Excel does a lot of automatic formatting, which can cause trouble Case II: From SAS to Word using WordBasic Macros Word is a commonly used output format RTF format used by Word will be better supported by SAS in the future The DDE link between SAS and Word does not seem to be stable Customisation of the table lay-out can be laborious Case III: From SAS to Word using Rich Text Format Word is a commonly used output format You can relatively easily produce customised layouts Various applications can import RTF files Errors in RTF code can crash applications Writing SAS macros to produce RTF requires good knowledge of both RTF code and SAS macro language Case IV: From SAS to HTML using SAS macros HTML files can be read with various applications in different platforms Excellent and easy-touse linking capabilities In releases 7 and 8 of SAS, very much emphasis is put on HTML HTML is not yet commonly used as a general output format Case V: From SAS to PDF PDF files can be read with various applications in different platforms Excellent linking capabilities Creation of PDF documents is difficult with SAS No direct support for PDF in SAS has been promised (except for Postscript files) Table 1 Summary of Pros and Cons of the methods

38 STUDY Table 11.2 Assesment of the device: Visual analogic scale (VAS) A. Descriptive statistics Device Statistic mm Easyhaler Mean 80.2 Median 84.0 Min 36.0 Max SD 17.5 N 69.0 Turbuhaler Mean 69.5 Median 74.0 Min 3.0 Max SD 23.5 N 69.0 B. Wilcoxon signed rank test for the paired differences between the devices Test Comparison statistic p-value Easyhaler - Turbuhaler STUDY Table 11.2 Assesment of the device: Visual analogic scale (VAS) A. Descriptive statistics Device Statistic mm Easyhaler Mean 80,2 Median 84 Min 36 Max 100 SD 17,5 N 69 Turbuhaler Mean 69,5 Median 74 Min 3 Max 100 SD 23,5 N 69 B. Wilcoxon signed rank test for the paired differences between the devices Comparison Test statistic p-value Easyhaler - Turbuhaler Table 2 Original SAS ASCII output Table 3 From SAS to Excel using DDE

39 STUDY Table 11.2 Assesment of the device: Visual analogic scale (VAS) A. Descriptive statistics Treatment Statistic mm Easyhaler Mean 80.2 Median 84.0 Min 36.0 Max SD 17.5 N 69.0 Turbuhaler Mean 69.5 Median 74.0 Min 3.0 Max SD 23.5 N 69.0 B. Wilcoxon signed rank test for the paired differences between the devices Comparison Test statistic p-value Easyhaler - Turbuhaler STUDY Table 11.2 Assesment of the device: Visual analogic scale (VAS) A. Descriptive statistics Device Statistic mm Easyhaler Mean 80.2 Median 84.0 Min 36.0 Max SD 17.5 N 69.0 Turbuhaler Mean 69.5 Median 74.0 Min 3.0 Max SD 23.5 N 69.0 B. Wilcoxon signed rank test for the paired differences between the devices Test Comparison statistic p-value Easyhaler - Turbuhaler Table 4 From SAS to Word using RTF Table 5 From SAS to HTML using SAS macros

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

Importing Excel File using Microsoft Access in SAS Ajay Gupta, PPD Inc, Morrisville, NC

Importing Excel File using Microsoft Access in SAS Ajay Gupta, PPD Inc, Morrisville, NC ABSTRACT PharmaSUG 2012 - Paper CC07 Importing Excel File using Microsoft Access in SAS Ajay Gupta, PPD Inc, Morrisville, NC In Pharmaceuticals/CRO industries, Excel files are widely use for data storage.

More information

Choosing the Best Method to Create an Excel Report Romain Miralles, Clinovo, Sunnyvale, CA

Choosing the Best Method to Create an Excel Report Romain Miralles, Clinovo, Sunnyvale, CA Choosing the Best Method to Create an Excel Report Romain Miralles, Clinovo, Sunnyvale, CA ABSTRACT PROC EXPORT, LIBNAME, DDE or excelxp tagset? Many techniques exist to create an excel file using SAS.

More information

Using DDE and SAS/Macro for Automated Excel Report Consolidation and Generation

Using DDE and SAS/Macro for Automated Excel Report Consolidation and Generation Using DDE and SAS/Macro for Automated Excel Report Consolidation and Generation Mengxi Li, Sandra Archer, Russell Denslow Sodexho Campus Services, Orlando, FL Abstract Each week, the Sodexho Campus Services

More information

Combining SAS LIBNAME and VBA Macro to Import Excel file in an Intriguing, Efficient way Ajay Gupta, PPD Inc, Morrisville, NC

Combining SAS LIBNAME and VBA Macro to Import Excel file in an Intriguing, Efficient way Ajay Gupta, PPD Inc, Morrisville, NC ABSTRACT PharmaSUG 2013 - Paper CC11 Combining SAS LIBNAME and VBA Macro to Import Excel file in an Intriguing, Efficient way Ajay Gupta, PPD Inc, Morrisville, NC There are different methods such PROC

More information

Using SAS DDE to Control Excel

Using SAS DDE to Control Excel Using SAS DDE to Control Excel George Zhu Alberta Health, Government of Alberta Edmonton SAS User Group Meeting April 15, 2015 1 DDE: Dynamic Data Exchange 2 Examples and Demonstration Demo 1: Import password

More information

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix Jennifer Clegg, SAS Institute Inc., Cary, NC Eric Hill, SAS Institute Inc., Cary, NC ABSTRACT Release 2.1 of SAS

More information

Automatic Conversion of SAS Enhanced Programs to PDF

Automatic Conversion of SAS Enhanced Programs to PDF PhUSE 2009 Paper PO13 Automatic Conversion of SAS Enhanced Programs to PDF Dirk Spruck, Accovion, Marburg, Germany Piia-Piret Eomois, German Cancer Research Center, Heidelberg, Germany ABSTRACT This paper

More information

Spelling Checker Utility in SAS using VBA Macro and SAS Functions Ajay Gupta, PPD, Morrisville, NC

Spelling Checker Utility in SAS using VBA Macro and SAS Functions Ajay Gupta, PPD, Morrisville, NC PharmaSUG 2015 - Paper P017 Spelling Checker Utility in SAS using VBA Macro and SAS Functions Ajay Gupta, PPD, Morrisville, NC ABSTRACT In Pharmaceuticals/CRO industries, it is quite common to have typographical

More information

Different Approaches to Maintaining Excel Reports

Different Approaches to Maintaining Excel Reports Different Approaches to Maintaining Excel Reports Presented by: Amanda Bin Feng ING Direct Canada Toronto Area SAS Society, December 11, 2009 Objective When we need to maintain routine reports, we would

More information

Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ

Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ PharmaSUG 2014 PO10 Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ ABSTRACT As more and more organizations adapt to the SAS Enterprise Guide,

More information

Using the Acrobat tab in Microsoft Word: Setting PDF Preferences

Using the Acrobat tab in Microsoft Word: Setting PDF Preferences Using the Acrobat tab in Microsoft Word: Setting PDF Preferences IT Documentation Team, January 2015 (Reviewed July 2015) If you have Adobe Acrobat Pro XI installed on your PC 1, you ll see an additional

More information

Producing Structured Clinical Trial Reports Using SAS: A Company Solution

Producing Structured Clinical Trial Reports Using SAS: A Company Solution Producing Structured Clinical Trial Reports Using SAS: A Company Solution By Andy Lawton, Helen Dewberry and Michael Pearce, Boehringer Ingelheim UK Ltd INTRODUCTION Boehringer Ingelheim (BI), like all

More information

Create an Excel report using SAS : A comparison of the different techniques

Create an Excel report using SAS : A comparison of the different techniques Create an Excel report using SAS : A comparison of the different techniques Romain Miralles, Clinovo, Sunnyvale, CA Global SAS Forum 2011 April 2011 1 1. ABSTRACT Many techniques exist to create an Excel

More information

Listings and Patient Summaries in Excel (SAS and Excel, an excellent partnership)

Listings and Patient Summaries in Excel (SAS and Excel, an excellent partnership) Paper TS01 Listings and Patient Summaries in Excel (SAS and Excel, an excellent partnership) Xavier Passera, Detour Solutions Ltd., United Kingdom ABSTRACT The purpose of this paper is to explain how SAS

More information

Creating Accessible Word Documents

Creating Accessible Word Documents Center for Faculty Development and Support Creating Accessible Word Documents With Microsoft Word 2008 for Macintosh CREATING ACCESSIBLE WORD DOCUMENTS 3 Overview 3 Learning Objectives 3 Prerequisites

More information

Customized Excel Output Using the Excel Libname Harry Droogendyk, Stratia Consulting Inc., Lynden, ON

Customized Excel Output Using the Excel Libname Harry Droogendyk, Stratia Consulting Inc., Lynden, ON Paper SIB-105 Customized Excel Output Using the Excel Libname Harry Droogendyk, Stratia Consulting Inc., Lynden, ON ABSTRACT The advent of the ODS ExcelXP tagset and its many features has afforded the

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

Adobe Acrobat 9 Pro Accessibility Guide: Creating Accessible PDF from Microsoft Word

Adobe Acrobat 9 Pro Accessibility Guide: Creating Accessible PDF from Microsoft Word Adobe Acrobat 9 Pro Accessibility Guide: Creating Accessible PDF from Microsoft Word Adobe, the Adobe logo, Acrobat, Acrobat Connect, the Adobe PDF logo, Creative Suite, LiveCycle, and Reader are either

More information

Best practices for producing high quality PDF files

Best practices for producing high quality PDF files University of Michigan Deep Blue deepblue.lib.umich.edu 2006-05-05 Best practices for producing high quality PDF files Formats Group, Deep Blue http://hdl.handle.net/2027.42/58005 Best practices for producing

More information

Figure 1 - BI Publisher Enterprise Capabilities. OAUG Forum @ Collaborate 08 Page 2 Copyright 2008 by Lee Briggs

Figure 1 - BI Publisher Enterprise Capabilities. OAUG Forum @ Collaborate 08 Page 2 Copyright 2008 by Lee Briggs Oracle BI Publisher was originally developed to solve these reporting problems. It was first released with Oracle E- Business Suite 11.5.10 towards the end of 2005. The original release was called XML

More information

Using FileMaker Pro with Microsoft Office

Using FileMaker Pro with Microsoft Office Hands-on Guide Using FileMaker Pro with Microsoft Office Making FileMaker Pro Your Office Companion page 1 Table of Contents Introduction... 3 Before You Get Started... 4 Sharing Data between FileMaker

More information

Import Data to Excel Start Excel.

Import Data to Excel Start Excel. Step-By-Step EXERCISE 5-1 Import Data to Excel Start Excel. Excel can import data, or bring it in from other sources and file formats. Importing Open the data fi le data is useful because it prevents you

More information

EXTRACTING DATA FROM PDF FILES

EXTRACTING DATA FROM PDF FILES Paper SER10_05 EXTRACTING DATA FROM PDF FILES Nat Wooding, Dominion Virginia Power, Richmond, Virginia ABSTRACT The Adobe Portable Document File (PDF) format has become a popular means of producing documents

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

Hands-on Guide. FileMaker Pro. Using FileMaker Pro with Microsoft Office

Hands-on Guide. FileMaker Pro. Using FileMaker Pro with Microsoft Office Hands-on Guide FileMaker Pro Using FileMaker Pro with Microsoft Office Table of Contents Introduction... 3 Before You Get Started... 4 Sharing Data between FileMaker Pro and Microsoft Excel... 5 Drag and

More information

PDF Accessibility Overview

PDF Accessibility Overview Contents 1 Overview of Portable Document Format (PDF) 1 Determine the Accessibility Path for each PDF Document 2 Start with an Accessible Document 2 Characteristics of Accessible PDF files 4 Adobe Acrobat

More information

Introduction to SAS Business Intelligence/Enterprise Guide Alex Dmitrienko, Ph.D., Eli Lilly and Company, Indianapolis, IN

Introduction to SAS Business Intelligence/Enterprise Guide Alex Dmitrienko, Ph.D., Eli Lilly and Company, Indianapolis, IN Paper TS600 Introduction to SAS Business Intelligence/Enterprise Guide Alex Dmitrienko, Ph.D., Eli Lilly and Company, Indianapolis, IN ABSTRACT This paper provides an overview of new SAS Business Intelligence

More information

ebooks: Exporting EPUB files from Adobe InDesign

ebooks: Exporting EPUB files from Adobe InDesign White Paper ebooks: Exporting EPUB files from Adobe InDesign Table of contents 1 Preparing a publication for export 4 Exporting an EPUB file The electronic publication (EPUB) format is an ebook file format

More information

Applications Development

Applications Development Paper 21-25 Using SAS Software and Visual Basic for Applications to Automate Tasks in Microsoft Word: An Alternative to Dynamic Data Exchange Mark Stetz, Amgen, Inc., Thousand Oaks, CA ABSTRACT Using Dynamic

More information

The Microsoft Access 2007 Screen

The Microsoft Access 2007 Screen 1 of 1 Office Button The Microsoft Access 2007 Screen Title Bar Help Ribbon Quick Access Toolbar Database Components Active Component NOTE: THIS HELP DOCUMENT EXPLAINS THE LAYOUT OF ACCESS. FOR MORE INFORMATION

More information

Adobe Conversion Settings in Word. Section 508: Why comply?

Adobe Conversion Settings in Word. Section 508: Why comply? It s the right thing to do: Adobe Conversion Settings in Word Section 508: Why comply? 11,400,000 people have visual conditions not correctible by glasses. 6,400,000 new cases of eye disease occur each

More information

Adobe Acrobat 6.0 Professional

Adobe Acrobat 6.0 Professional Adobe Acrobat 6.0 Professional Manual Adobe Acrobat 6.0 Professional Manual Purpose The will teach you to create, edit, save, and print PDF files. You will also learn some of Adobe s collaborative functions,

More information

Data Presentation. Paper 126-27. Using SAS Macros to Create Automated Excel Reports Containing Tables, Charts and Graphs

Data Presentation. Paper 126-27. Using SAS Macros to Create Automated Excel Reports Containing Tables, Charts and Graphs Paper 126-27 Using SAS Macros to Create Automated Excel Reports Containing Tables, Charts and Graphs Tugluke Abdurazak Abt Associates Inc. 1110 Vermont Avenue N.W. Suite 610 Washington D.C. 20005-3522

More information

Post Processing Macro in Clinical Data Reporting Niraj J. Pandya

Post Processing Macro in Clinical Data Reporting Niraj J. Pandya Post Processing Macro in Clinical Data Reporting Niraj J. Pandya ABSTRACT Post Processing is the last step of generating listings and analysis reports of clinical data reporting in pharmaceutical industry

More information

PDF Word to PDF utility. User Documentation

PDF Word to PDF utility. User Documentation Note: This product is distributed on a try-before-you-buy basis. All features described in this documentation are enabled. The registered version does not insert a watermark in your generated pdf documents.

More information

Introduction to Microsoft Access 2003

Introduction to Microsoft Access 2003 Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft

More information

Paper-less Reporting: On-line Data Review and Analysis Using SAS/PH-Clinical Software

Paper-less Reporting: On-line Data Review and Analysis Using SAS/PH-Clinical Software Paper-less Reporting: On-line Data Review and Analysis Using SAS/PH-Clinical Software Eileen Ching, SmithKline Beecham Pharmaceuticals, Collegeville, PA Rosemary Oakes, SmithKline Beecham Pharmaceuticals,

More information

SUGI 29 Systems Architecture. Paper 223-29

SUGI 29 Systems Architecture. Paper 223-29 Paper 223-29 SAS Add-In for Microsoft Office Leveraging SAS Throughout the Organization from Microsoft Office Jennifer Clegg, SAS Institute Inc., Cary, NC Stephen McDaniel, SAS Institute Inc., Cary, NC

More information

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the SAI reports... 3 Running, Copying and Pasting reports... 4 Creating and linking a report... 5 Auto e-mailing reports...

More information

ABSTRACT INTRODUCTION CLINICAL PROJECT TRACKER OF SAS TASKS. Paper PH-02-2015

ABSTRACT INTRODUCTION CLINICAL PROJECT TRACKER OF SAS TASKS. Paper PH-02-2015 Paper PH-02-2015 Project Management of SAS Tasks - Excel Dashboard without Using Any Program Kalaivani Raghunathan, Quartesian Clinical Research Pvt. Ltd, Bangalore, India ABSTRACT Have you ever imagined

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

Create a PDF File. Tip. In this lesson, you will learn how to:

Create a PDF File. Tip. In this lesson, you will learn how to: Create a PDF File Now that you ve seen what an ETD looks like and how to browse the contents, it s time to learn how to convert your own thesis or dissertation into a PDF file. There are several different

More information

How To Write A Clinical Trial In Sas

How To Write A Clinical Trial In Sas PharmaSUG2013 Paper AD11 Let SAS Set Up and Track Your Project Tom Santopoli, Octagon, now part of Accenture Wayne Zhong, Octagon, now part of Accenture ABSTRACT When managing the programming activities

More information

ABSTRACT INTRODUCTION EXERCISE 1: EXPLORING THE USER INTERFACE GRAPH GALLERY

ABSTRACT INTRODUCTION EXERCISE 1: EXPLORING THE USER INTERFACE GRAPH GALLERY Statistical Graphics for Clinical Research Using ODS Graphics Designer Wei Cheng, Isis Pharmaceuticals, Inc., Carlsbad, CA Sanjay Matange, SAS Institute, Cary, NC ABSTRACT Statistical graphics play an

More information

Microsoft Office 2013

Microsoft Office 2013 Student manuals available at: www.learnit.com/manuals Username: manuals; Password: password Microsoft Office 2013 New Features Take this class home with you! Student Videos Available at: www.learnitanytime.com

More information

PaperlessPrinter. Version 3.0. User s Manual

PaperlessPrinter. Version 3.0. User s Manual Version 3.0 User s Manual The User s Manual is Copyright 2003 RAREFIND ENGINEERING INNOVATIONS All Rights Reserved. 1 of 77 Table of Contents 1. 2. 3. 4. 5. Overview...3 Introduction...3 Installation...4

More information

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins)

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins) Lesson 07: MS ACCESS - Handout Handout Introduction to database (30 mins) Microsoft Access is a database application. A database is a collection of related information put together in database objects.

More information

Excel 2007: Basics Learning Guide

Excel 2007: Basics Learning Guide Excel 2007: Basics Learning Guide Exploring Excel At first glance, the new Excel 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This

More information

Task 2.2.11 CMU Report 06: Programs for Design Analysis Support and Simulation Integration. Department of Energy Award # EE0004261

Task 2.2.11 CMU Report 06: Programs for Design Analysis Support and Simulation Integration. Department of Energy Award # EE0004261 Task 2.2.11 CMU Report 06: Programs for Design Analysis Support and Simulation Integration Department of Energy Award # EE0004261 Omer T. Karaguzel, PhD Candidate Khee Poh Lam, PhD, RIBA, Professor Of

More information

UNIX Comes to the Rescue: A Comparison between UNIX SAS and PC SAS

UNIX Comes to the Rescue: A Comparison between UNIX SAS and PC SAS UNIX Comes to the Rescue: A Comparison between UNIX SAS and PC SAS Chii-Dean Lin, San Diego State University, San Diego, CA Ming Ji, San Diego State University, San Diego, CA ABSTRACT Running SAS under

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

NUI Galway Web Training Presentation

NUI Galway Web Training Presentation NUI Galway Web Training Presentation Welcome Objective To provide training on how best to maintain and update University Web pages while also providing an introduction to systems & services provided by

More information

MODULE 2: SMARTLIST, REPORTS AND INQUIRIES

MODULE 2: SMARTLIST, REPORTS AND INQUIRIES MODULE 2: SMARTLIST, REPORTS AND INQUIRIES Module Overview SmartLists are used to access accounting data. Information, such as customer and vendor records can be accessed from key tables. The SmartList

More information

A-PDF AutoCAD to PDF utility. User Documentation

A-PDF AutoCAD to PDF utility. User Documentation Note: This product is distributed on a try-before-you-buy basis. All features described in this documentation are enabled. The registered version does not insert a watermark in your generated pdf documents.

More information

OneTouch 4.0 with OmniPage OCR Features. Mini Guide

OneTouch 4.0 with OmniPage OCR Features. Mini Guide OneTouch 4.0 with OmniPage OCR Features Mini Guide The OneTouch 4.0 software you received with your Visioneer scanner now includes new OmniPage Optical Character Recognition (OCR) features. This brief

More information

Preservation Handbook

Preservation Handbook Preservation Handbook [Binary Text / Word Processor Documents] Author Rowan Wilson and Martin Wynne Version Draft V3 Date 22 / 08 / 05 Change History Revised by MW 22.8.05; 2.12.05; 7.3.06 Page 1 of 7

More information

Tips and Tricks SAGE ACCPAC INTELLIGENCE

Tips and Tricks SAGE ACCPAC INTELLIGENCE Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,

More information

MICROSOFT WORD TUTORIAL

MICROSOFT WORD TUTORIAL MICROSOFT WORD TUTORIAL G E T T I N G S T A R T E D 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,

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

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

I Didn t Know SAS Enterprise Guide Could Do That!

I Didn t Know SAS Enterprise Guide Could Do That! Paper SAS016-2014 I Didn t Know SAS Enterprise Guide Could Do That! Mark Allemang, SAS Institute Inc., Cary, NC ABSTRACT This presentation is for users who are familiar with SAS Enterprise Guide but might

More information

Creating Electronic Portfolios using Microsoft Word and Excel

Creating Electronic Portfolios using Microsoft Word and Excel Step-by-Step Creating Electronic Portfolios using Microsoft Word and Excel The Reflective Portfolio document will include the following: A Cover Page for the portfolio - Include a Picture or graphic A

More information

Ansur Test Executive. Users Manual

Ansur Test Executive. Users Manual Ansur Test Executive Users Manual April 2008 2008 Fluke Corporation, All rights reserved. All product names are trademarks of their respective companies Table of Contents 1 Introducing Ansur... 4 1.1 About

More information

Report Customization Using PROC REPORT Procedure Shruthi Amruthnath, EPITEC, INC., Southfield, MI

Report Customization Using PROC REPORT Procedure Shruthi Amruthnath, EPITEC, INC., Southfield, MI Paper SA12-2014 Report Customization Using PROC REPORT Procedure Shruthi Amruthnath, EPITEC, INC., Southfield, MI ABSTRACT SAS offers powerful report writing tools to generate customized reports. PROC

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

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11 MS Excel Handout: Level 2 elearning Department 2016 Page 1 of 11 Contents Excel Environment:... 3 To create a new blank workbook:...3 To insert text:...4 Cell addresses:...4 To save the workbook:... 5

More information

Introduction to Microsoft Excel 2007/2010

Introduction to Microsoft Excel 2007/2010 to Microsoft Excel 2007/2010 Abstract: Microsoft Excel is one of the most powerful and widely used spreadsheet applications available today. Excel's functionality and popularity have made it an essential

More information

Paper 23-28. Hot Links: Creating Embedded URLs using ODS Jonathan Squire, C 2 RA (Cambridge Clinical Research Associates), Andover, MA

Paper 23-28. Hot Links: Creating Embedded URLs using ODS Jonathan Squire, C 2 RA (Cambridge Clinical Research Associates), Andover, MA Paper 23-28 Hot Links: Creating Embedded URLs using ODS Jonathan Squire, C 2 RA (Cambridge Clinical Research Associates), Andover, MA ABSTRACT With SAS/BASE version 8, one can create embedded HTML links

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

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

Mail Merge Creating Mailing Labels 3/23/2011

Mail Merge Creating Mailing Labels 3/23/2011 Creating Mailing Labels in Microsoft Word Address data in a Microsoft Excel file can be turned into mailing labels in Microsoft Word through a mail merge process. First, obtain or create an Excel spreadsheet

More information

Snap Server Manager Section 508 Report

Snap Server Manager Section 508 Report Overland Storage 4820 Overland Ave San Diego, Ca 92123 Snap Server Manager Section 508 Report Summary Table Voluntary Product Accessibility Template Criteria Section 1194.21 Software Applications and Operating

More information

BU Digital Print Service. High Resolution PDFs

BU Digital Print Service. High Resolution PDFs BU Digital Print Service High Resolution PDFs Introduction As part of the BU Digital Print service files can be uploaded to the Web to Print (W2P) portal for printing however the quality of the print is

More information

Adobe Acrobat 9 Pro Accessibility Guide: PDF Accessibility Overview

Adobe Acrobat 9 Pro Accessibility Guide: PDF Accessibility Overview Adobe Acrobat 9 Pro Accessibility Guide: PDF Accessibility Overview Adobe, the Adobe logo, Acrobat, Acrobat Connect, the Adobe PDF logo, Creative Suite, LiveCycle, and Reader are either registered trademarks

More information

OpenOffice.org Writer

OpenOffice.org Writer OOoRegiCon North America Technical Writing using OpenOffice.org Writer Jean Hollis Weber Jean Hollis Weber Community Volunteer - Slide 1 Why OOo for Techwriting? Combines best features of MS Word and FrameMaker

More information

SOLO NETWORK (11) 4062-6971 (21) 4062-6971 (31) 4062-6971 (41) 4062-6971 (48) 4062-6971 (51) 4062-6971 (61) 4062-6971. version Adobe PageMaker 7.

SOLO NETWORK (11) 4062-6971 (21) 4062-6971 (31) 4062-6971 (41) 4062-6971 (48) 4062-6971 (51) 4062-6971 (61) 4062-6971. version Adobe PageMaker 7. (11) 4062-6971 (21) 4062-6971 (31) 4062-6971 (41) 4062-6971 (48) 4062-6971 (51) 4062-6971 (61) 4062-6971 Macintosh OS /Windows 98/2000/NT/Windows ME version Adobe PageMaker 7.0 Overview T his overview

More information

SAS ODS. Greg Jenkins

SAS ODS. Greg Jenkins SAS ODS Greg Jenkins 1 Overview ODS stands for the Output Delivery System ODS allows output from the Data Step & SAS procedures to presented in a more useful way. ODS also allows for some of the output

More information

We begin by defining a few user-supplied parameters, to make the code transferable between various projects.

We begin by defining a few user-supplied parameters, to make the code transferable between various projects. PharmaSUG 2013 Paper CC31 A Quick Patient Profile: Combining External Data with EDC-generated Subject CRF Titania Dumas-Roberson, Grifols Therapeutics, Inc., Durham, NC Yang Han, Grifols Therapeutics,

More information

Installation Instructions for Version 8 (TS M1) of the SAS System for Microsoft Windows

Installation Instructions for Version 8 (TS M1) of the SAS System for Microsoft Windows Installation Instructions for Version 8 (TS M1) of the SAS System for Microsoft Windows Table of Contents Chapter 1, Introduction...1 Terminology and Symbols Used in this Document...1 SASROOT Directory...1

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

Introduction to dobe Acrobat XI Pro

Introduction to dobe Acrobat XI Pro Introduction to dobe Acrobat XI Pro Introduction to Adobe Acrobat XI Pro is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. To view a copy of this

More information

Automate Data Integration Processes for Pharmaceutical Data Warehouse

Automate Data Integration Processes for Pharmaceutical Data Warehouse Paper AD01 Automate Data Integration Processes for Pharmaceutical Data Warehouse Sandy Lei, Johnson & Johnson Pharmaceutical Research and Development, L.L.C, Titusville, NJ Kwang-Shi Shu, Johnson & Johnson

More information

CREATING FORMAL REPORT. using MICROSOFT WORD. and EXCEL

CREATING FORMAL REPORT. using MICROSOFT WORD. and EXCEL CREATING a FORMAL REPORT using MICROSOFT WORD and EXCEL TABLE OF CONTENTS TABLE OF CONTENTS... 2 1 INTRODUCTION... 4 1.1 Aim... 4 1.2 Authorisation... 4 1.3 Sources of Information... 4 2 FINDINGS... 4

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

Microsoft Office System Tip Sheet

Microsoft Office System Tip Sheet The 2007 Microsoft Office System The 2007 Microsoft Office system is a complete set of desktop and server software that can help streamline the way you and your people do business. This latest release

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

Overview of sharing and collaborating on Excel data

Overview of sharing and collaborating on Excel data Overview of sharing and collaborating on Excel data There are many ways to share, analyze, and communicate business information and data in Microsoft Excel. The way that you choose to share data depends

More information

Generating lesson plans with. Adobe Acrobat

Generating lesson plans with. Adobe Acrobat Generating lesson plans with Adobe Acrobat Introduction Being a teacher requires so many non-teaching administrative tasks that sometimes just teaching gets lost in the paper shuffle. You can automate

More information

Spreadsheet - Introduction

Spreadsheet - Introduction CSCA0102 IT and Business Applications Chapter 6 Spreadsheet - Introduction Spreadsheet A spreadsheet (or spreadsheet program) is software that permits numerical data to be used and to perform automatic

More information

Create Custom Tables in No Time

Create Custom Tables in No Time SPSS Custom Tables 17.0 Create Custom Tables in No Time Easily analyze and communicate your results with SPSS Custom Tables, an add-on module for the SPSS Statistics product line Share analytical results

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

ABSTRACT TECHNICAL DESIGN INTRODUCTION FUNCTIONAL DESIGN

ABSTRACT TECHNICAL DESIGN INTRODUCTION FUNCTIONAL DESIGN Overview of a Browser-Based Clinical Report Generation Tool Paul Gilbert, DataCeutics, Pottstown PA Greg Weber, DataCeutics Teofil Boata, Purdue Pharma ABSTRACT In an effort to increase reporting quality

More information

ADOBE DREAMWEAVER CS3 TUTORIAL

ADOBE DREAMWEAVER CS3 TUTORIAL ADOBE DREAMWEAVER CS3 TUTORIAL 1 TABLE OF CONTENTS I. GETTING S TARTED... 2 II. CREATING A WEBPAGE... 2 III. DESIGN AND LAYOUT... 3 IV. INSERTING AND USING TABLES... 4 A. WHY USE TABLES... 4 B. HOW TO

More information

How to create and personalize a PDF portfolio

How to create and personalize a PDF portfolio How to create and personalize a PDF portfolio Creating and organizing a PDF portfolio is a simple process as simple as dragging and dropping files from one folder to another. To drag files into an empty

More information

ABSTRACT INTRODUCTION

ABSTRACT INTRODUCTION Automating Concatenation of PDF/RTF Reports Using ODS DOCUMENT Shirish Nalavade, eclinical Solutions, Mansfield, MA Shubha Manjunath, Independent Consultant, New London, CT ABSTRACT As part of clinical

More information

Automated distribution of SAS results Jacques Pagé, Les Services Conseils HARDY, Quebec, Qc

Automated distribution of SAS results Jacques Pagé, Les Services Conseils HARDY, Quebec, Qc Paper 039-29 Automated distribution of SAS results Jacques Pagé, Les Services Conseils HARDY, Quebec, Qc ABSTRACT This paper highlights the programmable aspects of SAS results distribution using electronic

More information

Combining External PDF Files by Integrating SAS and Adobe Acrobat Brandon Welch, Rho, Inc., Chapel Hill, NC Ryan Burns, Rho, Inc.

Combining External PDF Files by Integrating SAS and Adobe Acrobat Brandon Welch, Rho, Inc., Chapel Hill, NC Ryan Burns, Rho, Inc. Paper BB-15 Combining External PDF Files by Integrating SAS and Adobe Acrobat Brandon Welch, Rho, Inc, Chapel Hill, NC Ryan Burns, Rho, Inc, Chapel Hill, NC ABSTRACT As SAS programmers of various disciplines,

More information

Create a New Database in Access 2010

Create a New Database in Access 2010 Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...

More information