Features: |
VALUE statement:: HIGH keyword |
Data set: | PROCLIB.STAFF |
Formats: | USCurrency. |
libname proclib 'SAS-library-1'; libname library 'SAS-library-2';
proc format library=library;
value benefit low-'31DEC1999'd=[worddate20.]
'01JAN2000'd-high=' ** Not Eligible **'; run;
proc print data=proclib.staff noobs label;
label salary='Salary in U.S. Dollars';
format salary uscurrency. site $city. hiredate benefit.;
title 'PROCLIB.STAFF with a Format for the Variables'; title2 'Salary, Site, and HireDate'; run;