Page 69 - SAS_manual
P. 69
6.9.2 Footnote:
Footnote is used to display text message at the bottom of the page. There is no default footnote.
Footnote have same rule as title.
Program 6.23:
Output:
6.10 System options
System options are used to control the output of displaying data
procprintdata=sashelp.class;
run;
optionsnocenter;/*display the output from the left hand side of the page*/
options center;/*display the output at the center of the page*/
optionsnodate;/*not to display the date and time on the top of the page*/
options date;/*display the date and time on the top of the page*/
optionsnonumber;/*disply the page number*/
options number; /*numbers are counted but not showed*/
------------------------------------------------------------------------------------------
optionsls=5; /*just to check the line size*/
/*check the log window Option value for SAS option LINESIZE must be between 64 and 256*/
optionsls=200; /*set the line size*/
------------------------------------------------------------------------------------------
proc options option=ps;
run;
/*Go to log window*/
/*PAGESIZE=56 Number of lines printed per page of output*/
SAS HANDBOOK | VISIT:: http://nikhilanalytics.com 69

