Oct 16, 2019

SAS Programming Tips - Print all columns in one line

If there are many columns, SAS proc print shows columns in new page after few column.This trick shows more columns in same page.
nodate - do not print run date from output
pageno - Page number starts from
linisize - line size for printing
pagesize - total rows in page
obs - total observations to be printed

options nodate pageno=1 linesize=200 pagesize=15 obs=10;

proc print data=sashelp.cars noobs width=MINIMUM;
run;

No comments:

Post a Comment