Date: Tue, 24 Jul 2007 11:18:28 -0400
Reply-To: "Howard Schreier <hs AT dc-sug DOT org>" <nospam@HOWLES.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Howard Schreier <hs AT dc-sug DOT org>" <nospam@HOWLES.COM>
Subject: Re: Ouput window displays no results
On Tue, 24 Jul 2007 10:59:54 -0400, Gerhard Hellriegel
<gerhard.hellriegel@T-ONLINE.DE> wrote:
>Hmm... maybe a PROC PRINTTO somewhere?
or ODS LISTING CLOSE:
>Try to submit a
>
>proc printto;
>run;
or
ods listing;
>
>and try it again after that. What happens?
>Gerhard
>
>
>
>On Tue, 24 Jul 2007 10:40:11 -0400, Gimmy Tang <gimmytang@GMAIL.COM> wrote:
>
>>Hi all,
>>The output window no longer shows any result that are supposed to appear.
>>The problem occured right after I ran some macro functions but to my best
>>knowledge these functions have nothing to do with the output window
>display
>>settings. I tried the simple program below and the log windows shows no
>>error but the data is not shown in the output window.
>>Can anyone kindly provide a solution?
>>
>>data test1;
>>input name;
>>datalines;
>>1
>>2
>>;
>>run;
>>proc print data=test1;
>>run;
|