Date: Tue, 8 Jan 2008 05:36:06 -0800
Reply-To: "srividhya.sanakkayala@gmail.com"
<srividhya.sanakkayala@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "srividhya.sanakkayala@gmail.com"
<srividhya.sanakkayala@GMAIL.COM>
Organization: http://groups.google.com
Subject: Re: save output
Content-Type: text/plain; charset=ISO-8859-1
On Jan 8, 11:30 am, Ching <KCWo...@gmail.com> wrote:
> Hi everyone.
> Just wondering if anyone could teach me what is the sas code to save
> the result from the output window as a log file?
>
> thanks heaps.
> have a great day.
u can save output window by using the printto procedure.syntax for
saving output is....
proc printto print='path';run;
ex:
proc printto print='e:/emp.list';run;
where emp is dataset name whose output u r going to save and e:/
is the location where u r going to save the output window.
|