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
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
|