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 (September 2006, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments:   To: Lorne Klassen <lk1@rogers.com>
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 >


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