LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (March 2008, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Mon, 31 Mar 2008 00:43:11 -0700
Reply-To:     RAMS <ramsathish@GMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         RAMS <ramsathish@GMAIL.COM>
Organization: http://groups.google.com
Subject:      ODS PDF FILE
Comments: To: sas-l@uga.edu
Content-Type: text/plain; charset=ISO-8859-1

Dear All,

i want to write all my outputs in PDF file, so i used the ods pdf file syntax. However i dont want the results of Proc tabulate, since i created a new data set mh_summary where i need to do some further calculations. But the following code is not showing any output in SAS OUTPUT window, howere it still writes the output in PDF file. How can i resolve it. Anyone please help me out.

ods pdf file = 'C:\Result.pdf';

ods listing close; ods noresults; proc tabulate data = medical_history out = mh_summary; class random_drug illness continue; table illness, random_drug*continue; run; ods results; ods listing;

Thanks & Regards,

Ramsathish S


Back to: Top of message | Previous page | Main SAS-L page