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 2010, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Thu, 25 Mar 2010 13:46:20 -0700
Reply-To:   greenwillow <yangliuyan7@GMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   greenwillow <yangliuyan7@GMAIL.COM>
Organization:   http://groups.google.com
Subject:   Re: How to print the results only to ODS files but not to the output window
Comments:   To: sas-l@uga.edu
Content-Type:   text/plain; charset=ISO-8859-1

Thank you so much Ray!

On Mar 10, 11:11 am, Ray <rwallac...@gmail.com> wrote: > The output window is just the 'listing' ODS. So you can close it just > as you open and close other ODS destinations. > > ods listing close ; *close the output window destination; > proc print ; run; > ods listing ;*open it back up ; > > Ray > > On Mar 10, 7:01 am, greenwillow <yangliuy...@gmail.com> wrote: > > > > > I wrote a loop macro, which will created more than 1000 files. I don't > > want them to be printed in the output window. > > > However, if I put noprint option in the statement, the results can be > > written to the ODS either. > > > Is there one way to only get the ODS file? > > > Thanks! > > > %macro charchar; > > > %do i=1 %to &NObs; > > %do j=1 %to &NObs; > > %if &i ne &j %then > > %rcharchar(&&char&i,&&char&j); > > %end; > > %end; > > %mend; > > %charchar;- Hide quoted text - > > - Show quoted text -


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