| Date: | Tue, 19 Sep 2006 13:39:35 -0400 |
| Reply-To: | "data _null_;" <datanull@GMAIL.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | "data _null_;" <datanull@GMAIL.COM> |
| Subject: | Re: A PROC REPORT question |
|
| In-Reply-To: | <200609191726.k8JFMM5Z001238@mailgw.cc.uga.edu> |
| Content-Type: | text/plain; charset=ISO-8859-1; format=flowed |
I think you need "exclude _all_" see the following short test that I
believe is similar to your problem.
ods listing exclude _all_;
proc report nowd data=sashelp.class out=work.classReport;
run;
ods listing;
proc print data=work.classReport;
run;
On 9/19/06, Lorne Klassen <lk1@rogers.com> wrote:
> We are running PROC REPORT with the OUT= option to generate an output
> dataset. We have to have ODS LISTING turned on to do this (it would seem).
> But then our OUTPUT window fills up. Can we run PROC REPORT with OUT= and
> still prevent (suppress) stuff going to the OUTPUT window?
>
> Thanks
>
|