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 (March 2008, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Mon, 3 Mar 2008 08:01:44 -0800
Reply-To:   Peter <crawfordsoftware@GMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Peter <crawfordsoftware@GMAIL.COM>
Organization:   http://groups.google.com
Subject:   Re: Suppressing output window but still putting output in a file
Comments:   To: sas-l@uga.edu
Content-Type:   text/plain; charset=ISO-8859-1

On Mar 3, 3:18 pm, Paul <paul.vonhip...@chase.com> wrote: > Using ODS, I know how to direct the output of proc means to a file, > but I don't know how to prevent that same output from appearing in the > output window. > > What I have is something like this: > > proc means; > var x; class y; > ods output Summary=mean_x_by_y; > run; > > There are many values of y, so my output overflows the output window. > I don't need it in the output window, but I do want it in the output > file mean_x_by_y. > > Any advice most appreciated.... > > Thanks! > Paul

before defining the ods destinations you want, use statement ods _all_ close ;


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