Date: Fri, 24 Sep 1999 10:43:07 +0200
Reply-To: Eric Hoogenboom <e.hoogenboom@BIG.NL>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Eric Hoogenboom <e.hoogenboom@BIG.NL>
Subject: Plus symbols and Call execute
Content-Type: text/plain
Hi all,
is there an elegant way to suppress the + lines when running call execute. I
know of the non-elegant way by using options nosource, but I think it is
killing an ant with a molotov cocktail.
See example log file; Thanks - Eric.
1 options nonotes;
2 data _NULL_;
3 do i=1 to 10;
4 call execute('%* blah blah;');
5 end;
6 run;
1 +
2 +
3 +
4 +
5 +
6 +
7 +
8 +
9 +
10 +
|