Date: Mon, 31 Mar 2008 00:49:43 -0700
Reply-To: chao <soulas.gaetan@NEUF.FR>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: chao <soulas.gaetan@NEUF.FR>
Organization: http://groups.google.com
Subject: Re: ODS PDF FILE
Content-Type: text/plain; charset=ISO-8859-1
On Mar 31, 9:43 am, RAMS <ramsath...@gmail.com> wrote:
> 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
Hello,
an advice : Use the PROC TRANSPOSE to get the table you hope
|