I am just wondering if there are any options can be used to limit the number of observations printed per page in Proc Report procedure?
Thank you
I am just wondering if there are any options can be used to limit the number of observations printed per page in Proc Report procedure?
Thank you
This depends in part on the destination.
PROC REPORT
in page-sensitive destinations, likeODS LISTING
orODS PDF
, can be convinced to limit observations a few ways.ODS LISTING
:OPTIONS PS=[#]
will set the page size.PS
option onPROC REPORT
statement also does this. See PROC REPORT statement for more.ODS PDF
,ODS RTF
, other page-sensitive destinations: Create a page variable that stores which page an observation falls on.