DATE | NODATE NUMBER | NONUMBER PAGENO= PAGESIZE= LINESIZE=


PAGESIZE=


The PAGESIZE= option specifies the number of lines that each page of output contains. For example, this OPTIONS statement specifies that each page of output contains 15 lines. In the following example, each page of the output produced by the PRINT procedure contains 15 lines (including those used by the title, date, and so on).
     options number pagesize=15;
proc print data=clinic.admit;
run;

The SAS System                        5
10:03 Friday, April 3, 1998

Obs ID  Name Sex Age  Date  Height  Weight Act
Level
Fee
                   
  1  2458  Murray, W        M    27    1    72    168   HIGH    85.20
  2  2462  Almers, C        F    34    3    66    152   HIGH   124.80
  3  2501  Bonaventure, T   F    31   17    61    123   LOW    149.75
  4  2523  Johnson, R       F    43   31    63    137   MOD    149.75
  5  2539  LaMance, K       M    51    4    71    158   LOW    124.80
  6  2544  Jones, M         M    29    6    76    193   HIGH   124.80
  7  2552  Reberson, P      F    32    9    67    151   MOD    149.75
  8  2555  King, E          M    35   13    70    173   MOD    149.75
  9  2563  Pitts, D         M    34   22    73    154   LOW    124.80







Copyright © 2002 SAS Institute Inc., Cary, NC, USA. All rights reserved.

Terms of Use & Legal Information | Privacy Statement