Date: Thu, 17 Jan 2008 09:48:20 -0600
Reply-To: "data _null_," <datanull@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "data _null_," <datanull@GMAIL.COM>
Subject: Re: How do you print out the current or default ls and ps (line
size and page size)?
In-Reply-To: <763aefee-4203-4eff-91d0-9b74e6af21ea@i72g2000hsd.googlegroups.com>
Content-Type: text/plain; charset=ISO-8859-1
109 %let currentLSPS = %sysfunc(getoption(LS,Keyword))
%sysfunc(getoption(PS,Keyword));
110 %put _USER_;
GLOBAL CURRENTLSPS LS=108 PS=26
If you save the values in a macro variable you can reset when needed.
options ¤tLSPS;
On Jan 17, 2008 9:06 AM, <idostatistics@gmail.com> wrote:
> Once you reset the options , such as:
> OPTIONS ls=132 ps=43 ;
>
> the default is gone. How do you print out the current or default line/
> page size?
>
|