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


DATE | NODATE


To specify whether the date and time appear, use the DATE | NODATE option in the OPTIONS statement. In the following example, the current date and time are not displayed on the output produced by the PRINT procedure.
     options nonumber nodate;
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 current date and time are displayed on the output produced by the PRINT procedure.
     options date;
proc print data=fees.december;
run;

                         12:06 Monday, March 3, 2007

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