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


NUMBER | NONUMBER


To control whether page numbers appear in your report, you use the NUMBER NONUMBER option in the OPTIONS statement. In the following example, the page numbers are not displayed on the output produced by the PRINT procedure.
     options nodate nonumber;
proc print data=fees.december;
run;

Obs     Name Fee
     
              1     Murray, W           85.20
              2     Almers, C          124.80
              3     Bonaventure, T     149.75
              4     Johnson, R         149.75
              5     LaMance, K         124.80
              6     Jones, M           124.80
              7     Reberson, P        149.75


In the next example, the page numbers are displayed on the output produced by the PRINT procedure.
     options number;
proc print data=fees.december;
run;

                         09:11 Monday, May 19, 1997   2

Obs     Name Fee
     
              1     Murray, W           85.20
              2     Almers, C          124.80
              3     Bonaventure, T     149.75
              4     Johnson, R         149.75
              5     LaMance, K         124.80
              6     Jones, M           124.80
              7     Reberson, P        149.75







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

Terms of Use & Legal Information | Privacy Statement